/*
Theme Name: Chatterbox Kids Nova
Theme URI: https://chatterboxkidsnova.com
Author: Chatterbox Kids Nova
Author URI: https://chatterboxkidsnova.com
Description: Custom theme for Chatterbox Kids Nova - Speech Therapy, Camps & Parties in Northern Virginia
Version: 4.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chatterbox-kids-nova
*/

/* ================================================
   CHATTERBOX KIDS NOVA — Shared Stylesheet
   Design inspired by mytentparties.com
   Palette: Turquoise, Purple, Sky Blue, Sapphire, Pastels
   ================================================ */

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

:root {
  --turquoise:     #3EC9C2;
  --turquoise-lt:  #A8E9E6;
  --turquoise-pale:#E6F9F8;
  --purple:        #9B72CF;
  --purple-lt:     #C9AEED;
  --purple-pale:   #F2ECFF;
  --pink:          #E87AB5;
  --pink-lt:       #F5BDD9;
  --pink-pale:     #FEF0F7;
  --sapphire:      #3B6DB8;
  --sapphire-lt:   #8AAEE0;
  --sapphire-pale: #EBF1FC;
  --sky:           #5BB8D4;
  --sky-pale:      #E8F5FA;
  --yellow:        #FFD966;
  --white:         #FFFFFF;
  --bg:            #F9FAFB;
  --text:          #1E1E2E;
  --text-med:      #4A4A6A;
  --text-light:    #8A8AAA;
  --border:        #E8E8F0;
  --shadow-sm:     0 2px 12px rgba(100,80,180,0.10);
  --shadow:        0 4px 24px rgba(100,80,180,0.13);
  --shadow-lg:     0 8px 40px rgba(100,80,180,0.18);
  --radius:        16px;
  --radius-sm:     10px;
  --radius-lg:     24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

h1,h2,h3,h4,h5 {
  font-family: 'Fredoka One', cursive;
  letter-spacing: 0.3px;
  line-height: 1.15;
}

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

/* ─── NAVBAR ─────────────────────────────────── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo .logo-icon { font-size: 34px; }
.nav-logo .logo-name {
  font-family: 'Fredoka One', cursive;
  font-size: 22px;
  color: var(--purple);
  display: block;
  line-height: 1;
}
.nav-logo .logo-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--turquoise);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: block;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-menu a {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-med);
  transition: color .2s;
  white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--purple); }
.nav-menu .nav-party { color: var(--pink) !important; }
.nav-menu .nav-party:hover { color: var(--purple) !important; }
.nav-cta {
  background: linear-gradient(135deg, var(--purple), var(--sapphire));
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 800 !important;
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(100,80,200,.3);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--purple);
}

/* Party navbar variant */
.party-navbar .nav-logo .logo-name { color: var(--pink); }
.party-navbar .nav-menu .nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--purple));
}
.party-navbar .nav-menu a:hover { color: var(--pink); }

/* ─── SITE BANNER ─────────────────────────────── */
.site-banner {
  background: linear-gradient(90deg, var(--sapphire), var(--purple));
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
}
.site-banner span { color: var(--yellow); }
.site-banner a { color: var(--yellow); text-decoration: underline; }

