/* ============================================================
   MESSY MOMENTS — Main Stylesheet
   Brand palette extracted from Logo.png
   ============================================================ */

:root {
  /* ---- Logo palette ---- */
  --cyan:     #00CFFF;   /* paint splatter */
  --blue:     #4BB8E0;   /* paint splatter */
  --teal:     #42C6C6;   /* letter M */
  --lavender: #C9A0DC;   /* letter E */
  --orange:   #F5A623;   /* letter S */
  --pink:     #ED6B9B;   /* letter S */
  --lime:     #A8C800;   /* "moments" */
  /* Handprint accents */
  --hand-red:    #FF3B3B;
  --hand-yellow: #FFD700;
  --hand-green:  #4CBB17;
  /* ---- Backgrounds ---- */
  --bg:       #FAFAFA;
  --bg-alt:   #F0F7FA;
  --bg-card:  #FFFFFF;
  --light-gray: #F3F4F6;
  /* ---- Text ---- */
  --dark:     #222222;
  --gray:     #666666;
  --white:    #FFFFFF;
  /* ---- Elevation ---- */
  --shadow:    0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  /* ---- Radii ---- */
  --radius:    20px;
  --radius-sm: 12px;
}

/* ---- Reset ---- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Nunito', sans-serif; background: var(--bg); color: var(--dark); overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Bubblegum Sans', cursive; }
button { cursor: pointer; font-family: 'Nunito', sans-serif; }
input,select,textarea { font-family: 'Nunito', sans-serif; }
img { max-width: 100%; display: block; }
.hidden { display: none !important; }

/* ============================================================
   NAV
   ============================================================ */
