@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;600;700;800&family=Nunito:wght@400;500;600;700&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:   #FFD60A;
  --coral:    #FF6B6B;
  --sky:      #4ECDC4;
  --mint:     #95E1D3;
  --purple:   #C77DFF;
  --orange:   #FF9F1C;
  --cream:    #FFF9F0;
  --white:    #FFFFFF;
  --dark:     #2D2D2D;
  --mid:      #6B6B6B;
  --shadow-y: 6px 12px 0px rgba(0,0,0,0.12);
  --shadow-c: 6px 12px 0px rgba(78,205,196,0.3);
  --shadow-o: 6px 12px 0px rgba(255,159,28,0.3);
  --radius:   20px;
  --radius-lg: 32px;
  font-size: 16px;
}

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Baloo 2', cursive;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── FLOATING SHAPES BG ── */
.bubbles {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.bubbles span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: float linear infinite;
}
.bubbles span:nth-child(1)  { width:80px;  height:80px;  background:var(--yellow); left:5%;   animation-duration:18s; animation-delay:-3s;  }
.bubbles span:nth-child(2)  { width:120px; height:120px; background:var(--coral);  left:15%;  animation-duration:22s; animation-delay:-7s;  }
.bubbles span:nth-child(3)  { width:60px;  height:60px;  background:var(--sky);    left:30%;  animation-duration:15s; animation-delay:-1s;  }
.bubbles span:nth-child(4)  { width:100px; height:100px; background:var(--orange); left:50%;  animation-duration:20s; animation-delay:-10s; }
.bubbles span:nth-child(5)  { width:70px;  height:70px;  background:var(--purple); left:65%;  animation-duration:17s; animation-delay:-5s;  }
.bubbles span:nth-child(6)  { width:90px;  height:90px;  background:var(--mint);   left:80%;  animation-duration:24s; animation-delay:-14s; }
.bubbles span:nth-child(7)  { width:50px;  height:50px;  background:var(--yellow); left:90%;  animation-duration:13s; animation-delay:-2s;  }

@keyframes float {
  from { transform: translateY(110vh) rotate(0deg); }
  to   { transform: translateY(-20vh) rotate(360deg); }
}

