/* ============================================
   Fairy Village — Magical Fairy Theme CSS
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@400;600;700&display=swap');

/* --- Custom Properties --- */
:root {
  --lavender: #9b59b6;
  --lavender-light: #c39bd3;
  --lavender-pale: #ebdef0;
  --mint: #2ecc71;
  --mint-dark: #27ae60;
  --mint-pale: #d5f5e3;
  --pink: #e91e8c;
  --pink-light: #f5a6d0;
  --pink-pale: #fdedf4;
  --blue: #85c1e9;
  --blue-light: #aed6f1;
  --blue-pale: #d6eaf8;
  --cream: #fef9e7;
  --white-soft: #fafafa;
  --gold: #f1c40f;
  --gold-light: #f9e154;
  --text-dark: #4a235a;
  --text-body: #5b2c6f;
  --text-light: #7d3c98;
  --shadow-soft: 0 4px 20px rgba(155, 89, 182, 0.15);
  --shadow-card: 0 6px 30px rgba(155, 89, 182, 0.12);
  --shadow-hover: 0 12px 40px rgba(155, 89, 182, 0.22);
  --radius: 20px;
  --radius-lg: 30px;
  --radius-xl: 40px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-body);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--lavender);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--pink);
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', sans-serif;
  color: var(--text-dark);
  line-height: 1.3;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.4rem; font-weight: 500; }

p { margin-bottom: 1rem; }

.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Animations --- */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-8px) translateX(4px); }
  50% { transform: translateY(-3px) translateX(-3px); }
  75% { transform: translateY(-12px) translateX(2px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes cloudDrift {
  0% { transform: translateX(-10%); }
  100% { transform: translateX(110vw); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Stars decoration --- */
.stars-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

.star:nth-child(1) { top: 8%; left: 15%; animation-delay: 0s; }
.star:nth-child(2) { top: 12%; left: 80%; animation-delay: 0.8s; }
.star:nth-child(3) { top: 25%; left: 45%; animation-delay: 1.5s; }
.star:nth-child(4) { top: 40%; left: 90%; animation-delay: 0.3s; }
.star:nth-child(5) { top: 55%; left: 10%; animation-delay: 2.1s; }
.star:nth-child(6) { top: 70%; left: 65%; animation-delay: 1.2s; }
.star:nth-child(7) { top: 85%; left: 35%; animation-delay: 0.6s; }
.star:nth-child(8) { top: 15%; left: 60%; animation-delay: 1.8s; }

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(254, 249, 231, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(155, 89, 182, 0.1);
  z-index: 1000;
  transition: background var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--lavender), var(--pink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo span {
  display: inline-block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: var(--text-body);
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lavender), var(--pink));
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--lavender);
}

/* Burger menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--lavender);
  border-radius: 3px;
  transition: var(--transition);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #aed6f1 0%, #85c1e9 20%, #a9dfbf 60%, #82e0aa 80%, #2ecc71 100%);
  overflow: hidden;
  padding-top: 80px;
}

/* CSS Clouds */
.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.5);
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.cloud-1 {
  width: 120px;
  height: 50px;
  top: 12%;
  animation: cloudDrift 25s linear infinite;
}

.cloud-1::before {
  width: 60px;
  height: 60px;
  top: -30px;
  left: 20px;
}

.cloud-1::after {
  width: 80px;
  height: 50px;
  top: -20px;
  left: 50px;
}

.cloud-2 {
  width: 160px;
  height: 60px;
  top: 8%;
  animation: cloudDrift 35s linear infinite;
  animation-delay: -10s;
}

.cloud-2::before {
  width: 70px;
  height: 70px;
  top: -35px;
  left: 30px;
}

.cloud-2::after {
  width: 100px;
  height: 55px;
  top: -25px;
  left: 60px;
}

.cloud-3 {
  width: 100px;
  height: 40px;
  top: 18%;
  animation: cloudDrift 30s linear infinite;
  animation-delay: -20s;
}

.cloud-3::before {
  width: 50px;
  height: 50px;
  top: -25px;
  left: 15px;
}

.cloud-3::after {
  width: 65px;
  height: 40px;
  top: -18px;
  left: 40px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
}

.hero-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #e74c3c, #f39c12, #f1c40f, #2ecc71, #3498db, #9b59b6, #e91e8c, #e74c3c);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  margin-bottom: 16px;
  text-shadow: none;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-description {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 550px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--mint), var(--mint-dark));
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(46, 204, 113, 0.4);
  animation: bounce 2s ease-in-out infinite;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 35px rgba(46, 204, 113, 0.5);
  color: #fff;
  animation: none;
}

