/* ==========================================================================
   LEKKER LAND WEBSITE — v3 BILINGUAL
   Brand colours from logo · Fonts: Fredoka (display) + Nunito (body)
   Features: language popup, toggle, food section, photo placeholders
   ========================================================================== */

:root {
  --pink: #E91E63;
  --pink-soft: #FCE4EC;
  --orange: #F5A623;
  --orange-soft: #FFF4E0;
  --green: #8BC34A;
  --green-soft: #EEF7E3;
  --navy: #2D2A5C;
  --navy-dark: #1E1B42;
  --white: #FFFFFF;
  --cream: #FFF9F0;
  --cream-deep: #FDF3E0;
  --text: #2D2A5C;
  --text-muted: #6B6885;

  --shadow-sm: 0 4px 12px rgba(45, 42, 92, 0.08);
  --shadow-md: 0 10px 30px rgba(45, 42, 92, 0.12);
  --shadow-lg: 0 20px 50px rgba(45, 42, 92, 0.18);
  --shadow-colour: 0 15px 35px rgba(233, 30, 99, 0.25);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 400;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--pink);
  text-decoration: none;
  transition: all 0.2s ease;
}

h1, h2, h3 {
  font-family: 'Fredoka', sans-serif;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   LANGUAGE POPUP (first visit)
   ========================================================================== */

.lang-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  background: rgba(30, 27, 66, 0.85);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.4s ease-out;
  overflow-y: auto;
  box-sizing: border-box;
}

.lang-popup.show {
  display: flex;
}

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

.lang-popup-inner {
  background: var(--white);
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 420px;
  width: calc(100% - 2rem);
  box-shadow: var(--shadow-lg);
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-top: 8px solid var(--pink);
  box-sizing: border-box;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.popup-logo {
  max-width: 160px;
  margin: 0 auto 1.5rem;
  background: var(--green-soft);
  padding: 1rem;
  border-radius: var(--radius-md);
}

.lang-popup h2 {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
}

.lang-popup p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.5;
}

.lang-popup-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.lang-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  color: var(--white);
}

.lang-btn-af {
  background: var(--pink);
}

.lang-btn-en {
  background: var(--green);
}

.lang-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   LANGUAGE TOGGLE (header + landing corner)
   ========================================================================== */

.lang-toggle {
  display: inline-flex;
  background: var(--cream-deep);
  border-radius: 50px;
  padding: 4px;
  gap: 2px;
}

.lang-toggle-landing {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.lang-toggle button {
  background: transparent;
  border: none;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.05em;
}

.lang-toggle-landing button {
  color: rgba(255, 255, 255, 0.7);
}

.lang-toggle button.active {
  background: var(--pink);
  color: var(--white);
}

.lang-toggle button:not(.active):hover {
  color: var(--navy);
}

.lang-toggle-landing button:not(.active):hover {
  color: var(--white);
}

/* ==========================================================================
   LANDING PAGE — DARK PLAYFUL
   ========================================================================== */

.landing-body {
  background: radial-gradient(ellipse at top, #3A3670 0%, var(--navy-dark) 60%, #0F0D2A 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
}

.floating-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: float 20s infinite ease-in-out;
}

.shape-pink {
  width: 400px; height: 400px;
  background: var(--pink);
  top: -100px; left: -100px;
}

.shape-orange {
  width: 350px; height: 350px;
  background: var(--orange);
  bottom: -80px; right: -80px;
  animation-delay: -7s;
}

.shape-green {
  width: 300px; height: 300px;
  background: var(--green);
  top: 40%; left: 60%;
  animation-delay: -14s;
  opacity: 0.25;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

.star {
  position: absolute;
  color: var(--orange);
  font-size: 1.5rem;
  opacity: 0.6;
  animation: twinkle 3s infinite ease-in-out;
}

.star-1 { top: 15%; left: 10%; animation-delay: 0s; }
.star-2 { top: 25%; right: 15%; animation-delay: 0.5s; color: var(--pink); }
.star-3 { bottom: 30%; left: 20%; animation-delay: 1s; color: var(--green); }
.star-4 { bottom: 20%; right: 25%; animation-delay: 1.5s; color: var(--orange); }

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

.dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
}

.dot-1 { top: 20%; right: 30%; background: var(--pink); }
.dot-2 { bottom: 35%; right: 10%; background: var(--green); }
.dot-3 { top: 60%; left: 8%; background: var(--orange); }

.landing-main {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
  margin-left: auto;
  margin-right: auto;
}

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

.landing-logo {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.landing-logo img {
  max-width: 320px;
  width: 70%;
  filter: drop-shadow(0 10px 40px rgba(233, 30, 99, 0.3));
  animation: gentleBounce 3s ease-in-out infinite;
}

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

.landing-tagline {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--pink);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.landing-intro {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  font-size: 1.15rem;
  font-weight: 500;
}

.choice-card h2 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.choice-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.choice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
}

.choice-preschool::before {
  background: linear-gradient(90deg, var(--pink), var(--orange));
}

.choice-aftercare::before {
  background: linear-gradient(90deg, var(--green), var(--orange));
}

.choice-card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.08;
  transition: all 0.4s ease;
}