nav {
  background: var(--white);
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, var(--teal), var(--cyan), var(--lavender), var(--orange), var(--pink), var(--lime)) 1;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 50px; width: auto; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-link {
  padding: 8px 18px;
  border-radius: 55% 45% 50% 50% / 60% 40% 60% 40%;
  background: none; border: none;
  font-size: 15px; font-weight: 700;
  color: var(--dark); transition: all 0.25s; text-decoration: none;
}
.nav-link:hover { background: rgba(0,207,255,0.1); color: var(--cyan); }
.nav-link.active { background: rgba(0,207,255,0.12); color: var(--cyan); }
.nav-link.admin-link { background: var(--orange); color: var(--white); border-radius: 50px; }
.nav-link.admin-link:hover { background: #d9901e; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2.5px; background: var(--dark); border-radius: 2px; display: block; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--white); border-bottom: 3px solid var(--cyan);
  padding: 16px; flex-direction: column; gap: 8px; z-index: 99;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { text-align: left; border-radius: var(--radius-sm); padding: 12px 16px; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ============================================================
   PAGES
   ============================================================ */
.page { display: none; min-height: calc(100vh - 68px); }
.page.active { display: block; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block; padding: 15px 36px;
  border-radius: 50px;
  font-size: 17px; font-weight: 800; font-family: 'Bubblegum Sans', cursive;
  border: none; transition: all 0.25s; text-decoration: none;
  letter-spacing: 0.3px;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--cyan); color: var(--white); box-shadow: 0 4px 16px rgba(0,207,255,0.25); }
.btn-primary:hover { box-shadow: 0 8px 24px rgba(0,207,255,0.35); }
.btn-pink { background: var(--pink); color: var(--white); box-shadow: 0 4px 16px rgba(237,107,155,0.25); }
.btn-pink:hover { box-shadow: 0 8px 24px rgba(237,107,155,0.35); }
.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 4px 16px rgba(245,166,35,0.25); }
.btn-orange:hover { box-shadow: 0 8px 24px rgba(245,166,35,0.35); }
.btn-pay { background: var(--orange); color: var(--white); box-shadow: 0 4px 16px rgba(245,166,35,0.25); }
.btn-pay:hover { box-shadow: 0 8px 24px rgba(245,166,35,0.35); }
.btn-white { background: var(--white); color: var(--cyan); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-outline { background: none; border: 2px solid var(--cyan); color: var(--cyan); }
.btn-outline:hover { background: var(--cyan); color: var(--white); }
.btn-sm { padding: 10px 24px; font-size: 15px; }
.cancel-link { background: none; border: none; color: var(--gray); font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: underline; }

/* ============================================================
   RAINBOW DIVIDER
   ============================================================ */
.rainbow-divider {
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--lavender), var(--orange), var(--pink), var(--lime));
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section { padding: 72px 24px; max-width: 1100px; margin: 0 auto; }
.section-title {
  font-size: clamp(28px, 5vw, 44px);
  text-align: center; margin-bottom: 8px;
}
.section-sub { text-align: center; color: var(--gray); font-size: 17px; margin-bottom: 48px; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  background: linear-gradient(170deg, #E8F8FF 0%, var(--bg-alt) 50%, var(--bg) 100%);
  padding: 60px 24px 70px;
  position: relative; overflow: hidden;
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.hero-content { max-width: 540px; }
.hero-logo { max-width: 220px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(36px, 7vw, 58px); line-height: 1.1; margin-bottom: 12px; }
.hero h1 span { color: var(--cyan); }
.hero p { font-size: 17px; color: var(--gray); margin-bottom: 24px; line-height: 1.7; }
.hero-blobs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.blob-badge {
  padding: 8px 20px; font-weight: 800; font-size: 13px;
  background: var(--white); border: 2px solid; display: inline-flex; align-items: center; gap: 6px;
}
.blob-badge:nth-child(1) { color: var(--cyan); border-color: var(--cyan); border-radius: 60% 40% 55% 45% / 55% 45% 55% 45%; }
.blob-badge:nth-child(2) { color: var(--lime); border-color: var(--lime); border-radius: 42% 58% 48% 52% / 50% 55% 45% 50%; }
.blob-badge:nth-child(3) { color: var(--orange); border-color: var(--orange); border-radius: 55% 45% 42% 58% / 48% 52% 48% 52%; }
.hero-image img {
  width: 100%;
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  object-fit: cover; aspect-ratio: 4/3;
  box-shadow: 0 12px 40px rgba(0,207,255,0.12);
  border: 4px solid var(--white);
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-blobs { justify-content: center; }
  .hero-image img { max-width: 400px; margin: 0 auto; }
}

/* ============================================================
   HOME — FEATURES
   ============================================================ */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px;
}
.feature-card {
  background: var(--bg-card); padding: 36px 24px; text-align: center;
  transition: all 0.25s; border: 2px solid rgba(0,0,0,0.04);
}
.feature-card:nth-child(1) { border-radius: 58% 42% 52% 48% / 44% 56% 44% 56%; border-color: rgba(0,207,255,0.2); }
.feature-card:nth-child(2) { border-radius: 42% 58% 48% 52% / 56% 44% 56% 44%; border-color: rgba(168,200,0,0.2); }
.feature-card:nth-child(3) { border-radius: 54% 46% 58% 42% / 46% 54% 46% 54%; border-color: rgba(237,107,155,0.2); }
.feature-card:nth-child(4) { border-radius: 46% 54% 42% 58% / 54% 46% 54% 46%; border-color: rgba(245,166,35,0.2); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
/* feature-icon styles are below in the blob border section */
.feature-card:nth-child(1) .feature-icon { color: var(--cyan); }
.feature-card:nth-child(2) .feature-icon { color: var(--lime); }
.feature-card:nth-child(3) .feature-icon { color: var(--pink); }
.feature-card:nth-child(4) .feature-icon { color: var(--orange); }
.feature-card h3 { font-size: 20px; margin-bottom: 8px; color: var(--dark); }
.feature-card p { color: var(--gray); line-height: 1.7; font-size: 15px; }

/* ============================================================
   HOME — ABOUT PREVIEW
   ============================================================ */
.about-preview {
  background: var(--bg-alt); padding: 80px 24px;
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.about-preview-content h2 { font-size: clamp(28px, 5vw, 40px); color: var(--cyan); margin-bottom: 16px; }
.about-preview-content p { color: var(--gray); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.about-preview-image img {
  width: 100%;
  border-radius: 42% 58% 48% 52% / 55% 42% 58% 45%;
  object-fit: cover; aspect-ratio: 4/3;
  border: 4px solid var(--white); box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  .about-preview { grid-template-columns: 1fr; text-align: center; }
  .about-preview-image img { max-width: 400px; margin: 0 auto; }
}

/* ============================================================
   HOME — HOW IT WORKS
   ============================================================ */
/* how-steps styling */
.how-steps { display: flex; flex-direction: column; gap: 22px; max-width: 620px; margin: 0 auto; }
.how-step {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); padding: 24px;
  box-shadow: var(--shadow); transition: all 0.25s;
  border: 2px solid rgba(0,0,0,0.03);
}
.how-step:nth-child(1) { border-radius: 55% 45% 48% 52% / 28% 32% 68% 72%; border-color: rgba(0,207,255,0.12); }
.how-step:nth-child(2) { border-radius: 45% 55% 52% 48% / 32% 28% 72% 68%; border-color: rgba(168,200,0,0.12); }
.how-step:nth-child(3) { border-radius: 52% 48% 55% 45% / 30% 30% 70% 70%; border-color: rgba(237,107,155,0.12); }
.how-step:nth-child(4) { border-radius: 48% 52% 45% 55% / 28% 32% 68% 72%; border-color: rgba(245,166,35,0.12); }
.how-step:hover { transform: translateX(6px); }
.step-num {
  width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bubblegum Sans', cursive; font-size: 24px; color: var(--white);
}
.how-step:nth-child(1) .step-num { border-radius: 58% 42% 50% 50% / 50% 58% 42% 50%; }
.how-step:nth-child(2) .step-num { border-radius: 42% 58% 50% 50% / 52% 42% 58% 48%; }
.how-step:nth-child(3) .step-num { border-radius: 52% 48% 58% 42% / 44% 56% 44% 56%; }
.how-step:nth-child(4) .step-num { border-radius: 48% 52% 42% 58% / 56% 44% 56% 44%; }
.how-step:nth-child(1) h3 { color: var(--cyan); }
.how-step:nth-child(2) h3 { color: var(--lime); }
.how-step:nth-child(3) h3 { color: var(--pink); }
.how-step:nth-child(4) h3 { color: var(--orange); }
.how-step h3 { font-size: 18px; margin-bottom: 4px; }
.how-step p { color: var(--gray); font-size: 15px; line-height: 1.6; }

/* ============================================================
   HOME — TESTIMONIALS
   ============================================================ */
/* testimonials grid styles moved below */
.testimonial-card {
  background: var(--bg-card); padding: 28px; transition: all 0.25s;
  border: 2px solid rgba(0,0,0,0.04);
}
.testimonial-card:nth-child(3n+1) { border-radius: 55% 45% 48% 52% / 38% 42% 58% 62%; border-color: rgba(0,207,255,0.12); }
.testimonial-card:nth-child(3n+2) { border-radius: 45% 55% 52% 48% / 42% 38% 62% 58%; border-color: rgba(168,200,0,0.12); }
.testimonial-card:nth-child(3n+3) { border-radius: 50% 50% 45% 55% / 40% 40% 60% 60%; border-color: rgba(237,107,155,0.12); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-card .stars { color: var(--hand-yellow); font-size: 18px; margin-bottom: 12px; }
.testimonial-card p { color: var(--gray); font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
.testimonial-card strong { font-size: 14px; color: var(--dark); }

/* ============================================================
   HOME — GALLERY
   ============================================================ */
.gallery-section { background: var(--white); padding: 72px 24px; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; max-width: 1000px; margin: 0 auto;
}
.gallery-item { overflow: hidden; transition: transform 0.3s; cursor: pointer; }
.gallery-item:nth-child(1) { border-radius: 58% 42% 50% 50% / 50% 55% 45% 50%; }
.gallery-item:nth-child(2) { border-radius: 42% 58% 50% 50% / 55% 50% 50% 45%; }
.gallery-item:nth-child(3) { border-radius: 50% 50% 58% 42% / 45% 50% 50% 55%; }
.gallery-item:nth-child(4) { border-radius: 50% 50% 42% 58% / 50% 45% 55% 50%; }
.gallery-item:hover { transform: scale(1.03) rotate(1deg); }
.gallery-item img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* ============================================================
   HOME — CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #E0F7FA 0%, var(--bg-alt) 50%, #FCE4EC 100%);
  padding: 72px 24px; text-align: center;
}
.cta-banner h2 { font-size: clamp(28px, 5vw, 44px); margin-bottom: 12px; }
.cta-banner h2 .c1 { color: var(--cyan); }
.cta-banner h2 .c2 { color: var(--lime); }
.cta-banner h2 .c3 { color: var(--pink); }
.cta-banner p { color: var(--gray); font-size: 18px; margin-bottom: 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1A1A1A; text-align: center; padding: 36px 24px;
}
.footer-content { max-width: 600px; margin: 0 auto; }
.footer-logo img { height: 52px; margin: 0 auto 16px; }
.footer-links { display: flex; gap: 16px; justify-content: center; margin-bottom: 16px; }
.footer-links button {
  color: rgba(255,255,255,0.5); background: none; border: none; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: color 0.2s;
}
.footer-links button:hover { color: var(--cyan); }
.footer-copy { font-size: 14px; color: rgba(255,255,255,0.3); }

/* ============================================================
   CALENDAR PAGE
   ============================================================ */
.calendar-header {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--white); padding: 40px 24px; text-align: center;
}
.calendar-header h1 { font-size: 40px; color: var(--white); margin-bottom: 8px; }
.calendar-header p { opacity: 0.85; font-size: 17px; }
.calendar-layout {
  max-width: 1100px; margin: 40px auto; padding: 0 24px;
  display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 32px;
}
@media (max-width: 900px) { .calendar-layout { grid-template-columns: 1fr; } }
.cal-widget { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.cal-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: var(--cyan); color: var(--white);
}
.cal-nav button {
  background: rgba(255,255,255,0.2); border: none; color: var(--white);
  width: 36px; height: 36px; border-radius: 50%; font-size: 20px;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.cal-nav button:hover { background: rgba(255,255,255,0.35); }
.cal-nav h2 { font-family: 'Bubblegum Sans', cursive; font-size: 22px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-dow {
  text-align: center; padding: 12px 4px; font-size: 12px; font-weight: 700;
  color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em;
  border-bottom: 1px solid var(--light-gray);
}
.cal-day {
  aspect-ratio: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px solid transparent; border-radius: 12px; margin: 2px;
  cursor: default; position: relative; font-weight: 600; font-size: 15px;
}
.cal-day.empty { opacity: 0; pointer-events: none; }
.cal-day.has-session {
  background: #E0F7FA; border-color: var(--cyan); cursor: pointer;
  color: var(--cyan); transition: all 0.2s;
}
.cal-day.has-session:hover { background: var(--cyan); color: var(--white); }
.cal-day.has-session:hover .session-dot { background: var(--white); }
.cal-day.selected { background: var(--cyan) !important; color: var(--white) !important; }
.cal-day.today { border-color: var(--orange); }
.session-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); margin-top: 2px; }
.cal-day.selected .session-dot { background: var(--white); }
.cal-day.full { background: var(--light-gray); cursor: not-allowed; color: var(--gray); }
.full-badge { font-size: 8px; font-weight: 700; color: var(--gray); text-transform: uppercase; }
.session-panel { display: flex; flex-direction: column; gap: 16px; }
.session-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 0; border-left: 5px solid var(--cyan); overflow: hidden;
}
.session-card-img {
  width: 100%; height: auto; object-fit: contain; display: block;
}
.session-card-body { padding: 24px; }
.session-card.selected-session { border-color: var(--orange); }
.session-date-label { font-size: 13px; color: var(--gray); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.session-title { font-family: 'Bubblegum Sans', cursive; font-size: 22px; color: var(--cyan); margin-bottom: 12px; }
.session-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.meta-tag { background: var(--light-gray); border-radius: 20px; padding: 5px 12px; font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.meta-tag.spots-low { background: #FFF3E0; color: #E65100; }
.meta-tag.spots-ok { background: #E8F5E9; color: #2E7D32; }
.session-price { font-family: 'Bubblegum Sans', cursive; font-size: 28px; color: var(--orange); margin-bottom: 16px; }
.session-desc { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }
/* Upcoming sessions grid on home page */
.upcoming-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.upcoming-grid .session-card { border-left: none; border-top: 5px solid var(--cyan); }
.upcoming-grid .session-card:nth-child(2) { border-top-color: var(--pink); }
.upcoming-grid .session-card:nth-child(3) { border-top-color: var(--orange); }
.upcoming-empty { text-align: center; padding: 48px 24px; color: var(--gray); grid-column: 1 / -1; }
.upcoming-empty i { font-size: 48px; margin-bottom: 16px; display: block; color: var(--light-gray); }
.empty-state { text-align: center; padding: 48px 24px; color: var(--gray); }
.empty-state .empty-icon { font-size: 48px; margin-bottom: 16px; }
.empty-state p { font-size: 16px; }
/* legend styles moved below */

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-container { max-width: 700px; margin: 40px auto; padding: 0 24px 60px; }
.booking-container h1 { font-family: 'Bubblegum Sans', cursive; font-size: 36px; color: var(--cyan); margin-bottom: 8px; }
.booking-container .sub { color: var(--gray); margin-bottom: 32px; font-size: 16px; }
.progress-bar { display: flex; align-items: center; margin-bottom: 40px; }
.progress-step { display: flex; flex-direction: column; align-items: center; z-index: 1; }
.step-circle {
  width: 36px; height: 36px; border-radius: 50%; border: 3px solid var(--light-gray);
  background: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: var(--gray); position: relative; z-index: 1;
  flex-shrink: 0; transition: all 0.3s;
}
.step-circle.active { border-color: var(--cyan); color: var(--cyan); }
.step-circle.done { border-color: var(--lime); background: var(--lime); color: var(--white); }
.step-label { font-size: 12px; font-weight: 700; color: var(--gray); margin-top: 6px; text-align: center; }
.step-label.active { color: var(--cyan); }
/* progress-item removed, using progress-step */
.connector { flex: 1; height: 2px; background: var(--light-gray); margin-top: -24px; }
.connector.done { background: var(--lime); }
.booking-step { display: none; }
.booking-step.active { display: block; }
.form-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px; margin-bottom: 24px; }
.form-card h2 { font-size: 22px; color: var(--cyan); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 14px; font-weight: 700; color: var(--dark); }
.form-group input,.form-group select,.form-group textarea {
  padding: 12px 16px; border: 2px solid var(--light-gray); border-radius: var(--radius-sm);
  font-size: 15px; transition: border-color 0.2s; background: var(--white); color: var(--dark);
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus {
  outline: none; border-color: var(--cyan);
}
.form-group input.invalid,.form-group select.invalid,.form-group textarea.invalid {
  border-color: var(--hand-red); background: #FFF5F5;
}
.booking-error-banner {
  display: none; background: #FFEBEE; color: #C62828; border-left: 4px solid var(--hand-red);
  padding: 14px 20px; border-radius: var(--radius-sm); margin-bottom: 20px;
  font-weight: 600; font-size: 14px;
}
.booking-error-banner.visible { display: block; }
.child-section-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.child-section-header h3 { font-size: 18px; color: var(--dark); }
.discount-badge {
  background: #E8F5E9; color: #2E7D32; padding: 3px 10px;
  border-radius: 20px; font-size: 12px; font-weight: 700;
}
.order-summary { background: var(--bg-alt); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; }
.order-summary h3 { font-family: 'Bubblegum Sans', cursive; color: var(--cyan); font-size: 20px; margin-bottom: 16px; }
.order-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(0,207,255,0.12); font-size: 15px; }
.order-row:last-child { border-bottom: none; font-weight: 800; font-size: 17px; padding-top: 12px; }
.order-total { color: var(--orange); font-family: 'Bubblegum Sans', cursive; font-size: 22px; }
.payment-methods { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.pay-option {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: var(--radius-sm); border: 2px solid var(--light-gray);
  cursor: pointer; transition: all 0.2s; background: var(--white);
}
.pay-option.selected { border-color: var(--cyan); background: #E0F7FA; }
.pay-option input { width: 18px; height: 18px; }
.pay-option-info { flex: 1; }
.pay-option-info span { font-weight: 700; font-size: 15px; display: block; }
.pay-option-info small { color: var(--gray); font-size: 13px; }
.pay-logos { display: flex; gap: 6px; align-items: center; }
.pay-logo-badge { background: var(--light-gray); padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 700; color: var(--gray); }
.confirm-icon { text-align: center; margin-bottom: 16px; }
.confirm-icon i { font-size: 64px; color: var(--lime); }
.confirm-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px; text-align: center; }
.confirm-card h2 { font-family: 'Bubblegum Sans', cursive; font-size: 32px; color: var(--lime); margin-bottom: 12px; }
.confirm-card p { color: var(--gray); font-size: 16px; line-height: 1.7; }
.booking-ref { background: var(--light-gray); border-radius: var(--radius-sm); padding: 12px 20px; display: inline-block; font-family: monospace; font-size: 18px; font-weight: 700; margin: 16px 0; letter-spacing: 0.1em; }
.nav-btns { display: flex; justify-content: space-between; gap: 16px; }
.nav-btns button { flex: 1; }
/* selected-session-info replaced by session-info-box */

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-header {
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  padding: 60px 24px; text-align: center; color: var(--white);
}
.about-header h1 { font-size: clamp(36px, 6vw, 52px); margin-bottom: 8px; }
.about-header p { opacity: 0.9; font-size: 18px; }
/* about story styles moved below */
.about-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px; max-width: 700px; margin: 0 auto 48px; padding: 0 24px;
}
.about-stat-card {
  padding: 28px; text-align: center; border-radius: var(--radius); color: var(--white);
}
/* about stat card colors set via inline styles in HTML */

/* ============================================================
   ADMIN
   ============================================================ */
.admin-login { max-width: 420px; margin: 80px auto; padding: 0 24px; }
.admin-login-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 40px; text-align: center;
}
.admin-login-card h1 { font-family: 'Bubblegum Sans', cursive; color: var(--cyan); font-size: 32px; margin-bottom: 8px; }
.admin-login-card p { color: var(--gray); margin-bottom: 32px; font-size: 15px; }
.admin-login-card .logo-login { max-width: 160px; margin: 0 auto 20px; }
.admin-layout { display: grid; grid-template-columns: 220px 1fr; min-height: calc(100vh - 68px); }
@media (max-width: 768px) { .admin-layout { grid-template-columns: 1fr; } }
.admin-sidebar { background: var(--dark); padding: 32px 16px; display: flex; flex-direction: column; gap: 4px; }
@media (max-width: 768px) { .admin-sidebar { flex-direction: row; flex-wrap: wrap; padding: 16px; gap: 8px; } }
.sidebar-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.6); font-weight: 700; font-size: 15px;
  background: none; border: none; text-align: left; width: 100%;
  transition: all 0.2s; cursor: pointer;
}
.sidebar-link:hover,.sidebar-link.active { background: rgba(0,207,255,0.15); color: var(--cyan); }
.sidebar-link i { font-size: 18px; width: 24px; text-align: center; }
@media (max-width: 768px) { .sidebar-link { width: auto; padding: 10px 14px; font-size: 13px; } }
.admin-main { padding: 36px 32px; background: var(--light-gray); }
@media (max-width: 768px) { .admin-main { padding: 24px 16px; } }
.admin-section { display: none; }
.admin-section.active { display: block; }
.admin-title { font-family: 'Bubblegum Sans', cursive; font-size: 32px; color: var(--cyan); margin-bottom: 8px; }
.admin-sub { color: var(--gray); font-size: 15px; margin-bottom: 32px; }
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 32px; }
.stat-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); text-align: center; }
.stat-num { font-family: 'Bubblegum Sans', cursive; font-size: 40px; color: var(--cyan); }
.stat-label { font-size: 13px; color: var(--gray); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }
.stat-card:nth-child(2) .stat-num { color: var(--orange); }
.stat-card:nth-child(3) .stat-num { color: var(--lime); }
.stat-card:nth-child(4) .stat-num { color: var(--pink); }
.admin-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; margin-bottom: 24px; }
.admin-card h3 { font-family: 'Bubblegum Sans', cursive; font-size: 22px; color: var(--cyan); margin-bottom: 20px; }
.admin-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.admin-card-header h3 { margin-bottom: 0; }
.session-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .session-form { grid-template-columns: 1fr; } }
.form-group-admin { display: flex; flex-direction: column; gap: 6px; }
.form-group-admin label { font-size: 13px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em; }
.form-group-admin input,.form-group-admin select,.form-group-admin textarea {
  padding: 10px 14px; border: 2px solid var(--light-gray); border-radius: var(--radius-sm);
  font-size: 14px; transition: border-color 0.2s; background: var(--white); color: var(--dark);
}
.form-group-admin input:focus,.form-group-admin select:focus { outline: none; border-color: var(--cyan); }
.form-group-admin.full { grid-column: 1 / -1; }
.sessions-table { width: 100%; border-collapse: collapse; }
.sessions-table th {
  text-align: left; padding: 10px 14px; font-size: 12px; font-weight: 700;
  color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em;
  border-bottom: 2px solid var(--light-gray);
}
.sessions-table td { padding: 14px; border-bottom: 1px solid var(--light-gray); font-size: 14px; vertical-align: middle; }
.sessions-table tr:last-child td { border-bottom: none; }
.sessions-table tr:hover td { background: #E0F7FA; }
.status-badge { display: inline-block; padding: 3px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.badge-open { background: #E8F5E9; color: #2E7D32; }
.badge-full { background: #FFF3E0; color: #E65100; }
.badge-past { background: var(--light-gray); color: var(--gray); }
.table-actions { display: flex; gap: 8px; }
.icon-btn { width: 32px; height: 32px; border-radius: 8px; border: none; display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; transition: all 0.2s; }
.icon-btn.edit { background: #E8F5E9; color: #2E7D32; }
.icon-btn.del { background: #FFEBEE; color: #C62828; }
.icon-btn:hover { transform: scale(1.1); }

/* Admin bookings grouped */
/* bookings controls styles moved below */
.session-group { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 16px; overflow: hidden; }
.session-group-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; cursor: pointer; background: var(--white); transition: background 0.2s; }
.session-group-header:hover { background: #E0F7FA; }
.session-group-body { padding: 0 20px 16px; }
.session-group.collapsed .session-group-body { display: none; }
.expand-icon { transition: transform 0.2s; }
.expand-icon.open { transform: rotate(180deg); }

/* Admin dashboard recent bookings */
.bookings-list { display: flex; flex-direction: column; gap: 12px; }
.booking-item {
  display: flex; align-items: center; gap: 16px; padding: 16px;
  background: var(--light-gray); border-radius: var(--radius-sm); transition: background 0.2s;
}
.booking-item:hover { background: #E0F7FA; }
.booking-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--cyan);
  display: flex; align-items: center; justify-content: center; color: var(--white);
  font-weight: 800; font-size: 16px; flex-shrink: 0;
}
.booking-info { flex: 1; }
.booking-info strong { display: block; font-size: 15px; }
.booking-info span { font-size: 13px; color: var(--gray); }
.booking-amount { font-family: 'Bubblegum Sans', cursive; font-size: 18px; color: var(--orange); }
.booking-paid-badge { background: #E8F5E9; color: #2E7D32; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; }

/* Alert */
.alert { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 16px; font-weight: 600; font-size: 14px; }
.alert-success { background: #E8F5E9; color: #2E7D32; border-left: 4px solid #4CAF50; }
.alert-error { background: #FFEBEE; color: #C62828; border-left: 4px solid #F44336; }

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.hidden { display: none !important; }
.modal-box { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 32px; max-width: 700px; width: 100%; max-height: 90vh; overflow-y: auto; }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.modal-header h2 { font-family: 'Bubblegum Sans', cursive; font-size: 24px; color: var(--cyan); margin: 0; }
.modal-close { background: none; border: none; font-size: 26px; color: var(--gray); line-height: 1; padding: 4px; }
.modal-close:hover { color: var(--dark); }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-backdrop {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  display: flex; justify-content: center; padding: 24px;
  pointer-events: none;
}
.cookie-backdrop .cookie-box {
  pointer-events: auto;
}
.cookie-box {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  max-width: 520px; width: 100%; overflow: hidden;
}
.cookie-header { padding: 24px 24px 0; }
.cookie-header h3 { font-family: 'Bubblegum Sans', cursive; font-size: 22px; color: var(--cyan); margin-bottom: 8px; }
.cookie-header p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.cookie-categories { padding: 16px 24px; }
.cookie-cat { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--light-gray); }
.cookie-cat:last-child { border-bottom: none; }
.cookie-cat-info { flex: 1; }
.cookie-cat-info strong { font-size: 14px; color: var(--dark); display: block; margin-bottom: 2px; }
.cookie-cat-info small { font-size: 12px; color: var(--gray); line-height: 1.5; }
.cookie-toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; margin-left: 16px; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle .slider {
  position: absolute; inset: 0; background: #D1D5DB; border-radius: 24px; cursor: pointer; transition: 0.2s;
}
.cookie-toggle .slider::before {
  content: ''; position: absolute; width: 18px; height: 18px; left: 3px; bottom: 3px;
  background: var(--white); border-radius: 50%; transition: 0.2s;
}
.cookie-toggle input:checked + .slider { background: var(--cyan); }
.cookie-toggle input:checked + .slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .slider { opacity: 0.6; cursor: not-allowed; }
.cookie-actions { padding: 16px 24px 24px; display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast {
  position: fixed; top: 80px; right: 20px; z-index: 400;
  padding: 14px 24px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 14px; color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: opacity 0.3s;
}
.toast-error { background: var(--hand-red); }
.toast-success { background: var(--lime); }
.toast.fade-out { opacity: 0; }
.toast-container { position: fixed; top: 80px; right: 20px; z-index: 400; display: flex; flex-direction: column; gap: 8px; }

/* ============================================================
   WAVE DIVIDER
   ============================================================ */
.wave-divider { display: block; width: 100%; height: auto; margin: -1px 0; }

/* ============================================================
   FEATURE ICON (blob border)
   ============================================================ */
.feature-icon {
  width: 80px; height: 80px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: var(--cyan);
  background: var(--bg-alt); border: 3px solid var(--cyan);
  border-radius: 58% 42% 52% 48% / 48% 55% 45% 52%;
}

/* ============================================================
   GALLERY (extra items)
   ============================================================ */
.gallery-item:nth-child(5) { border-radius: 55% 45% 48% 52% / 52% 48% 52% 48%; }
.gallery-item:nth-child(6) { border-radius: 45% 55% 52% 48% / 48% 52% 48% 52%; }

/* ============================================================
   TESTIMONIALS GRID
   ============================================================ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; max-width: 920px; margin: 0 auto;
}

/* ============================================================
   LOADING PLACEHOLDER
   ============================================================ */
.loading-placeholder {
  text-align: center; padding: 40px 20px; color: var(--gray);
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
}

/* ============================================================
   BOOKING — SESSION INFO BOX
   ============================================================ */
.session-info-box {
  background: var(--bg-alt); border-radius: var(--radius-sm); padding: 20px; margin-bottom: 24px;
  border-left: 4px solid var(--cyan);
}
.session-info-title { font-family: 'Bubblegum Sans', cursive; font-size: 22px; color: var(--cyan); }
.session-info-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.sibling-badge {
  background: #E8F5E9; color: #2E7D32; padding: 4px 12px;
  border-radius: 20px; font-size: 12px; font-weight: 700;
}
.what-to-bring {
  background: var(--light-gray); border-radius: var(--radius-sm); padding: 20px;
  text-align: left; margin-bottom: 28px;
}
.what-to-bring h3 { font-family: 'Bubblegum Sans', cursive; font-size: 18px; color: var(--cyan); margin-bottom: 12px; }
.what-to-bring ul { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 15px; color: var(--gray); }
.what-to-bring li i { margin-right: 8px; color: var(--cyan); width: 20px; text-align: center; }
.payment-notice { margin-top: 16px; background: var(--light-gray); border-radius: var(--radius-sm); padding: 16px; }
.payment-notice p { font-size: 14px; color: var(--gray); }

/* ============================================================
   ABOUT — STORY SECTION
   ============================================================ */
.about-story-section { max-width: 800px; }
.about-story-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 40px; margin-bottom: 32px;
}
.about-story-card h2 { font-size: 30px; color: var(--cyan); margin-bottom: 16px; }
.about-story-card h2 i { margin-right: 8px; }
.about-story-card:nth-child(1) h2 { color: var(--cyan); }
.about-story-card:nth-child(2) h2 { color: var(--orange); }
.about-story-card:nth-child(3) h2 { color: var(--pink); }
.about-story-card:nth-child(4) h2 { color: var(--teal); }
.about-story-card:nth-child(5) h2 { color: var(--lavender); }
.about-story-card p { color: var(--gray); line-height: 1.8; font-size: 16px; margin-bottom: 16px; }
.about-stat-val { font-family: 'Bubblegum Sans', cursive; font-size: 42px; }
.about-stat-lbl { font-size: 14px; font-weight: 700; opacity: 0.9; }

/* ============================================================
   ADMIN — EXTRA STYLES
   ============================================================ */
.admin-login-hint { color: var(--gray); font-size: 14px; }
.logout-link { margin-top: auto; color: rgba(255,255,255,0.5) !important; }
.bookings-controls {
  display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; align-items: center;
}
.bookings-tab-btn { font-size: 13px; padding: 8px 20px; }
.bookings-tab-btn:not(.active) { background: var(--light-gray); color: var(--dark); }
.bookings-search {
  padding: 8px 14px; border: 2px solid var(--light-gray); border-radius: var(--radius-sm);
  font-size: 14px; margin-left: auto; min-width: 220px;
}
.bookings-search:focus { outline: none; border-color: var(--cyan); }
.sandbox-toggle { margin-top: 16px; display: flex; align-items: center; gap: 12px; }
.checkbox-label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; font-weight: 700; }
.hint { font-size: 13px; color: var(--gray); }
.readonly-field { background: var(--light-gray) !important; font-size: 13px; }
.img-input-row { display: flex; gap: 8px; align-items: center; }
.img-input-row input { flex: 1; }
.img-upload-btn { white-space: nowrap; flex-shrink: 0; }
.modal-actions { margin-top: 24px; display: flex; gap: 12px; }

/* ============================================================
   COOKIE BUTTON STYLES
   ============================================================ */
.cookie-btn-all {
  background: var(--cyan); color: var(--white); border: none; padding: 12px 16px;
  border-radius: 50px; font-weight: 700; font-size: 14px; cursor: pointer; flex: 1;
  transition: all 0.25s;
}
.cookie-btn-all:hover { background: #00b8e6; }
.cookie-btn-essential {
  background: var(--light-gray); color: var(--dark); border: none; padding: 12px 16px;
  border-radius: 50px; font-weight: 700; font-size: 14px; cursor: pointer; flex: 1;
  transition: all 0.25s;
}
.cookie-btn-essential:hover { background: #E0E0E0; }
.cookie-btn-save {
  background: none; color: var(--cyan); border: 2px solid var(--cyan); padding: 12px 16px;
  border-radius: 50px; font-weight: 700; font-size: 14px; cursor: pointer; flex: 1;
  transition: all 0.25s;
}
.cookie-btn-save:hover { background: var(--cyan); color: var(--white); }
.cookie-always { font-size: 12px; font-weight: 700; color: var(--cyan); white-space: nowrap; margin-left: 16px; }

/* ============================================================
   CALENDAR LEGEND
   ============================================================ */
.cal-legend {
  display: flex; gap: 20px; margin-top: 16px; padding: 16px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  font-size: 13px; font-weight: 700;
}
.legend-item { display: flex; align-items: center; gap: 8px; }
.legend-dot { width: 16px; height: 16px; border-radius: 4px; }
.legend-dot--available { background: #E0F7FA; border: 2px solid var(--cyan); }
.legend-dot--full { background: var(--light-gray); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 480px) {
  .hero { padding: 40px 16px 50px; }
  .section { padding: 48px 16px; }
  .feature-card, .testimonial-card { border-radius: 24px !important; }
  .how-step { border-radius: 20px !important; }
  .gallery-item { border-radius: 24px !important; }
  .booking-container { padding: 0 16px 40px; }
}