.btn-cta svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.hero-badge {
  margin-top: 20px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* --- Section Styles --- */
section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  display: inline-block;
  position: relative;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--lavender), var(--pink));
  border-radius: 2px;
  margin: 12px auto 0;
}

/* --- World Section --- */
.world-section {
  background: var(--white-soft);
}

.world-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.world-text p {
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

.world-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}

.world-image:hover {
  transform: rotate(-2deg) scale(1.02);
}

.world-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Fairies Cards --- */
.fairies-section {
  background: linear-gradient(180deg, var(--white-soft) 0%, var(--lavender-pale) 100%);
}

.fairies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fairy-card {
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.fairy-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.fairy-card--luna {
  background: linear-gradient(135deg, #d6eaf8, #aed6f1);
}

.fairy-card--flora {
  background: linear-gradient(135deg, #d5f5e3, #a9dfbf);
}

.fairy-card--iskra {
  background: linear-gradient(135deg, #fdedec, #f5b7b1);
}

.fairy-card--kropla {
  background: linear-gradient(135deg, #d4efdf, #a2d9ce);
}

.fairy-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.fairy-card h3 {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.fairy-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Activities Grid --- */
.activities-section {
  background: var(--cream);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.activity-block {
  background: var(--white-soft);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.activity-block:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.activity-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.activity-icon--build { background: linear-gradient(135deg, #fdebd0, #f9e79f); }
.activity-icon--plant { background: linear-gradient(135deg, #d5f5e3, #abebc6); }
.activity-icon--stars { background: linear-gradient(135deg, #fef9e7, #f9e154); }
.activity-icon--decor { background: linear-gradient(135deg, #fdedf4, #f5a6d0); }
.activity-icon--meet { background: linear-gradient(135deg, #ebdef0, #c39bd3); }
.activity-icon--relax { background: linear-gradient(135deg, #d6eaf8, #aed6f1); }

.activity-block h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.activity-block p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-light);
}

/* --- Gallery --- */
.gallery-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--pink-pale) 50%, var(--cream) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(155, 89, 182, 0.8));
  color: #fff;
  padding: 20px 14px 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 44px;
  height: 44px;
  background: var(--lavender);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: var(--pink);
}

.lightbox-caption-text {
  text-align: center;
  color: #fff;
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 600;
}

/* --- Reviews / Chat Bubbles --- */
.reviews-section {
  background: var(--white-soft);
}

.reviews-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-bubble {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.review-bubble--right {
  flex-direction: row-reverse;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-avatar--zofia { background: linear-gradient(135deg, var(--lavender), var(--pink)); }
.review-avatar--kasia { background: linear-gradient(135deg, var(--mint), var(--blue)); }
.review-avatar--mateusz { background: linear-gradient(135deg, var(--gold), #e67e22); }

.review-content {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
  max-width: 550px;
}

.review-bubble--right .review-content {
  background: var(--lavender-pale);
}

.review-content::before {
  content: '';
  position: absolute;
  top: 18px;
  width: 12px;
  height: 12px;
  background: inherit;
  transform: rotate(45deg);
}

.review-bubble:not(.review-bubble--right) .review-content::before {
  left: -6px;
}

.review-bubble--right .review-content::before {
  right: -6px;
}

.review-name {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 8px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--lavender-pale), var(--pink-pale), var(--blue-pale), var(--mint-pale));
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-bottom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--lavender), var(--pink));
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(155, 89, 182, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn-cta-bottom:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 35px rgba(155, 89, 182, 0.45);
  color: #fff;
}

/* --- Footer --- */
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 0 24px;
}

.footer-inner {
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background var(--transition);
}

.footer-socials a:hover {
  background: var(--lavender);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.8);
}

/* --- GDPR Cookie Modal --- */
.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(155, 89, 182, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  animation: fadeIn 0.4s ease;
}

.cookie-overlay.fade-out {
  animation: fadeOut 0.4s ease forwards;
}

.cookie-modal {
  background: var(--white-soft);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(155, 89, 182, 0.3);
  position: relative;
}

.cookie-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  display: block;
}

.cookie-modal h3 {
  font-family: 'Fredoka', sans-serif;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.cookie-modal p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 24px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.cookie-accept {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--mint), var(--mint-dark));
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(46, 204, 113, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.45);
}

.cookie-more {
  font-size: 0.9rem;
  color: var(--lavender);
}

.cookie-more:hover {
  color: var(--pink);
}

/* --- Toast Notification --- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, var(--mint), var(--mint-dark));
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
  z-index: 10001;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* --- Legal Pages --- */
.legal-page {
  padding-top: 100px;
  padding-bottom: 60px;
  min-height: 100vh;
  background: var(--white-soft);
}

.legal-page .wrapper {
  max-width: 800px;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.legal-page .legal-date {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 1.4rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--lavender);
}

.legal-page h3 {
  font-size: 1.15rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-page p,
.legal-page li {
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page li {
  margin-bottom: 6px;
}

.legal-page a {
  color: var(--lavender);
  text-decoration: underline;
}

.legal-page a:hover {
  color: var(--pink);
}

/* --- Contact Page --- */
.contact-section {
  padding-top: 100px;
  padding-bottom: 60px;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--white-soft) 0%, var(--lavender-pale) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-info {
  background: var(--white-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.contact-info h3 {
  color: var(--lavender);
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lavender-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-detail-text strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.95rem;
}

.contact-hours {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--mint-pale);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.contact-hours strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-form-card {
  background: var(--white-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.contact-form-card h3 {
  color: var(--lavender);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--lavender-pale);
  border-radius: 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--lavender);
  box-shadow: 0 0 0 4px rgba(155, 89, 182, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--mint), var(--mint-dark));
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(46, 204, 113, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.45);
}

/* --- FAQ --- */
.faq-section {
  margin-top: 60px;
}

.faq-item {
  background: var(--white-soft);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
}

.faq-item h3 {
  color: var(--lavender);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Mobile: up to 767px */
@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    box-shadow: -4px 0 20px rgba(155, 89, 182, 0.15);
    transition: right var(--transition);
    z-index: 1000;
  }

  .nav-links.open {
    right: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .btn-cta {
    font-size: 1.1rem;
    padding: 16px 32px;
  }

  .world-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .world-image {
    order: -1;
  }

  .fairies-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .activities-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  section {
    padding: 50px 0;
  }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .cookie-modal {
    padding: 28px 24px;
  }
}

/* Tablet: 768px to 1199px */
@media (min-width: 768px) and (max-width: 1199px) {
  .fairies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 3.2rem;
  }
}

/* Desktop: 1200px+ */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 4.5rem;
  }

  .wrapper {
    padding: 0 24px;
  }
}

/* Polaroid Screenshot Gallery */
.polaroid-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0;
}
.polaroid-card {
  width: 180px;
  background: #fff;
  padding: 8px 8px 30px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.polaroid-card:hover {
  transform: rotate(0deg) scale(1.08);
  box-shadow: 0 8px 25px rgba(155,89,182,0.3);
  z-index: 2;
}
.polaroid-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}
@media (min-width: 768px) {
  .polaroid-card {
    width: 200px;
    padding: 10px 10px 35px;
  }
}
@media (max-width: 480px) {
  .polaroid-card {
    width: 140px;
    padding: 6px 6px 24px;
  }
}