/* ─── HERO ─────────────────────────────────── */
.hero {
  padding: 80px 28px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-main-bg {
  background: linear-gradient(140deg, var(--turquoise-pale) 0%, var(--purple-pale) 55%, var(--pink-pale) 100%);
}
.hero-party-bg {
  background: linear-gradient(140deg, var(--pink-pale) 0%, var(--purple-pale) 55%, var(--sapphire-pale) 100%);
}
.hero-page-bg {
  background: linear-gradient(140deg, var(--sky-pale) 0%, var(--purple-pale) 100%);
  padding: 56px 28px 52px;
}
.hero-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-pill {
  display: inline-block;
  background: var(--white);
  color: var(--purple);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.hero h1 {
  font-size: clamp(34px, 5.5vw, 60px);
  color: var(--text);
  margin-bottom: 18px;
}
.hero h1 .accent-turquoise { color: var(--turquoise); }
.hero h1 .accent-purple    { color: var(--purple); }
.hero h1 .accent-pink      { color: var(--pink); }
.hero h1 .accent-sapphire  { color: var(--sapphire); }
.hero-sub {
  font-size: 18px;
  color: var(--text-med);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-deco { position: absolute; pointer-events: none; z-index: 0; }
.hero-deco.d1 { top:8%;  left:4%;  font-size:40px; opacity:.18; animation: fl 3s ease-in-out infinite; }
.hero-deco.d2 { top:14%; right:5%; font-size:30px; opacity:.15; animation: fl 3.5s ease-in-out infinite .4s; }
.hero-deco.d3 { bottom:12%; left:8%;  font-size:50px; opacity:.14; animation: fl 4s ease-in-out infinite .8s; }
.hero-deco.d4 { bottom:16%; right:6%; font-size:36px; opacity:.16; animation: fl 3.2s ease-in-out infinite 1.2s; }
@keyframes fl { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ─── BUTTONS ─────────────────────────────── */
.btn-group { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  text-align: center;
}
.btn:hover { transform: translateY(-3px); }
.btn-purple {
  background: linear-gradient(135deg, var(--purple), var(--sapphire));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(100,80,200,.25);
}
.btn-purple:hover { box-shadow: 0 6px 22px rgba(100,80,200,.35); }
.btn-turquoise {
  background: linear-gradient(135deg, var(--turquoise), #29B8B0);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(62,201,194,.3);
}
.btn-pink {
  background: linear-gradient(135deg, var(--pink), #D45A9B);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,122,181,.3);
}
.btn-outline {
  background: var(--white);
  color: var(--purple);
  border: 2.5px solid var(--purple-lt);
}
.btn-outline:hover { border-color: var(--purple); }
.btn-white {
  background: var(--white);
  color: var(--purple);
  box-shadow: var(--shadow);
}
.btn-white:hover { background: var(--yellow); }
.btn-sm { padding: 9px 20px; font-size: 14px; }

/* ─── SECTION WRAPPER ─────────────────────── */
.section {  padding: 76px 28px; }
.section-white { background: var(--white); }
.section-bg    { background: var(--bg); }
.section-turquoise-pale { background: var(--turquoise-pale); }
.section-purple-pale    { background: var(--purple-pale); }
.section-pink-pale      { background: var(--pink-pale); }
.section-sapphire-pale  { background: var(--sapphire-pale); }
.section-gradient-soft  {
  background: linear-gradient(135deg, var(--turquoise-pale), var(--purple-pale));
}
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }

/* Section labels */
.label {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.label-purple   { background: var(--purple-pale);   color: var(--purple); }
.label-turquoise{ background: var(--turquoise-pale); color: var(--turquoise); }
.label-pink     { background: var(--pink-pale);      color: var(--pink); }
.label-sapphire { background: var(--sapphire-pale);  color: var(--sapphire); }

.section-title {
  font-size: clamp(26px, 3.8vw, 42px);
  color: var(--text);
  margin-bottom: 14px;
}
.section-title .accent { color: var(--purple); }
.section-desc {
  font-size: 17px;
  color: var(--text-med);
  max-width: 560px;
  margin-bottom: 52px;
}
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* ─── GRID SYSTEMS ────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr;       gap: 48px; align-items: center; }
.grid-2.reverse { direction: rtl; }
.grid-2.reverse > * { direction: ltr; }

/* ─── CARDS ────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.card-pad { padding: 32px 26px; }

.card-icon { font-size: 44px; margin-bottom: 16px; display: block; }
.card h3 {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 10px;
}
.card p { font-size: 15px; color: var(--text-med); line-height: 1.7; }

.card-top-t { border-top: 4px solid var(--turquoise); }
.card-top-p { border-top: 4px solid var(--purple); }
.card-top-pk{ border-top: 4px solid var(--pink); }
.card-top-s { border-top: 4px solid var(--sapphire); }
.card-top-y { border-top: 4px solid var(--yellow); }

/* ─── PARTY FEATURE CARD ─────────────────── */
.party-card { display: block; color: inherit; }
.party-card-banner {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 68px;
}
.party-card-body { padding: 22px 24px 28px; }
.party-card-body h3 { font-size: 21px; margin-bottom: 8px; }
.party-card-body p  { font-size: 14px; color: var(--text-med); margin-bottom: 14px; }
.party-card-body .read-more {
  font-size: 13px;
  font-weight: 800;
  color: var(--purple);
}

/* ─── TWO-COLUMN CONTENT ─────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, var(--turquoise-pale), var(--purple-pale));
  border-radius: var(--radius);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 36px;
}
.img-placeholder .ph-icon { font-size: 72px; opacity: .7; }
.img-placeholder .ph-text { font-size: 13px; color: var(--text-light); text-align: center; }

/* ─── CHECKLIST ───────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text-med);
}
.checklist li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: var(--turquoise);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  margin-top: 3px;
}
.checklist.purple li::before { background: var(--purple); }
.checklist.pink   li::before { background: var(--pink); }

/* ─── STEP LIST ──────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 24px; }
.step  { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  min-width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--purple), var(--sapphire));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka One', cursive;
  font-size: 20px;
  flex-shrink: 0;
}
.step-body h4 { font-size: 17px; color: var(--text); margin-bottom: 4px; font-family: 'Nunito', sans-serif; font-weight: 800; }
.step-body p  { font-size: 15px; color: var(--text-med); }

/* ─── TESTIMONIALS ───────────────────────── */
.testimonials-section {
  background: linear-gradient(135deg, var(--turquoise-pale), var(--purple-pale));
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--yellow); font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.quote { font-style: italic; font-size: 15px; color: var(--text-med); margin-bottom: 14px; line-height: 1.75; }
.author { font-weight: 800; font-size: 14px; color: var(--purple); }

/* ─── THEME CARDS ─────────────────────────── */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 14px;
}
.theme-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 14px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  cursor: default;
}
.theme-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.theme-emoji { font-size: 40px; display: block; margin-bottom: 10px; }
.theme-card p { font-weight: 700; font-size: 14px; color: var(--text); }

/* ─── PRICING CARDS ──────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .3s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  background: linear-gradient(140deg, var(--purple), var(--sapphire));
  color: var(--white);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.pricing-card .price {
  font-family: 'Fredoka One', cursive;
  font-size: 46px;
  color: var(--purple);
  margin: 14px 0 4px;
}
.pricing-card.featured .price { color: var(--yellow); }
.pricing-card .price-note { font-size: 13px; color: var(--text-light); margin-bottom: 18px; }
.pricing-card.featured .price-note { color: rgba(255,255,255,.7); }
.pricing-card h3 { font-size: 22px; margin-bottom: 6px; }
.pricing-card p  { font-size: 14px; color: var(--text-med); margin-bottom: 18px; }
.pricing-card.featured p { color: rgba(255,255,255,.85); }
.pricing-card .tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--text);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 10px;
}

/* ─── ADD-ONS TABLE ──────────────────────── */
.addons-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.addon-pill {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-med);
}

/* ─── INFO BOX ───────────────────────────── */
.info-box {
  background: var(--purple-pale);
  border-left: 4px solid var(--purple);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  font-size: 15px;
  color: var(--text-med);
  margin: 20px 0;
}
.info-box strong { color: var(--purple); }
.info-box.turquoise { background: var(--turquoise-pale); border-color: var(--turquoise); }
.info-box.turquoise strong { color: var(--turquoise); }

/* ─── CTA SECTION ────────────────────────── */
.cta-section {
  padding: 80px 28px;
  background: linear-gradient(135deg, var(--purple), var(--sapphire));
  text-align: center;
  color: var(--white);
}
.cta-section h2 { font-size: clamp(26px, 4vw, 42px); margin-bottom: 14px; }
.cta-section p  { font-size: 17px; opacity: .9; max-width: 480px; margin: 0 auto 34px; }
.cta-section.pink-cta { background: linear-gradient(135deg, var(--pink), var(--purple)); }

/* ─── FOOTER ─────────────────────────────── */
footer {
  background: #1A1A2E;
  color: var(--white);
  padding: 60px 28px 30px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand-name {
  font-family: 'Fredoka One', cursive;
  font-size: 26px;
  color: var(--turquoise);
  margin-bottom: 12px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.09);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  cursor: pointer;
  transition: background .2s;
}
.social-icon:hover { background: var(--turquoise); }
.footer-col h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 17px;
  color: var(--turquoise);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul li a:hover { color: var(--turquoise); }
.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.35); }

