/* ===== JUMP BILINGUAL KITA - DESIGN SYSTEM ===== */

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

:root {
  /* ==============================================
     COLOR PALETTE - Cam Baski / Kindergarten Theme
     Change these values to update the entire site!
     ============================================== */

  /* Sky Blue (from cam baski background) */
  --sky: #D4EDFC;
  --sky-light: #E8F4FD;
  --sky-dark: #A8D5F2;

  /* Primary: Blue (from "Kita" text in logo) */
  --primary: #4A8FD6;
  --primary-dark: #3570B0;
  --primary-light: #EBF3FB;

  /* Secondary: Pink (from bear & "JUMP" text in logo) */
  --secondary: #E8879B;
  --secondary-light: #FDF0F2;

  /* Accent: Green (from grass in cam baski) */
  --accent: #7EC850;
  --accent-dark: #5CA832;
  --accent-light: #EDF7E6;

  /* Grass Green */
  --grass: #6BBF3B;
  --grass-dark: #4A9E25;
  --grass-light: #B8E590;

  /* Dark tones */
  --navy: #2B3E50;
  --navy-light: #3A5268;
  --white: #FFFFFF;
  --off-white: #F0F8FF;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #CED4DA;
  --gray-500: #ADB5BD;
  --gray-600: #868E96;
  --gray-700: #495057;
  --gray-800: #343A40;
  --gray-900: #212529;

  /* Typography */
  --font-heading: 'Nunito', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 50px rgba(0,0,0,0.15);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --container-max: 1200px;
  --header-height: 120px;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--sky-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }

p {
  margin-bottom: var(--space-md);
  color: var(--gray-700);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* --- HEADER & NAVIGATION --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(212, 237, 252, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  z-index: 1000;
  transition: box-shadow var(--transition-base);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo img {
  height: 95px;
  width: auto;
  transition: transform var(--transition-fast);
}

.logo:hover img {
  transform: scale(1.03);
}

/* Footer logo - smaller */
.footer .logo img {
  height: 160px;
  filter: brightness(1.1);
}

.footer-brand .logo {
  position: relative;
  z-index: 10;
  margin-top: -100px;
  margin-bottom: var(--space-md);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav a {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
  background: var(--primary-light);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  vertical-align: middle;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover > a::after {
  transform: rotate(-135deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-fast);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

/* Language Switcher */
.lang-switch {
  display: flex;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  padding: 3px;
  margin-left: var(--space-md);
}

.lang-switch a {
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  color: var(--gray-600);
}

.lang-switch a.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
  background: linear-gradient(180deg, var(--sky) 0%, var(--sky-light) 60%, #c8e6c9 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  display: none;
}

.hero-bg::after {
  display: none;
}

/* Clouds floating in hero */
.hero-clouds {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cloud {
  position: absolute;
  background: white;
  border-radius: 50px;
  opacity: 0.8;
}

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

.cloud-1 {
  width: 180px;
  height: 50px;
  top: 50%;
  animation: cloudFloat 25s linear infinite;
}
.cloud-1::before { width: 70px; height: 70px; top: -35px; left: 30px; }
.cloud-1::after { width: 50px; height: 50px; top: -20px; left: 90px; }

.cloud-2 {
  width: 140px;
  height: 40px;
  top: 65%;
  animation: cloudFloat 35s linear infinite;
  animation-delay: -10s;
  opacity: 0.6;
}
.cloud-2::before { width: 55px; height: 55px; top: -28px; left: 25px; }
.cloud-2::after { width: 40px; height: 40px; top: -15px; left: 70px; }

.cloud-3 {
  width: 200px;
  height: 95px;
  top: 8%;
  animation: cloudFloat 30s linear infinite;
  animation-delay: -18s;
  opacity: 0.7;
}
.cloud-3::before { width: 80px; height: 120px; top: -40px; left: 40px; }
.cloud-3::after { width: 60px; height: 120px; top: -25px; left: 110px; }

@keyframes cloudFloat {
  0% { transform: translateX(-250px); }
  100% { transform: translateX(calc(100vw + 250px)); }
}

/* Hero bottom grass */
.hero-grass {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  z-index: 1;
  background: url('../assets/images/grass-flowers.png') repeat-x bottom left;
  background-size: 700px auto;
}

.hero-grass img {
  display: none;
}

/* Hero illustrations */
.hero-illust {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero-illust-left {
  bottom: 20px;
  left: 3%;
  width: 180px;
}

.hero-illust-right {
  bottom: 30px;
  right: 3%;
  width: 160px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: var(--space-4xl) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: var(--space-xl);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  color: var(--navy);
  margin-bottom: var(--space-lg);
  font-weight: 800;
}

.hero h1 .highlight {
  color: var(--secondary);
}

.hero p {
  color: var(--gray-700);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 2px solid rgba(74,143,214,0.2);
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  background: #D6707E;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 135, 155, 0.4);
}

.btn-outline {
  background: rgba(255,255,255,0.7);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 143, 214, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-ghost:hover {
  background: var(--primary);
  color: var(--white);
}

/* --- SECTIONS --- */
.section {
  padding: var(--space-4xl) 0;
}

.section-alt {
  background: rgba(255,255,255,0.6);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--space-3xl);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  background: var(--sky);
  border-radius: var(--radius-full);
}

/* Wave divider between sections */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: -2px 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 120px;
}

.wave-divider.green svg {
  fill: #22ae45;
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
}

/* --- FEATURE CARDS --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(74,143,214,0.1);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(74,143,214,0.18);
  border-color: var(--sky-dark);
}

.feature-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  margin: 0 auto var(--space-lg);
}

.feature-icon.teal { background: var(--sky); }
.feature-icon.orange { background: var(--secondary-light); }
.feature-icon.coral { background: var(--accent-light); }

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

/* --- SPLIT SECTION (Image + Text) --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.split-image::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100px;
  height: 120px;
  background: var(--secondary);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.split-content h2 {
  margin-bottom: var(--space-lg);
}

.split-content p {
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.split-content .check-list {
  margin: var(--space-xl) 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.check-list li::before {
  content: '\2713';
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

/* --- ROOMS GRID --- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(74,143,214,0.08);
}

.room-card:hover {
  border-color: var(--sky-dark);
  box-shadow: 0 8px 30px rgba(74,143,214,0.15);
  transform: translateY(-4px);
}

.room-card .room-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.room-card h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

/* --- DAILY ROUTINE TIMELINE --- */
.timeline {
  max-width: 700px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 55px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.timeline-time {
  min-width: 110px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  padding-top: var(--space-sm);
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 10px;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-content h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

/* --- INFO BANNER --- */
.info-banner {
  background: linear-gradient(180deg, var(--sky) 0%, #c8e6c9 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
  color: var(--navy);
  margin: var(--space-2xl) 0;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 0 8px 30px rgba(74,143,214,0.12);
}

.info-banner h2 {
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.info-banner p {
  color: var(--gray-700);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  font-size: 1.05rem;
}

/* --- CONTACT FORM --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.contact-info-card .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 0.95rem;
  margin-bottom: var(--space-xs);
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  transition: border-color var(--transition-fast);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

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

/* Form alerts */
.form-alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-alert-success {
  background: var(--accent-light);
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.form-alert-error {
  background: var(--secondary-light);
  color: #c0392b;
  border: 1px solid var(--secondary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* --- GALLERY --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(38, 70, 83, 0);
  transition: background var(--transition-base);
}

.gallery-item:hover::after {
  background: rgba(38, 70, 83, 0.2);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

.lightbox.active {
  display: flex;
}

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

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

/* --- FOOTER --- */
.footer {
  background: linear-gradient(180deg, #22ae45 0%, #1a8a36 100%);
  color: rgba(255,255,255,0.8);
  padding: var(--space-4xl) 0 var(--space-xl);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}


.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

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

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact li .icon {
  color: var(--secondary);
  font-size: 1rem;
  margin-top: 2px;
}

.social-links {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.7);
  transition: all var(--transition-fast);
  font-size: 1.1rem;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-badges {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.footer-badges img {
  height: 40px;
  border-radius: var(--radius-sm);
  opacity: 0.8;
}

/* --- PAGE HEADER (for inner pages) --- */
.page-header {
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
  background: linear-gradient(180deg, var(--sky) 0%, var(--sky-light) 70%, #d4edd4 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  display: none;
}

.page-header::after {
  display: none;
}
}

.page-header h1 {
  color: var(--navy);
  margin-bottom: var(--space-md);
  position: relative;
}

.page-header p {
  color: var(--gray-700);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.85rem;
  position: relative;
}

.breadcrumb a {
  color: var(--gray-500);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--gray-400);
}

.breadcrumb .current {
  color: var(--navy);
}

/* --- CONTENT SECTIONS --- */
.content-section {
  padding: var(--space-3xl) 0;
}

.content-section + .content-section {
  border-top: 1px solid var(--gray-200);
}

.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block h2 {
  margin-bottom: var(--space-lg);
}

.content-block h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.content-block p {
  font-size: 1rem;
  line-height: 1.85;
}

.content-block ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.content-block ul li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  color: var(--gray-700);
}

.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* --- CAREER PAGE --- */
.career-highlight {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: var(--space-xl);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-xl) 0;
}

.career-highlight h3 {
  margin-top: 0;
  margin-bottom: var(--space-sm);
  color: var(--primary-dark);
}

/* --- IMPRESSUM --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--primary-light);
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* --- ENROLLMENT PAGE --- */
.enrollment-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.step-card {
  text-align: center;
  padding: var(--space-2xl);
}

.step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  margin: 0 auto var(--space-md);
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* --- DECORATIVE ILLUSTRATIONS --- */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

/* Sun - slow spin, gentle bob */
.deco-sun {
  width: 120px;
  top: 100px;
  right: 5%;
  animation: sunSpin 20s linear infinite, sunBob 4s ease-in-out infinite;
}

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

@keyframes sunBob {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -15px; }
}

/* Butterfly - flutter across */
.deco-butterfly {
  width: 70px;
  animation: butterflyFly 12s ease-in-out infinite, butterflyFlap 0.4s ease-in-out infinite alternate;
}

.deco-butterfly-1 {
  top: 30%;
  left: -80px;
}
.deco-butterfly-2 {
  top: 60%;
  right: -80px;
  transform: scaleX(-1);
}

@keyframes butterflyFly {
  0% { transform: translateX(0) translateY(0) rotate(-5deg); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translateX(120px) translateY(-40px) rotate(5deg); opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(250px) translateY(-10px) rotate(-3deg); opacity: 0; }
}

@keyframes butterflyFlap {
  0% { transform: scaleY(1); }
  100% { transform: scaleY(0.85); }
}

/* Kid in plane - fly right to left across the screen */
.deco-plane {
  width: 130px;
  animation: planeFly 18s ease-in-out infinite;
}

@keyframes planeFly {
  0% { transform: translate(100vw, 30px) rotate(-5deg); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translate(50vw, -20px) rotate(3deg); opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translate(-200px, 10px) rotate(-5deg); opacity: 0; }
}

/* Kid with kite - gentle sway */
.deco-kite {
  width: 140px;
  animation: kiteSway 5s ease-in-out infinite;
}

@keyframes kiteSway {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

/* Kid on bike - ride bounce */
.deco-bike {
  width: 110px;
  animation: bikeRide 3s ease-in-out infinite;
}

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

/* Kid with guitar - bob */
.deco-guitar {
  width: 110px;
  animation: guitarBob 2.5s ease-in-out infinite;
}

@keyframes guitarBob {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

/* Kids on pencil - float */
.deco-pencil {
  width: 140px;
  animation: pencilFloat 4s ease-in-out infinite;
}

@keyframes pencilFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

/* Grass border - bottom of sections */
.grass-border {
  position: relative;
  overflow: hidden;
}

.grass-border::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: url('../assets/images/grass-flowers.png') repeat-x bottom center;
  background-size: auto 80px;
  pointer-events: none;
  z-index: 2;
}

.grass-divider {
  width: 100%;
  height: 120px;
  background: url('../assets/images/grass-green.png') repeat-x center;
  background-size: auto 60px;
  margin: 0;
  display: block;
}

/* Hero decorations positioning */
.hero {
  position: relative;
  overflow: hidden;
}

.hero .deco-sun {
  top: calc(var(--header-height) + 20px);
  right: 8%;
}

.hero .deco-butterfly {
  top: 40%;
  left: 10%;
  width: 60px;
  animation-delay: 3s;
}

/* Hero clouds - higher than page-header clouds */
.hero .cloud-1 { top: 20%; }
.hero .cloud-2 { top: 35%; }
.hero .cloud-3 { top: 15%; }

/* Info banner illustration */
.info-banner {
  position: relative;
  overflow: hidden;
}


/* Section decoration adjustments */
.section {
  position: relative;
  overflow: hidden;
}

/* --- ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .deco-sun { width: 80px; }
  .deco-plane { width: 100px; }
  .deco-kite { width: 100px; }
  .deco-bike, .deco-guitar { width: 80px; }
  .deco-pencil { width: 100px; }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .split {
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .deco { display: none; }
  .grass-border::after { height: 50px; background-size: auto 50px; }

  :root {
    --header-height: 70px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-base);
    overflow-y: auto;
    gap: 0;
  }

  .nav.open {
    right: 0;
  }

  .nav a {
    width: 100%;
    padding: var(--space-md);
    font-size: 1rem;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: var(--space-md);
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .lang-switch {
    margin-left: 0;
    margin-top: var(--space-md);
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
  }

  .mobile-overlay.active {
    display: block;
  }

  .features-grid,
  .rooms-grid,
  .enrollment-steps {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .split-image {
    order: -1;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .timeline-item {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .timeline-item:not(:last-child)::after {
    display: none;
  }

  .timeline-dot {
    display: none;
  }

  .timeline-time {
    padding: var(--space-xs) var(--space-md);
    background: var(--primary-light);
    border-radius: var(--radius-full);
    display: inline-block;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

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