/* ===========================================================
   Woodmont Summer Camp — Design System
   Modern, sunny, playful summer-camp aesthetic
   =========================================================== */

:root {
  --sun: #FFC93C;
  --sun-dark: #F5A623;
  --coral: #FF6B5B;
  --coral-dark: #E8503F;
  --teal: #0EA5A5;
  --teal-dark: #0B7E7E;
  --navy: #12384A;
  --navy-soft: #1F4F63;
  --cream: #FFF8EC;
  --cream-2: #FFF1DA;
  --white: #FFFFFF;
  --leaf: #6FCF97;
  --ink: #1B2B33;
  --ink-soft: #4A5B63;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 12px 30px rgba(18, 56, 74, 0.12);
  --shadow-pop: 0 18px 40px rgba(255, 107, 91, 0.25);
  --max-width: 1180px;
  --font-head: 'Baloo 2', 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }

p { color: var(--ink-soft); }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--coral-dark);
  background: #FFE9E5;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: #CFE3EA; }
.section--cream2 { background: var(--cream-2); }
.section--white { background: var(--white); }

.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head p { font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--coral); color: var(--white); box-shadow: var(--shadow-pop); }
.btn-primary:hover { background: var(--coral-dark); }
.btn-secondary { background: var(--white); color: var(--navy); box-shadow: var(--shadow-soft); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-block { width: 100%; justify-content: center; }

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 248, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(18, 56, 74, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
}
.brand .brand-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.62rem; color: var(--ink-soft); letter-spacing: 0.08em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy-soft);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { background: var(--sun); color: var(--navy); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone { font-weight: 600; color: var(--navy); font-size: 0.9rem; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 24px; height: 3px; background: var(--navy); border-radius: 3px; position: relative; transition: 0.2s;
}
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 72px 0 110px;
  overflow: hidden;
  background: radial-gradient(circle at 15% 20%, #FFF3D6 0%, var(--cream) 55%);
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(0px); opacity: 0.85; z-index: 0;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
.hero-copy p.lead { font-size: 1.15rem; margin: 20px 0 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--coral-dark); }
.hero-stat span { font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }

.hero-art { position: relative; }
.hero-art-inner {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 78% 82%, rgba(255,255,255,0.16) 0%, transparent 45%),
    linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.hero-art-inner .sun {
  position: absolute; top: -40px; right: -40px; width: 170px; height: 170px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFE9A6, var(--sun) 55%, var(--sun-dark) 100%);
  box-shadow: 0 0 60px 10px rgba(255,201,60,0.45);
}
.hero-art-inner .sun-rays {
  position: absolute; inset: 0; z-index: 1;
  background: repeating-conic-gradient(from 0deg at 50% 45%, rgba(255,255,255,0.09) 0deg 6deg, transparent 6deg 24deg);
}
.hero-art-inner .wave {
  position: absolute; bottom: 0; left: 0; right: 0; height: 42%;
  background: rgba(255,255,255,0.14);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.hero-art-inner .wave-2 {
  position: absolute; bottom: 0; left: -10%; right: -10%; height: 30%;
  background: rgba(18,56,74,0.18);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.hero-art-inner .splash { position: absolute; z-index: 1; opacity: 0.9; }
.hero-art-inner .splash-1 { top: 14%; left: 8%; font-size: 1.6rem; }
.hero-art-inner .splash-2 { bottom: 12%; left: 14%; font-size: 1.1rem; }
.hero-art-inner .splash-3 { top: 22%; right: 12%; font-size: 1.2rem; }

.hero-art-inner .logo-plate {
  position: relative; z-index: 2;
  width: 66%; aspect-ratio: 1/1; border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px var(--sun), 0 0 0 9px rgba(255,255,255,0.55), 0 25px 55px rgba(0,0,0,0.35);
  padding: 5%;
}
.hero-art-inner .logo-plate img { width: 100%; height: 100%; object-fit: contain; }

.hero-art .floaty {
  position: absolute; z-index: 3;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: var(--shadow-soft);
  animation: hero-float 3.6s ease-in-out infinite;
}
.hero-art .floaty-1 { top: 6%; left: -8%; animation-delay: 0s; }
.hero-art .floaty-2 { bottom: 16%; left: -6%; animation-delay: 0.7s; }
.hero-art .floaty-3 { top: 10%; right: -8%; animation-delay: 1.4s; }
.hero-art .floaty-4 { bottom: 6%; right: -6%; animation-delay: 2.1s; }
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-art .sparkle { position: absolute; z-index: 3; color: var(--sun); text-shadow: 0 2px 6px rgba(0,0,0,0.15); }
.hero-art .sparkle-1 { top: 2%; left: 42%; font-size: 1.6rem; }
.hero-art .sparkle-2 { bottom: 26%; right: 22%; font-size: 1.1rem; color: var(--white); }
.hero-art .sparkle-3 { top: 46%; left: -2%; font-size: 1rem; }
@media (max-width: 720px) {
  .hero-art .floaty { width: 46px; height: 46px; font-size: 1.3rem; }
  .hero-art .floaty-1, .hero-art .floaty-3 { top: 2%; }
  .hero-art .floaty-1 { left: -4%; }
  .hero-art .floaty-3 { right: -4%; }
  .hero-art .floaty-2 { left: -3%; }
  .hero-art .floaty-4 { right: -3%; }
}

.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.badge-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); padding: 8px 14px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; color: var(--navy-soft); box-shadow: var(--shadow-soft);
}