/* ── NAVBAR ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 4px solid var(--yellow);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.75rem 0;
}
.nav-logo-img {
  height: 52px; width: auto;
  flex-shrink: 0;
  display: block;
}
.nav-logo .logo-icon {
  width: 48px; height: 48px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  border: 3px solid var(--dark);
  flex-shrink: 0;
}
.nav-logo .logo-text {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem; font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.nav-logo .logo-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  color: var(--mid);
  letter-spacing: 0.05em; text-transform: uppercase;
}

.nav-links {
  display: flex; gap: 0.25rem; list-style: none;
}
.nav-links a {
  font-family: 'Baloo 2', cursive;
  font-weight: 600; font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  display: block;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-2px);
}

.nav-cta {
  font-family: 'Baloo 2', cursive;
  font-weight: 700; font-size: 0.95rem;
  background: var(--coral);
  color: var(--white);
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  border: 3px solid var(--dark);
  box-shadow: 3px 4px 0 var(--dark);
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 6px 0 var(--dark);
}

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span {
  display: block; width: 26px; height: 3px;
  background: var(--dark); border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative; z-index: 1;
  min-height: calc(100vh - 76px);
  display: flex; align-items: center;
  padding: 4rem 2rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,214,10,0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(78,205,196,0.2) 0%, transparent 50%);
  z-index: -1;
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--mint);
  border: 2px solid var(--dark);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-family: 'Baloo 2', cursive;
  font-size: 0.85rem; font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  box-shadow: 2px 3px 0 var(--dark);
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero h1 .highlight {
  position: relative; display: inline-block;
  color: var(--coral);
}
.hero h1 .highlight::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 6px;
  background: var(--yellow);
  border-radius: 3px;
  z-index: -1;
}

.hero-desc {
  font-size: 1.1rem; line-height: 1.7;
  color: var(--mid);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
}

.btn-primary {
  font-family: 'Baloo 2', cursive;
  font-weight: 700; font-size: 1rem;
  background: var(--coral);
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: 3px solid var(--dark);
  box-shadow: 4px 5px 0 var(--dark);
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-block;
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 7px 0 var(--dark);
}

.btn-secondary {
  font-family: 'Baloo 2', cursive;
  font-weight: 700; font-size: 1rem;
  background: var(--yellow);
  color: var(--dark);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: 3px solid var(--dark);
  box-shadow: 4px 5px 0 var(--dark);
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-block;
}
.btn-secondary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 7px 0 var(--dark);
}

.hero-stats {
  display: flex; gap: 1.5rem; margin-top: 2.5rem;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: 'Baloo 2', cursive;
  font-size: 2rem; font-weight: 800;
  color: var(--coral);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem; font-weight: 600;
  color: var(--mid);
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* Hero image collage */
.hero-visual {
  position: relative; height: 500px;
}
.hero-img-main {
  position: absolute; top: 0; right: 0;
  width: 72%; height: 75%;
  border-radius: var(--radius-lg);
  border: 4px solid var(--dark);
  box-shadow: 8px 10px 0 var(--dark);
  object-fit: cover; object-position: center;
  z-index: 2;
}
.hero-img-secondary {
  position: absolute; bottom: 0; left: 0;
  width: 56%; height: 55%;
  border-radius: var(--radius-lg);
  border: 4px solid var(--dark);
  box-shadow: 8px 10px 0 var(--dark);
  object-fit: cover; object-position: center;
  z-index: 3;
}
.hero-sticker {
  position: absolute;
  background: var(--yellow);
  border: 3px solid var(--dark);
  border-radius: 50%;
  width: 90px; height: 90px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Baloo 2', cursive;
  font-size: 0.65rem; font-weight: 800;
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 4px 5px 0 var(--dark);
  z-index: 4;
  animation: spin-slow 8s linear infinite;
}
.hero-sticker.top { top: 0; left: 25%; }
.hero-sticker.bottom { bottom: 20px; right: 5%; background: var(--sky); }
.hero-sticker .sticker-icon { font-size: 1.4rem; line-height: 1; }

@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  background: var(--yellow);
  border: 2px solid var(--dark);
  border-radius: 50px;
  padding: 0.2rem 0.9rem;
  font-family: 'Baloo 2', cursive;
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  box-shadow: 2px 3px 0 var(--dark);
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
}
.section-header p {
  font-size: 1.05rem; color: var(--mid);
  max-width: 560px; margin: 0.6rem auto 0;
  line-height: 1.7;
}