.choice-preschool::after { background: var(--pink); }
.choice-aftercare::after { background: var(--green); }

.choice-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-colour);
}

.choice-card:hover::after {
  transform: scale(1.4);
  opacity: 0.15;
}

.choice-badge {
  display: inline-block;
  background: var(--orange-soft);
  color: var(--orange);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  align-self: center;
}

.choice-preschool .choice-badge {
  background: var(--pink-soft);
  color: var(--pink);
}

.choice-aftercare .choice-badge {
  background: var(--green-soft);
  color: #5A8F2A;
}

.choice-card h2 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.choice-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.choice-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Fredoka', sans-serif;
  transition: all 0.3s ease;
  align-self: center;
  position: relative;
  z-index: 1;
}

.choice-preschool .choice-button { background: var(--pink); }
.choice-aftercare .choice-button { background: var(--green); }

.choice-card:hover .choice-button {
  gap: 0.9rem;
  transform: translateX(4px);
}

.landing-footer {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-line {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-sep { opacity: 0.4; }

.landing-footer a {
  color: var(--orange);
  font-weight: 600;
}

.landing-footer a:hover { color: var(--white); }

.copyright {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 0.75rem;
}

/* ==========================================================================
   INSIDE PAGES — HEADER
   ========================================================================== */

.site-header {
  background: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid transparent;
}

.page-preschool .site-header { border-bottom-color: var(--pink); }
.page-aftercare .site-header { border-bottom-color: var(--green); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.header-logo img {
  height: 60px;
  width: auto;
  background: var(--green-soft);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  position: relative;
}

.site-nav a:not(.nav-switch)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 3px;
  background: var(--pink);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.page-aftercare .site-nav a:not(.nav-switch)::after { background: var(--green); }

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

.nav-switch {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.page-preschool .nav-switch { background: var(--green); }
.page-aftercare .nav-switch { background: var(--pink); }

.nav-switch:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */

.hero {
  padding: 6rem 1.5rem 8rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-preschool {
  background: linear-gradient(135deg, var(--pink) 0%, #F06292 50%, var(--orange) 100%);
}

.hero-aftercare {
  background: linear-gradient(135deg, var(--green) 0%, #7CB342 50%, var(--orange) 100%);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  filter: blur(40px);
  animation: float 15s infinite ease-in-out;
}

.hero-blob-1 { width: 250px; height: 250px; top: -50px; left: -50px; }
.hero-blob-2 { width: 200px; height: 200px; bottom: 20%; right: 10%; animation-delay: -5s; }
.hero-blob-3 { width: 150px; height: 150px; top: 40%; left: 50%; animation-delay: -10s; }

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.reviews-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.review-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Fredoka', sans-serif;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.review-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.review-btn:hover {
  transform: translateY(-3px);
}

.review-btn-google {
  background: var(--white);
  color: var(--navy);
  border-color: #e5e5e5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.review-btn-google:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.review-btn-leave {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.review-btn-leave:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.review-btn-facebook {
  background: #1877F2;
  color: var(--white);
}

.review-btn-facebook:hover {
  background: #1461c9;
}

.review-btn-tiktok {
  background: #000000;
  color: var(--white);
}

.review-btn-tiktok:hover {
  background: #222222;
}

.wave-divider {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%;
  height: 80px;
  display: block;
}

/* ==========================================================================
   PHOTO PLACEHOLDERS
   ========================================================================== */

.photo-placeholder {
  background: repeating-linear-gradient(
    45deg,
    var(--cream-deep),
    var(--cream-deep) 15px,
    var(--cream) 15px,
    var(--cream) 30px
  );
  border: 3px dashed var(--pink);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 240px;
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
}

.photo-placeholder span {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}

.photo-placeholder strong {
  font-family: 'Fredoka', sans-serif;
  color: var(--pink);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.photo-placeholder em {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 280px;
}

.photo-placeholder-wide {
  min-height: 320px;
}

/* Photo band (hero photo between sections) */
.photo-band {
  background: var(--cream);
  padding: 0 0 0 0;
  margin-top: -1px;
}

.photo-band-inner {
  max-width: 1400px;
  margin: -40px auto 0;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* About photo */
.about-photo {
  max-width: 800px;
  margin: 2.5rem auto 0;
}

.site-photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  background: var(--cream-deep);
}

.site-photo-wide {
  aspect-ratio: 16 / 6;
  min-height: 280px;
  object-fit: contain;
  object-position: center;
}

.transport-photo {
  max-width: 760px;
  margin: 2.5rem auto;
}

.transport-photo picture {
  display: block;
}

.site-photo-transport {
  height: auto;
  min-height: 0;
  max-height: 680px;
  object-fit: contain;
  object-position: center;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Fredoka', sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  color: var(--pink);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

.section-contact .btn-primary {
  background: var(--navy);
  color: var(--white);
}

.section-contact .btn-primary:hover {
  background: var(--pink);
  color: var(--white);
}

.page-aftercare .section-contact .btn-primary:hover {
  background: var(--green);
}

.section-contact .btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.section-contact .btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section {
  padding: 5rem 0;
  position: relative;
}

.section-alt { background: var(--cream-deep); }

.section-contact {
  background: linear-gradient(135deg, var(--cream) 0%, var(--pink-soft) 100%);
}

.page-aftercare .section-contact {
  background: linear-gradient(135deg, var(--cream) 0%, var(--green-soft) 100%);
}

.section h2 {
  text-align: center;
  margin-bottom: 1.25rem;
}

.section .lead {
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 1.25rem;
  line-height: 1.7;
}

.section .lead.highlight {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.25rem;
  font-family: 'Fredoka', sans-serif;
  margin-top: 1.5rem;
}

/* Sticker labels */
.sticker {
  display: block;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 auto 1.25rem;
  width: fit-content;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-sm);
  background: var(--pink-soft);
  color: var(--pink);
}

.sticker-pink { background: var(--pink-soft); color: var(--pink); }
.sticker-orange { background: var(--orange-soft); color: #C17800; transform: rotate(2deg); }
.sticker-green { background: var(--green-soft); color: #5A8F2A; transform: rotate(-1deg); }
.sticker-navy { background: rgba(45, 42, 92, 0.1); color: var(--navy); transform: rotate(1deg); }

.hero .sticker {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   VALUES GRID
   ========================================================================== */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--white);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
}

.value-pink::before { background: var(--pink); }
.value-orange::before { background: var(--orange); }
.value-green::before { background: var(--green); }

.value-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-md);
}

.value-card:nth-child(even):hover {
  transform: translateY(-8px) rotate(1deg);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: gentleBounce 3s infinite ease-in-out;
}

.value-card:nth-child(2) .value-icon { animation-delay: 0.5s; }
.value-card:nth-child(3) .value-icon { animation-delay: 1s; }

/* ==========================================================================
   PROGRAMME GRID
   ========================================================================== */

.programme-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 2rem;
}

.programme-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--orange);
  transition: all 0.3s ease;
}

.programme-card:nth-child(1) { border-left-color: var(--pink); }
.programme-card:nth-child(2) { border-left-color: var(--orange); }
.programme-card:nth-child(3) { border-left-color: var(--green); }
.programme-card:nth-child(4) { border-left-color: var(--navy); }

.programme-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.programme-featured {
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--orange-soft) 100%);
  border-left-color: var(--pink);
}

.programme-age-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   FOOD SECTION
   ========================================================================== */

.food-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.food-photo .photo-placeholder {
  min-height: 380px;
  aspect-ratio: 1;
  border-color: var(--orange);
}

.food-photo .photo-placeholder strong {
  color: var(--orange);
}

.food-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.food-feature {
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.3s ease;
  border-left: 5px solid var(--orange);
}

.food-feature:nth-child(1) { border-left-color: var(--pink); }
.food-feature:nth-child(2) { border-left-color: var(--orange); }
.food-feature:nth-child(3) { border-left-color: var(--green); }
.food-feature:nth-child(4) { border-left-color: var(--navy); }

.food-feature:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.food-check {
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-deep);
  border-radius: 50%;
}