/* ============ CARDS ============ */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(18,56,74,0.16); }
.card .icon-badge {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 18px;
}
.card ul { margin-top: 14px; }
.card ul li { padding-left: 22px; position: relative; margin-bottom: 8px; font-size: 0.95rem; color: var(--ink-soft); }
.card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
  transition: transform 0.2s ease;
}
.program-card:hover { transform: translateY(-6px); }
.program-card .banner {
  height: 130px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.program-card .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.program-card .price-tag { font-family: var(--font-head); color: var(--coral-dark); font-size: 1.2rem; margin: 10px 0 16px; }
.program-card .body a.btn { margin-top: auto; align-self: flex-start; }

.pill-tag {
  display: inline-block; background: var(--cream-2); color: var(--navy-soft);
  font-size: 0.78rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
}

/* Testimonials */
.testimonial-card {
  background: var(--white); border-radius: var(--radius-md); padding: 28px;
  box-shadow: var(--shadow-soft); position: relative;
}
.testimonial-card .stars { color: var(--sun-dark); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card .who { margin-top: 16px; font-weight: 700; color: var(--navy); font-size: 0.9rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--coral) 0%, var(--sun-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-pop);
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.92); max-width: 560px; margin: 12px auto 28px; }

/* Tables */
.rate-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); }
.rate-table th, .rate-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid #F0E8D8; }
.rate-table th { background: var(--navy); color: var(--white); font-family: var(--font-head); font-size: 0.95rem; }
.rate-table tr:last-child td { border-bottom: none; }
.rate-table tr:hover td { background: var(--cream-2); }
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); }

/* FAQ accordion */
.faq-item { background: var(--white); border-radius: var(--radius-md); margin-bottom: 14px; box-shadow: var(--shadow-soft); overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 26px; cursor: pointer; font-family: var(--font-head); font-weight: 600; color: var(--navy); gap: 16px; }
.faq-q .plus { font-size: 1.4rem; color: var(--coral); transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; padding: 0 26px; }
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 22px; }

/* Timeline (About) */
.timeline { border-left: 3px solid var(--teal); padding-left: 28px; display: flex; flex-direction: column; gap: 30px; }
.timeline-item strong { color: var(--coral-dark); font-family: var(--font-head); display: block; margin-bottom: 4px; }

/* Info strip */
.info-strip { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.info-strip .item { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--navy); }

/* Footer */
.site-footer { background: var(--navy); color: #CFE3EA; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--sun); }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); color: var(--white); font-size: 1.2rem; margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; }
.social-row a:hover { background: var(--sun); color: var(--navy); }

/* Page hero (inner pages) */
.page-hero { padding: 64px 0 56px; background: linear-gradient(135deg, var(--cream-2), var(--cream)); text-align: center; }
.page-hero .section-head { margin-bottom: 0; }
.page-hero-art { max-width: 640px; margin: 32px auto 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.page-hero-art img { display: block; width: 100%; height: auto; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 14px; }
.breadcrumb a { color: var(--teal-dark); font-weight: 600; }

/* Utility */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.check-list li { padding-left: 26px; position: relative; margin-bottom: 12px; font-weight: 500; color: var(--ink); }
.check-list li::before { content: '🌟'; position: absolute; left: 0; }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid, .two-col { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .nav { flex-wrap: wrap; padding: 12px 16px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .brand { font-size: 1.05rem; }
  .brand .brand-icon { width: 36px; height: 36px; font-size: 1.15rem; }
  .site-header.open .nav-links,
  .site-header.open .nav-cta {
    display: flex; flex-basis: 100%; width: 100%;
    flex-direction: column; align-items: stretch; gap: 4px;
  }
  .site-header.open .nav-links {
    background: var(--cream); padding: 16px 4px 8px;
    box-shadow: var(--shadow-soft);
  }
  .site-header.open .nav-links a { width: 100%; }
  .site-header.open .nav-cta {
    background: var(--cream); padding: 8px 4px 20px; gap: 10px;
    box-shadow: var(--shadow-soft);
  }
  .site-header.open .nav-cta .nav-phone {
    display: block; text-align: center; padding: 10px; font-size: 1rem;
  }
  .site-header.open .nav-cta .btn { width: 100%; text-align: center; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .cta-band { padding: 36px 24px; }
  .section { padding: 60px 0; }
}