/* ── FEATURES ── */
.features {
  position: relative; z-index: 1;
  padding: 5rem 2rem;
}
.features-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 3px solid var(--dark);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: 5px 7px 0 var(--dark);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.feature-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 10px 0 var(--dark);
}
.feature-card:nth-child(2) { background: #FFF0F0; }
.feature-card:nth-child(3) { background: #F0FFFE; }
.feature-card:nth-child(4) { background: #FFFBF0; }
.feature-card:nth-child(5) { background: #F5F0FF; }
.feature-card:nth-child(6) { background: #F0FFF9; }

.feature-icon {
  font-size: 2.2rem; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--dark);
  border-radius: 14px;
  box-shadow: 3px 3px 0 var(--dark);
}
.feature-card h3 {
  font-size: 1.15rem; font-weight: 700; margin-bottom: 0.4rem;
}
.feature-card p {
  font-size: 0.9rem; line-height: 1.6; color: var(--mid);
}

/* ── HOURS BAND ── */
.hours-band {
  position: relative; z-index: 1;
  background: var(--dark);
  padding: 3.5rem 2rem;
  overflow: hidden;
}
.hours-band::before {
  content: '☀️ ⭐ 🌈 ✨ 🎈 💛 ⭐ ☀️ 🌈 ✨ 🎈 💛 ☀️ ⭐ 🌈 ✨';
  position: absolute; top: 0; left: 0; right: 0;
  background: var(--yellow);
  padding: 0.3rem 0;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.5em;
  border-bottom: 3px solid var(--dark);
}
.hours-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  padding-top: 1rem;
}
.hours-title {
  font-size: 1.5rem; font-weight: 800;
  color: var(--yellow);
  margin-bottom: 1.2rem;
}
.hours-list { list-style: none; }
.hours-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem; font-weight: 500;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { font-weight: 700; color: var(--white); }
.hours-list .time { color: var(--mint); font-weight: 600; }
.hours-list .closed { color: var(--coral); }

.contact-quick {
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-quick h3 {
  font-size: 1.3rem; color: var(--yellow); margin-bottom: 1.2rem;
}
.contact-item {
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 0.9rem;
}
.contact-item .icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--yellow);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-item a, .contact-item span {
  color: rgba(255,255,255,0.9); font-size: 0.95rem; font-weight: 500;
}
.contact-item a:hover { color: var(--yellow); }

/* ── GALLERY PREVIEW / FULL GALLERY ── */
.gallery-section {
  position: relative; z-index: 1;
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--cream) 0%, #FFF5E8 100%);
}
.gallery-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}
.gallery-item {
  border-radius: var(--radius);
  border: 3px solid var(--dark);
  overflow: hidden;
  box-shadow: 5px 7px 0 var(--dark);
  aspect-ratio: 4/3;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.gallery-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 10px 0 var(--dark);
}
.gallery-item:nth-child(4n+1) { border-color: var(--coral); box-shadow: 5px 7px 0 var(--coral); }
.gallery-item:nth-child(4n+1):hover { box-shadow: 8px 10px 0 var(--coral); }
.gallery-item:nth-child(4n+2) { border-color: var(--sky); box-shadow: 5px 7px 0 var(--sky); }
.gallery-item:nth-child(4n+2):hover { box-shadow: 8px 10px 0 var(--sky); }
.gallery-item:nth-child(4n+3) { border-color: var(--orange); box-shadow: 5px 7px 0 var(--orange); }
.gallery-item:nth-child(4n+3):hover { box-shadow: 8px 10px 0 var(--orange); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.85);
  align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: var(--radius);
  border: 4px solid var(--white);
  object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 2.5rem; color: var(--white);
  background: none; border: none; cursor: pointer;
  line-height: 1;
  transition: transform 0.2s; 
}
.lightbox-close:hover { transform: rotate(90deg) scale(1.2); }

/* ── ABOUT PAGE ── */
.about-hero {
  position: relative; z-index: 1;
  padding: 5rem 2rem 3rem;
  text-align: center;
}
.about-hero h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 800; margin-bottom: 1rem; }
.about-hero p { font-size: 1.1rem; color: var(--mid); max-width: 640px; margin: 0 auto 2rem; line-height: 1.7; }

.mission-section {
  position: relative; z-index: 1;
  padding: 4rem 2rem;
}
.mission-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.mission-img-wrap {
  position: relative;
}
.mission-img-wrap img {
  width: 100%; border-radius: var(--radius-lg);
  border: 4px solid var(--dark);
  box-shadow: 8px 10px 0 var(--dark);
  object-fit: cover; height: 400px;
}
.mission-label {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--yellow);
  border: 3px solid var(--dark);
  border-radius: var(--radius);
  padding: 0.8rem 1.2rem;
  font-family: 'Baloo 2', cursive;
  font-weight: 800; font-size: 0.9rem;
  box-shadow: 4px 4px 0 var(--dark);
  text-align: center;
  line-height: 1.3;
}

.mission-content h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.mission-content p { font-size: 1rem; color: var(--mid); line-height: 1.75; margin-bottom: 0.8rem; }

.features-full {
  position: relative; z-index: 1;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #FFF9F0 0%, #FFEEF0 50%, #F0FFFE 100%);
}
.features-full-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
}
.feature-full-card {
  background: var(--white);
  border: 3px solid var(--dark);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 5px 7px 0 var(--dark);
  display: flex; gap: 1.2rem; align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-full-card:hover {
  transform: translate(-3px,-3px);
  box-shadow: 8px 10px 0 var(--dark);
}
.feature-full-card .icon { font-size: 1.8rem; flex-shrink: 0; }
.feature-full-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem; }
.feature-full-card p { font-size: 0.88rem; color: var(--mid); line-height: 1.6; }