.food-feature p {
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
  margin: 0;
}

/* ==========================================================================
   INFO BLOCK
   ========================================================================== */

.info-block {
  background: var(--white);
  padding: 1.75rem 2rem;
  border-radius: var(--radius-md);
  margin: 2rem auto 0;
  max-width: 600px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 3px dashed var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.info-block-large {
  max-width: 800px;
  flex-direction: column;
  text-align: center;
  border-color: var(--green);
}

.info-icon { font-size: 2.5rem; }

.info-block h3 {
  margin-bottom: 0.25rem;
  text-align: left;
}

.info-block-large h3 {
  text-align: center;
  margin-bottom: 1rem;
}

.info-block p {
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
}

.info-extra {
  margin-top: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.school-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.school-list li {
  background: var(--green);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  box-shadow: 0 4px 12px rgba(139, 195, 74, 0.35);
  transition: transform 0.2s ease;
}

.school-list li:hover { transform: translateY(-3px); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

blockquote {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.3s ease;
}

blockquote::before {
  content: '"';
  position: absolute;
  top: -15px; left: 20px;
  font-size: 5rem;
  line-height: 1;
  font-family: 'Fredoka', serif;
  color: var(--pink);
  opacity: 0.3;
  font-weight: 700;
}

.quote-pink::before { color: var(--pink); }
.quote-green::before { color: var(--green); }
.quote-orange::before { color: var(--orange); }

blockquote:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: var(--shadow-md);
}

blockquote:nth-child(even):hover {
  transform: translateY(-5px) rotate(1deg);
}

blockquote p {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

blockquote cite {
  color: var(--navy);
  font-weight: 700;
  font-style: normal;
  font-size: 0.9rem;
  font-family: 'Fredoka', sans-serif;
}

/* ==========================================================================
   PHOTO GALLERY
   ========================================================================== */

.gallery-section {
  padding: 4rem 0;
}

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

.gallery-grid .photo-placeholder {
  min-height: 220px;
  aspect-ratio: 1;
}

.gallery-grid .photo-placeholder:nth-child(1) { border-color: var(--pink); }
.gallery-grid .photo-placeholder:nth-child(1) strong { color: var(--pink); }
.gallery-grid .photo-placeholder:nth-child(2) { border-color: var(--orange); }
.gallery-grid .photo-placeholder:nth-child(2) strong { color: var(--orange); }
.gallery-grid .photo-placeholder:nth-child(3) { border-color: var(--green); }
.gallery-grid .photo-placeholder:nth-child(3) strong { color: #5A8F2A; }
.gallery-grid .photo-placeholder:nth-child(4) { border-color: var(--navy); }
.gallery-grid .photo-placeholder:nth-child(4) strong { color: var(--navy); }

.gallery-grid .gallery-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  display: block;
  border: 3px solid transparent;
}

.gallery-grid .gallery-photo:nth-child(1) { border-color: var(--pink); }
.gallery-grid .gallery-photo:nth-child(2) { border-color: var(--orange); }
.gallery-grid .gallery-photo:nth-child(3) { border-color: var(--green); }
.gallery-grid .gallery-photo:nth-child(4) { border-color: var(--navy); }

.food-photo .gallery-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  display: block;
  border: 3px solid var(--orange);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 2rem;
}

.contact-item {
  text-align: center;
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.contact-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.contact-item a {
  color: var(--pink);
  font-weight: 700;
  font-size: 1.05rem;
}

.page-aftercare .contact-item a { color: #5A8F2A; }

.contact-item a:hover { color: var(--orange); }

.contact-map-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.contact-map-link:hover h3 {
  color: var(--pink);
}

.page-aftercare .contact-map-link:hover h3 {
  color: #5A8F2A;
}

.cta-block {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-tagline {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.site-footer p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.footer-nav { margin-top: 1rem; }

.site-footer a {
  color: var(--pink);
  font-weight: 700;
}

.site-footer a:hover { color: var(--orange); }

.footer-reg,
.site-footer .footer-reg {
  font-size: 0.78rem;
  opacity: 0.45;
  margin-top: 0.25rem;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (min-width: 769px) {
  .site-photo-wide      { max-height: 320px; }
  .site-photo-transport { max-height: 500px; }
}

@media (max-width: 900px) {
  .food-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

@media (max-width: 768px) {
  body { font-size: 16px; }

  .section { padding: 3.5rem 0; }
  .hero { padding: 4rem 1.5rem 5rem; }

  .choice-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .choice-card { min-height: auto; }

  .values-grid,
  .programme-grid,
  .testimonials-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    gap: 0.75rem;
  }

  .site-nav a { font-size: 0.85rem; }

  .header-inner { gap: 1rem; }
  .header-logo img { height: 48px; }

  .info-block {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .info-block h3 { text-align: center; }

  .hero-cta,
  .cta-block {
    flex-direction: column;
    align-items: stretch;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-line {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-sep { display: none; }

  .lang-toggle-landing {
    top: 1rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .landing-logo img { max-width: 240px; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  .lang-popup-buttons { flex-direction: column; }
}

/* ==========================================================================
   HERMES INTEGRATION: blog + parent-focused staging additions
   ========================================================================== */

.landing-blog-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-top: 2rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}

.landing-blog-link:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
}

.primary-soon {
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--green-soft), var(--white));
  border: 2px dashed rgba(139, 195, 74, 0.45);
}

.blog-teaser-section .lead {
  max-width: 760px;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.blog-preview-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-md);
  color: var(--text);
  border: 2px solid transparent;
  min-height: 240px;
}

.blog-preview-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
}

.blog-preview-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-weight: 900;
  font-size: 0.9rem;
}

.blog-preview-card p {
  color: var(--text-muted);
}

.blog-preview-card em {
  display: block;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-blog {
  background: radial-gradient(circle at 20% 20%, rgba(245,166,35,.28), transparent 28rem),
              linear-gradient(135deg, var(--navy), #3a3670 65%, var(--pink));
}

.page-blog .header-logo img {
  background: var(--green-soft);
  border-radius: var(--radius-md);
  padding: 0.45rem;
}

.blog-page-grid .blog-preview-card {
  min-height: 310px;
}

.blog-admin-note {
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--pink-soft), var(--white));
}

@media (max-width: 900px) {
  .blog-preview-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SCHOOL ANTHEM PLAYER
   ========================================================================== */

.landing-top-actions {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lang-toggle-landing {
  position: static;
  top: auto;
  right: auto;
}

.anthem-player {
  display: inline-flex;
  align-items: center;
}

.anthem-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: var(--white);
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}

.anthem-button:hover,
.anthem-button.is-playing {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  filter: brightness(1.05);
}

.anthem-button.is-playing .anthem-icon {
  animation: anthemPulse 0.9s ease-in-out infinite alternate;
}

.anthem-button-landing {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22), var(--shadow-sm);
  backdrop-filter: blur(10px);
}

@keyframes anthemPulse {
  from { transform: scale(1) rotate(-4deg); }
  to { transform: scale(1.16) rotate(4deg); }
}

@media (max-width: 900px) {
  .landing-top-actions {
    top: 1rem;
    right: 1rem;
    left: 1rem;
  }

  .anthem-button {
    font-size: 0.82rem;
    padding: 0.5rem 0.85rem;
  }
}

@media (max-width: 560px) {
  .landing-top-actions {
    justify-content: center;
  }

  .site-nav .anthem-player {
    width: 100%;
    justify-content: center;
    order: 20;
  }

  .site-nav .lang-toggle {
    order: 21;
  }
}

/* ==========================================================================
   COOKIE / LOCAL STORAGE NOTICE
   ========================================================================== */
.cookie-notice {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: -120px;
  z-index: 999;
  max-width: 720px;
  margin: 0 auto;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: bottom 0.4s ease;
}

.cookie-notice.show {
  bottom: 1rem;
}

.cookie-notice p {
  flex: 1;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
}

.cookie-notice a {
  color: var(--orange);
  text-decoration: underline;
}

.cookie-notice button {
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  background: var(--green);
  color: var(--navy);
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
}

/* ==========================================================================
   BLOG POST ARTICLE PAGES
   ========================================================================== */

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.article-back:hover { color: var(--pink); }

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.article-cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-bottom: 2.5rem;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
}

.article-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-body h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--pink);
  font-family: 'Fredoka', sans-serif;
}

.article-body p {
  margin-bottom: 1.25rem;
  line-height: 1.75;
  color: var(--text);
}

.article-body ul {
  margin: 0 0 1.5rem 1.25rem;
  line-height: 1.75;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-body strong {
  color: var(--navy);
}

.article-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  text-align: center;
}

.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-index-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease;
  color: inherit;
}

.blog-index-card:hover {
  transform: translateY(-4px);
}

.blog-index-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.blog-index-card-body {
  padding: 1.25rem 1.5rem;
}

.blog-index-card-body span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-index-card-body h3 {
  margin: 0.5rem 0;
  font-size: 1.15rem;
}

.blog-index-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.blog-index-card-body span.blog-card-author {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pink);
  text-transform: none;
  letter-spacing: normal;
}

.blog-search-wrap {
  max-width: 480px;
  margin: 0 auto 1rem;
}

.blog-search-input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 50px;
  border: 2px solid var(--cream-deep);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  background: var(--white);
  transition: border-color 0.2s ease;
}

.blog-search-input:focus {
  outline: none;
  border-color: var(--pink);
}

.blog-no-results {
  text-align: center;
  color: var(--text-muted);
  margin: 1rem 0 2rem;
}

@media (max-width: 900px) {
  .blog-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-index-grid {
    grid-template-columns: 1fr;
  }
}