/* ─── PAGE HERO SMALL ─────────────────────── */
.page-hero {
  background: linear-gradient(140deg, var(--purple-pale), var(--pink-pale));
  padding: 56px 28px 48px;
  text-align: center;
}
.page-hero.turquoise { background: linear-gradient(140deg, var(--turquoise-pale), var(--sky-pale)); }
.page-hero.sapphire  { background: linear-gradient(140deg, var(--sapphire-pale), var(--purple-pale)); }
.page-hero.yellow    { background: linear-gradient(140deg, #FFFBDE, var(--turquoise-pale)); }
.page-hero h1 { font-size: clamp(30px, 5vw, 50px); color: var(--purple); margin-bottom: 12px; }
.page-hero p  { font-size: 17px; color: var(--text-med); max-width: 520px; margin: 0 auto; }

/* ─── CREDENTIAL ITEMS ────────────────────── */
.credential {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
}
.cred-icon { font-size: 26px; min-width: 36px; text-align: center; }
.cred-text h4 { font-size: 15px; font-family:'Nunito',sans-serif; font-weight: 800; color: var(--text); }
.cred-text p  { font-size: 13px; color: var(--text-light); }

/* ─── BANNER STRIP ───────────────────────── */
.banner-strip {
  background: linear-gradient(90deg, var(--pink), var(--purple));
  color: var(--white);
  padding: 14px 28px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.banner-strip a { color: var(--yellow); text-decoration: underline; }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1/-1; }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 24px 24px;
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
    border-top: 2px solid var(--purple-pale);
    gap: 4px;
    z-index: 999;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu li {
    list-style: none;
  }
  .nav-menu a {
    display: block;
    padding: 12px 8px;
    font-size: 16px;
    border-radius: 8px;
    transition: background .2s;
  }
  .nav-menu a:hover {
    background: var(--purple-pale);
  }
  .nav-menu .nav-cta {
    text-align: center;
    margin-top: 8px;
  }
  .navbar { position: relative; }
  .hamburger { display: block; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-2.reverse { direction: ltr; }
  .pricing-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 52px 20px; }
  .hero { padding: 56px 20px 52px; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .themes-grid { grid-template-columns: repeat(2,1fr); }
}

/* ─── REAL PHOTO IMAGES ─────────────────── */
.site-img {
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.site-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.site-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

/* ─── HERO SLIDESHOW ─────────────────────── */
.hero-slideshow {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
}
.hero-slideshow .slide.active { opacity: 1; z-index: 1; }
.hero-slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slideshow .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(62,201,194,0.65) 0%, rgba(155,114,207,0.7) 50%, rgba(232,122,181,0.6) 100%);
  z-index: 2;
}
.hero-slideshow .hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  text-align: center;
  padding: 60px 28px;
}
.hero-slideshow .hero-pill {
  display: inline-block;
  background: rgba(255,255,255,0.95);
  color: var(--purple);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  margin-bottom: 20px;
}
.hero-slideshow h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(34px, 5.5vw, 60px);
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,.15);
  line-height: 1.15;
}
.hero-slideshow h1 .accent-yellow { color: var(--yellow); }
.hero-slideshow .hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.95);
  max-width: 560px;
  margin: 0 auto 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,.1);
}
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid rgba(255,255,255,0.8);
  cursor: pointer;
  transition: background .3s;
}
.hero-dots .dot.active { background: #fff; }

/* ─── PHOTO GALLERY ─────────────────────── */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.photo-gallery .gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.photo-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.photo-gallery .gallery-item:hover img { transform: scale(1.05); }
.photo-gallery .gallery-item.span-2 { grid-column: span 2; }
.photo-gallery .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  padding: 28px 16px 14px;
  font-size: 13px;
  font-weight: 700;
}