/* ── CONTACT PAGE ── */
.contact-hero {
  position: relative; z-index: 1;
  padding: 5rem 2rem 3rem;
  text-align: center;
}
.contact-hero h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 800; margin-bottom: 0.8rem; }
.contact-hero p { font-size: 1.1rem; color: var(--mid); max-width: 540px; margin: 0 auto; }

.contact-section {
  position: relative; z-index: 1;
  padding: 3rem 2rem 6rem;
}
.contact-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start;
}

.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  border: 3px solid var(--dark);
  padding: 2.5rem;
  color: var(--white);
}
.contact-info-card h2 { font-size: 1.5rem; color: var(--yellow); margin-bottom: 1.5rem; }
.info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.info-item .ico {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--yellow);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.info-item .info-text { font-size: 0.9rem; }
.info-item .info-label { font-weight: 700; color: var(--mint); margin-bottom: 0.2rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.info-item .info-val { color: rgba(255,255,255,0.9); }
.info-item a { color: rgba(255,255,255,0.9); }
.info-item a:hover { color: var(--yellow); }

.hours-compact { margin-top: 1.5rem; }
.hours-compact h3 { color: var(--yellow); margin-bottom: 0.8rem; font-size: 1rem; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem;
}
.hours-row .day { font-weight: 600; color: rgba(255,255,255,0.9); }
.hours-row .time { color: var(--mint); font-weight: 600; }
.hours-row .closed { color: var(--coral); font-weight: 600; }

.contact-form-card {
  background: var(--white);
  border: 3px solid var(--dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 6px 8px 0 var(--dark);
}
.contact-form-card h2 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.contact-form-card p { font-size: 0.9rem; color: var(--mid); margin-bottom: 1.8rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-weight: 700; font-size: 0.85rem;
  margin-bottom: 0.4rem; color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 2.5px solid var(--dark);
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,107,107,0.15);
}
.form-group textarea { min-height: 120px; }
.form-submit {
  width: 100%;
  font-family: 'Baloo 2', cursive;
  font-weight: 700; font-size: 1.05rem;
  background: var(--coral);
  color: var(--white);
  padding: 0.9rem;
  border: 3px solid var(--dark);
  border-radius: 50px;
  box-shadow: 4px 5px 0 var(--dark);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  margin-top: 0.5rem;
}
.form-submit:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 7px 0 var(--dark);
}

.form-success {
  display: none;
  text-align: center; padding: 2rem;
}
.form-success .big-check { font-size: 3rem; margin-bottom: 0.5rem; }
.form-success h3 { font-size: 1.3rem; color: var(--sky); margin-bottom: 0.4rem; }
.form-success p { color: var(--mid); font-size: 0.9rem; }

/* ── FOOTER ── */
footer {
  position: relative; z-index: 1;
  background: var(--dark);
  border-top: 4px solid var(--yellow);
  padding: 3rem 2rem 1.5rem;
  color: rgba(255,255,255,0.75);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .logo-wrap {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.footer-brand .logo-icon {
  width: 42px; height: 42px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  border: 2px solid rgba(255,255,255,0.3);
}
.footer-brand .brand-name {
  font-family: 'Baloo 2', cursive;
  font-weight: 800; font-size: 1.3rem;
  color: var(--white);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.65; max-width: 260px; }
.footer-col h4 {
  font-family: 'Baloo 2', cursive;
  font-size: 1rem; font-weight: 700;
  color: var(--yellow); margin-bottom: 0.8rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul a { font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--yellow); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: var(--yellow); }

/* ── PAGE WRAPPER ── */
.page-content { position: relative; z-index: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hours-inner { grid-template-columns: 1fr; gap: 2rem; }
  .mission-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  nav { padding: 0 1rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--yellow);
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 99;
  }
  .nav-links.open + .nav-cta { display: block; margin: 0 1rem 1rem; }
  .hero { padding: 3rem 1.5rem; }
  .hero-stats { gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.2s; }
.fade-up:nth-child(3) { animation-delay: 0.3s; }
.fade-up:nth-child(4) { animation-delay: 0.4s; }
.fade-up:nth-child(5) { animation-delay: 0.5s; }
.fade-up:nth-child(6) { animation-delay: 0.6s; }