/* ─── SLIDESHOW & GALLERY RESPONSIVE ────── */
@media (max-width: 768px) {
  .hero-slideshow { min-height: 420px; }
  .photo-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-gallery .gallery-item.span-2 { grid-column: span 1; }
}

/* ─── GALLERY MASONRY PAGE ─────────────── */
.gallery-masonry {
  columns: 4;
  column-gap: 16px;
}
.gallery-masonry-item {
  display: block;
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.gallery-masonry-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-masonry-item img {
  width: 100%;
  display: block;
  transition: transform .4s;
}
.gallery-masonry-item:hover img {
  transform: scale(1.04);
}
.gallery-masonry-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  padding: 32px 16px 14px;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-masonry-item:hover .gallery-masonry-caption {
  opacity: 1;
}

/* Gallery empty state */
.gallery-empty {
  padding: 80px 20px;
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: 0 8px 48px rgba(0,0,0,.4);
  object-fit: contain;
}
.lightbox-caption {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 700;
  margin-top: 16px;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  opacity: .7;
  transition: opacity .2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 42px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 10;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Gallery masonry responsive */
@media (max-width: 1024px) {
  .gallery-masonry { columns: 3; }
}
@media (max-width: 768px) {
  .gallery-masonry { columns: 2; column-gap: 10px; }
  .gallery-masonry-item { margin-bottom: 10px; }
  .lightbox-prev, .lightbox-next { width: 42px; height: 42px; font-size: 32px; }
}
@media (max-width: 480px) {
  .gallery-masonry { columns: 2; }
}

