/* ═══════════════════════════════════════════════════════
   BAWA EDUCATION CENTRE — Shared Design System
   Brand: #101C35 (Navy) · #DEA933 (Gold)
═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

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

:root {
  --navy:       #101C35;
  --navy-mid:   #1a2d52;
  --navy-lt:    #243d70;
  --navy-pale:  rgba(16,28,53,.06);
  --gold:       #DEA933;
  --gold-dk:    #B8891F;
  --gold-lt:    #F0C84A;
  --gold-pale:  rgba(222,169,51,.12);
  --gold-glow:  rgba(222,169,51,.25);
  --cream:      #FDF8F0;
  --cream-dk:   #F0E8D5;
  --white:      #ffffff;
  --ink:        #0a0f1e;
  --ink-mid:    #1e2540;
  --muted:      #64748b;
  --muted-lt:   #94a3b8;
  --red:        #e53e3e;
  --display:    'Bebas Neue', 'Fraunces', sans-serif;
  --serif:      'Fraunces', Georgia, serif;
  --script:     'Caveat', cursive;
  --sans:       'Plus Jakarta Sans', system-ui, sans-serif;
  --nav-h:      72px;
  --r:          10px;
  --shadow-sm:  0 2px 8px rgba(16,28,53,.08);
  --shadow-md:  0 8px 32px rgba(16,28,53,.12);
  --shadow-lg:  0 20px 60px rgba(16,28,53,.18);
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }

/* ─── LAYOUT ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 5%; }
.section-pad { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }

/* ─── TYPOGRAPHY ─── */
.eyebrow {
  font-family: var(--script);
  font-size: 1.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}
.eyebrow-sm {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .8rem;
}
.eyebrow-sm::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.h1 { font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; line-height: 1.03; }
.h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; line-height: 1.08; }
.h3 { font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; line-height: 1.2; }
.h4 { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; }
.text-gold { color: var(--gold); }
.text-gold-dk { color: var(--gold-dk); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }
.italic-accent { font-style: italic; color: var(--gold); }
.body-lg { font-size: 1.05rem; line-height: 1.82; color: var(--muted); }
.body-md { font-size: .95rem; line-height: 1.78; color: var(--muted); }
.body-sm { font-size: .85rem; line-height: 1.72; color: var(--muted); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  letter-spacing: .03em;
  cursor: pointer;
  border: none;
  transition: transform .18s, box-shadow .18s, background .18s, opacity .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold    { background: var(--gold);    color: var(--navy); font-weight: 800; }
.btn-gold:hover { background: var(--gold-lt); }
.btn-navy    { background: var(--navy);    color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-outline-w { background: transparent; border: 2px solid rgba(255,255,255,.4); color: var(--white); }
.btn-outline-w:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-sm { padding: .6rem 1.4rem; font-size: .8rem; }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 1rem; }

/* ─── NAV ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  transition: background .3s, box-shadow .3s;
}
#navbar.scrolled, #navbar.solid {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -.01em;
  flex-shrink: 0;
}
.nav-logo .dot { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0 auto;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.nav-right { display: flex; gap: .8rem; align-items: center; flex-shrink: 0; }
.nav-wa {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
  text-decoration: none;
}
.nav-wa:hover { transform: scale(1.1); }
.nav-wa svg { width: 18px; height: 18px; fill: white; }
.nav-donate {
  background: var(--gold);
  color: var(--navy);
  padding: .52rem 1.3rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
}
.nav-donate:hover { background: var(--gold-lt); transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; }

/* ─── HERO ─── */
/* ─── HERO — full-bleed photo background ─── */
.hero {
  min-height: 100vh;
  background-color: var(--navy);
  background-image: url('hero-classroom.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  display: flex; align-items: flex-end;
  position: relative;
  overflow: hidden;
}
/* Gradient overlay: opaque navy on left for text, subtle on right so photo shows */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    108deg,
    rgba(16,28,53,.96) 0%,
    rgba(16,28,53,.88) 38%,
    rgba(16,28,53,.55) 62%,
    rgba(16,28,53,.28) 100%
  );
}
/* Gold vignette accent bottom-left */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  height: 220px;
  background: linear-gradient(to top, rgba(16,28,53,.85), transparent);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding: calc(var(--nav-h) + 4rem) 5% 8%;
  max-width: 720px;
}
/* Bebas Neue display heading — used in hero */
.hero-display {
  font-family: var(--display);
  font-size: clamp(4.2rem, 10vw, 8.5rem);
  font-weight: 400;          /* Bebas Neue has weight baked in */
  line-height: .92;
  letter-spacing: .025em;
  color: var(--white);
  text-transform: uppercase;
  display: block;
}
.hero-display.gold { color: var(--gold); }
.hero-display.outline {
  -webkit-text-stroke: 2px var(--gold);
  color: transparent;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold-pale);
  border: 1px solid var(--gold-glow);
  color: var(--gold);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,.35); font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  text-decoration: none; transition: color .2s;
}
.hero-scroll:hover { color: rgba(255,255,255,.7); }
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(222,169,51,.6), transparent);
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob { 0%,100%{opacity:.4;transform:scaleY(1)} 50%{opacity:.9;transform:scaleY(1.1)} }

/* ─── PAGE HERO heading — Bebas Neue ─── */
.page-hero-display {
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 400;
  line-height: .92;
  letter-spacing: .025em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.page-hero-display .gold { color: var(--gold); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 4rem) 5% 5rem;
  position: relative; overflow: hidden;
}
.page-hero-art {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(222,169,51,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(222,169,51,.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero-glow {
  position: absolute; top: -20%; right: -5%;
  width: 45%; height: 100%;
  background: radial-gradient(ellipse, rgba(222,169,51,.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; max-width: 720px; }
.page-hero-content p { color: rgba(255,255,255,.65); font-size: 1.05rem; line-height: 1.8; margin-top: 1.2rem; max-width: 560px; }

/* ─── MARQUEE ─── */
.marquee-bar { background: var(--gold); padding: .85rem 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-block; animation: marqueeScroll 30s linear infinite; }
.marquee-track span {
  font-family: var(--serif); font-weight: 700; font-size: .95rem;
  color: var(--navy); padding: 0 2.2rem;
}
.marquee-track span::after { content: '✦'; margin-left: 2.2rem; opacity: .4; }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── STATS BAR ─── */
.stats-bar { background: var(--navy); }
.stats-bar .container { display: flex; }
.stat-block {
  flex: 1; padding: 2.5rem 1.5rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.stat-block:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif); font-size: 3rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: .5rem;
}
.stat-sub { font-size: .78rem; color: rgba(255,255,255,.25); margin-top: .2rem; }

/* ─── SECTION DIVIDER ─── */
.divider { border: none; border-top: 1px solid var(--cream-dk); margin: 0; }
.divider-navy { border-top-color: rgba(255,255,255,.08); }

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

/* ─── KID CARDS ─── */
.kids-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.kid-card { background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s; }
.kid-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.kid-photo { height: 220px; position: relative; }
.kid-photo-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: .7rem; color: rgba(255,255,255,.25); font-style: italic; text-align: center; padding: 1rem; }
.kp-a { background: linear-gradient(145deg, #DEA933 0%, #101C35 100%); }
.kp-b { background: linear-gradient(145deg, #1a4a6b 0%, #101C35 100%); }
.kp-c { background: linear-gradient(145deg, #3d6b1a 0%, #101C35 100%); }
.kp-d { background: linear-gradient(145deg, #6b1a3d 0%, #101C35 100%); }
.kp-e { background: linear-gradient(145deg, #DEA933 0%, #1a3a1a 100%); }
.kp-f { background: linear-gradient(145deg, #1a3d6b 0%, #DEA933 100%); }
.kp-g { background: linear-gradient(145deg, #6b3d1a 0%, #101C35 100%); }
.kp-h { background: linear-gradient(145deg, #1a6b5c 0%, #101C35 100%); }
.kp-i { background: linear-gradient(145deg, #3d1a6b 0%, #DEA933 100%); }
.kp-j { background: linear-gradient(145deg, #6b1a1a 0%, #101C35 100%); }
.kp-k { background: linear-gradient(145deg, #1a5c6b 0%, #DEA933 100%); }
.kp-l { background: linear-gradient(145deg, #2a6b1a 0%, #101C35 100%); }
.kid-tag {
  position: absolute; font-size: .68rem; font-weight: 700; padding: .3rem .75rem;
  border-radius: 999px; backdrop-filter: blur(6px); letter-spacing: .04em;
}
.kid-tag-age { top: .9rem; left: .9rem; background: rgba(16,28,53,.6); color: var(--white); }
.kid-tag-dream { top: .9rem; right: .9rem; background: var(--gold); color: var(--navy); }
.kid-body { padding: 1.3rem 1.4rem 1.6rem; }
.kid-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.kid-grade { font-size: .73rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-dk); margin: .2rem 0 .65rem; }
.kid-quote { font-size: .85rem; color: var(--ink-mid); font-style: italic; line-height: 1.6; border-left: 3px solid var(--gold); padding-left: .75rem; margin-bottom: 1rem; }
.kid-btn-sponsor {
  display: block; text-align: center; padding: .65rem 1rem;
  border-radius: 8px; background: var(--navy); color: var(--white);
  font-weight: 700; font-size: .8rem; text-decoration: none;
  transition: background .2s, transform .15s; letter-spacing: .02em;
}
.kid-btn-sponsor:hover { background: var(--navy-mid); transform: scale(1.02); }

/* ─── TEAM CARDS ─── */
.team-card { background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo { position: relative; height: 260px; overflow: hidden; }
.team-photo-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: .7rem; color: rgba(255,255,255,.25); font-style: italic; text-align: center; padding: 2rem; }
.tp-1 { background: linear-gradient(145deg, #DEA933 0%, #101C35 100%); }
.tp-2 { background: linear-gradient(145deg, #1a4a6b 0%, #101C35 100%); }
.tp-3 { background: linear-gradient(145deg, #2d1a6b 0%, #101C35 100%); }
.tp-4 { background: linear-gradient(145deg, #1a6b3d 0%, #101C35 100%); }
.tp-5 { background: linear-gradient(145deg, #6b1a2d 0%, #101C35 100%); }
.tp-6 { background: linear-gradient(145deg, #3d6b1a 0%, #101C35 100%); }
.team-gold-bar { height: 3px; background: var(--gold); }
.team-body { padding: 1.5rem; }
.team-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.team-role { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dk); margin: .3rem 0 .7rem; }
.team-bio { font-size: .85rem; color: var(--muted); line-height: 1.7; }

/* ─── INVOLVED CARDS ─── */
.inv-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.inv-card { border-radius: 14px; padding: 2rem 1.5rem; text-align: center; border: 1px solid rgba(222,169,51,.2); background: rgba(222,169,51,.06); transition: transform .2s, background .2s; }
.inv-card:hover { transform: translateY(-4px); background: rgba(222,169,51,.12); }
.inv-icon { font-size: 2.2rem; margin-bottom: .9rem; }
.inv-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.inv-desc { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 1.2rem; }

/* ─── FORMS ─── */
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mid); margin-bottom: .4rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .8rem 1rem; border-radius: 8px;
  border: 2px solid var(--cream-dk); background: var(--cream);
  font-family: var(--sans); font-size: .92rem; color: var(--ink);
  transition: border-color .2s; outline: none; resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 1rem; border-radius: 999px;
  background: var(--navy); color: var(--white);
  font-family: var(--sans); font-weight: 800; font-size: .95rem;
  border: none; cursor: pointer; letter-spacing: .04em;
  transition: background .2s, transform .15s;
}
.form-submit:hover { background: var(--navy-mid); transform: translateY(-2px); }
.form-submit.gold { background: var(--gold); color: var(--navy); }
.form-submit.gold:hover { background: var(--gold-lt); }
.form-note { font-size: .78rem; color: var(--muted); margin-top: .6rem; text-align: center; }

/* ─── PARTNER LOGOS ─── */
.partner-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.partner-tile {
  border: 1.5px solid var(--cream-dk); border-radius: 10px;
  padding: 1.4rem 1rem; min-height: 80px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); transition: border-color .2s, box-shadow .2s;
}
.partner-tile:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.partner-tile span { font-family: var(--serif); font-weight: 700; font-size: .9rem; color: var(--muted); text-align: center; line-height: 1.4; }

/* ─── REPORT DOWNLOADS ─── */
.report-btn {
  display: flex; align-items: center; gap: .9rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  color: var(--white); padding: 1.1rem 1.8rem; border-radius: 12px;
  text-decoration: none; font-weight: 600; font-size: .88rem;
  transition: background .2s, transform .2s;
}
.report-btn:hover { background: rgba(222,169,51,.15); border-color: var(--gold); transform: translateY(-2px); }
.report-btn svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }
.report-btn-term { font-size: .7rem; color: rgba(255,255,255,.45); display: block; margin-top: .1rem; }

/* ─── CONTACT INFO ─── */
.ci-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.ci-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gold-pale); border: 1px solid var(--gold-glow); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.ci-title { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: .2rem; }
.ci-val { font-size: .9rem; color: var(--muted); line-height: 1.65; }
.map-wrap { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { width: 100%; border: none; display: block; }

/* ─── SOCIAL LINKS ─── */
.soc-row { display: flex; gap: .7rem; flex-wrap: wrap; }
.soc-btn { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: .82rem; font-weight: 700; transition: transform .2s, background .2s; }
.soc-btn:hover { transform: scale(1.1); }
.soc-fb  { background: #1877f2; color: white; }
.soc-ig  { background: #e1306c; color: white; }
.soc-yt  { background: #ff0000; color: white; }
.soc-wa  { background: #25d366; color: white; }

/* ─── FAQ ACCORDION ─── */
.faq-item { border-bottom: 1px solid var(--cream-dk); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.2rem 0; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; font-family: var(--sans); font-weight: 700;
  font-size: .95rem; color: var(--ink); transition: color .2s;
}
.faq-q:hover { color: var(--navy); }
.faq-q .faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--gold-pale); border: 1px solid var(--gold-glow); display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; transition: transform .25s, background .2s; }
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); background: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; }
.faq-a p { font-size: .9rem; color: var(--muted); line-height: 1.8; padding-bottom: 1.2rem; }
.faq-item.open .faq-a { max-height: 300px; }

/* ─── VIDEO MODAL ─── */
#video-modal { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,.82); backdrop-filter: blur(8px); }
#video-modal.open { display: flex; }
.modal-box { background: var(--navy); border-radius: 16px; padding: 1.5rem; max-width: 840px; width: 92%; position: relative; border: 1px solid rgba(222,169,51,.2); }
.modal-close-btn { position: absolute; top: .8rem; right: .8rem; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1); border: none; color: white; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.modal-close-btn:hover { background: var(--gold); color: var(--navy); }
.modal-video { border-radius: 10px; overflow: hidden; aspect-ratio: 16/9; background: #000; display: flex; align-items: center; justify-content: center; }
.modal-video-ph { color: rgba(255,255,255,.35); font-size: .88rem; text-align: center; padding: 2rem; font-style: italic; line-height: 1.7; }

/* ─── FLOATING WA ─── */
#wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .2s; text-decoration: none;
}
#wa-float:hover { transform: scale(1.1); }
#wa-float svg { width: 26px; height: 26px; fill: white; }
.wa-ring { position: absolute; inset: -5px; border-radius: 50%; border: 2px solid rgba(37,211,102,.35); animation: waPulse 2.5s ease-in-out infinite; }
@keyframes waPulse { 0%{transform:scale(1);opacity:1} 100%{transform:scale(1.5);opacity:0} }

/* ─── FOOTER ─── */
footer { background: var(--ink); }
.footer-main { padding: 4.5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand .nav-logo { font-size: 1.7rem; display: block; margin-bottom: .9rem; }
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.38); line-height: 1.75; max-width: 250px; }
.footer-col h5 { font-size: .68rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col a, .footer-col p {
  display: block; font-size: .83rem; color: rgba(255,255,255,.42);
  text-decoration: none; margin-bottom: .45rem; transition: color .2s; line-height: 1.6;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .8rem; }
.footer-bottom p, .footer-bottom a { font-size: .76rem; color: rgba(255,255,255,.28); }
.footer-bottom a { text-decoration: none; transition: color .2s; margin-left: 1.2rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ─── SCROLL ANIMATIONS ─── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.in { opacity: 1; transform: none; }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s} .d5{transition-delay:.5s}

/* ════════════════════════════════════════
   HAMBURGER MENU
════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  background: none; border: none; cursor: pointer; padding: 0;
  flex-shrink: 0; margin-left: .5rem;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
/* X state */
#navbar.menu-open .nav-hamburger span:nth-child(1){ transform: translateY(9px) rotate(45deg); }
#navbar.menu-open .nav-hamburger span:nth-child(2){ opacity: 0; transform: scaleX(0); }
#navbar.menu-open .nav-hamburger span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }

/* Mobile menu drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(222,169,51,.18);
  padding: 1.8rem 5% 2.5rem;
  z-index: 990;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  flex-direction: column;
  gap: 0;
}
#navbar.menu-open .nav-drawer { display: flex; }
.nav-drawer a {
  display: block; color: rgba(255,255,255,.82); text-decoration: none;
  font-size: 1rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s;
}
.nav-drawer a:hover, .nav-drawer a.active { color: var(--gold); }
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer-cta {
  margin-top: 1.5rem; display: flex; gap: .8rem; flex-wrap: wrap;
}
.nav-drawer-cta a {
  border: none; padding: .75rem 1.5rem; border-radius: 999px;
  font-size: .85rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  text-decoration: none; transition: background .2s;
}
.nav-drawer-cta .dc-primary { background: var(--gold); color: var(--navy); }
.nav-drawer-cta .dc-primary:hover { background: var(--gold-lt); }
.nav-drawer-cta .dc-wa { background: #25d366; color: white; }

/* ════════════════════════════════════════
   RESPONSIVE — 1200px (wide containers)
════════════════════════════════════════ */
@media(max-width:1200px) {
  .kids-grid { grid-template-columns: repeat(3,1fr); }
}

/* ════════════════════════════════════════
   RESPONSIVE — 1024px (tablets landscape)
════════════════════════════════════════ */
@media(max-width:1024px) {
  .kids-grid        { grid-template-columns: repeat(2,1fr); }
  .inv-grid         { grid-template-columns: repeat(2,1fr); }
  .partner-grid     { grid-template-columns: repeat(3,1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stat-block       { padding: 2rem .8rem; }
  .stat-num         { font-size: 2.2rem; }
  .section-pad      { padding: 5rem 0; }
  /* 2-col inline grids → stack at tablet */
  div[style*="grid-template-columns:repeat(4"] { grid-template-columns: repeat(2,1fr) !important; }
}

/* ════════════════════════════════════════
   RESPONSIVE — 768px (tablets portrait / large phones)
════════════════════════════════════════ */
@media(max-width:768px) {
  /* Nav */
  .nav-links       { display: none; }
  .nav-hamburger   { display: flex; }
  .nav-donate      { display: none; } /* shown in drawer instead */

  /* Hero */
  .hero            { background-position: 70% center; min-height: 100svh; }
  .hero-content    { padding: calc(var(--nav-h) + 2.5rem) 5% 6rem; max-width: 100%; }
  .hero-display    { font-size: clamp(3.2rem, 11vw, 5.5rem); }
  .hero::before    { background: linear-gradient(to bottom, rgba(16,28,53,.9) 0%, rgba(16,28,53,.75) 100%); }

  /* Page heroes */
  .page-hero       { padding: calc(var(--nav-h) + 2.5rem) 5% 3.5rem; }
  .page-hero-display { font-size: clamp(2.4rem, 9vw, 4rem); }

  /* Section padding */
  .section-pad     { padding: 4rem 0; }
  .section-pad-sm  { padding: 2.5rem 0; }

  /* Stats */
  .stats-bar .container { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-block      { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-block:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .stat-block:last-child, .stat-block:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  /* ALL inline 2-col grids → single column */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"]         { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:1fr 1."],
  div[style*="grid-template-columns:1."][style*="1fr"]  { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:2fr"]              { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:1fr 1.2fr"]        { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:1.2fr 1fr"]        { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:1fr 1.1fr"]        { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:1.1fr 1fr"]        { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:1fr 1.3fr"]        { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:1.3fr 1fr"]        { grid-template-columns: 1fr !important; }

  /* All 3-col inline grids → 2 columns */
  div[style*="grid-template-columns:repeat(3,1fr)"]    { grid-template-columns: repeat(2,1fr) !important; }
  div[style*="grid-template-columns:repeat(3, 1fr)"]   { grid-template-columns: repeat(2,1fr) !important; }

  /* Inline gap reductions */
  div[style*="gap:5rem"]   { gap: 2.5rem !important; }
  div[style*="gap:4rem"]   { gap: 2rem   !important; }
  div[style*="gap:3rem"]   { gap: 1.5rem !important; }

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

  /* Cards */
  .kids-grid        { grid-template-columns: repeat(2,1fr); }
  .team-grid        { grid-template-columns: repeat(2,1fr); }
  .inv-grid         { grid-template-columns: repeat(2,1fr); }

  /* Footer */
  .footer-grid      { grid-template-columns: 1fr; }
  .partner-grid     { grid-template-columns: repeat(2,1fr); }
  .footer-main      { padding: 3rem 0 2rem; }

  /* Report section */
  .report-inner     { flex-direction: column; align-items: flex-start; }

  /* Control bar (children page) */
  .control-bar .container { gap: .6rem; }
  .search-wrap      { flex: 1 0 100%; }
  .filter-divider   { display: none; }
  .filter-pills     { order: 3; }
  #count-label      { order: 2; margin-left: 0; }
}

/* ════════════════════════════════════════
   RESPONSIVE — 640px
════════════════════════════════════════ */
@media(max-width:640px) {
  div[style*="grid-template-columns:repeat(3,1fr)"]    { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:repeat(3, 1fr)"]   { grid-template-columns: 1fr !important; }
  .team-grid        { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   RESPONSIVE — 480px (small phones)
════════════════════════════════════════ */
@media(max-width:480px) {
  .kids-grid        { grid-template-columns: 1fr; }
  .inv-grid         { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: 1fr; }
  .stat-block       { border-right: none !important; }
  .section-pad      { padding: 3rem 0; }
  .section-pad-sm   { padding: 2rem 0; }
  .partner-grid     { grid-template-columns: 1fr; }
  .hero-display     { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .page-hero-display{ font-size: clamp(2rem, 10vw, 3rem); }
  div[style*="grid-template-columns:repeat(4"] { grid-template-columns: 1fr !important; }
  /* Reduce inline padding */
  div[style*="padding:2.5rem"] { padding: 1.5rem !important; }
  .btn-lg           { padding: .85rem 1.6rem; font-size: .88rem; }
}

/* ════════════════════════════════════════
   RESPONSIVE — 380px (very small phones)
════════════════════════════════════════ */
@media(max-width:380px) {
  .nav-logo         { font-size: 1.3rem; }
  .hero-display     { font-size: clamp(2.4rem, 13vw, 3.5rem); }
  .h2               { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .hero-btns        { flex-direction: column; }
  .hero-btns .btn   { width: 100%; text-align: center; }
}

/* ════════════════════════════════════════
   GALLERY
════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: .5rem;
  border-radius: 12px;
  overflow: hidden;
}
.g-item {
  position: relative; overflow: hidden;
  background: var(--navy-mid); cursor: pointer;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16,28,53,.75) 0%, rgba(16,28,53,.2) 60%, transparent 100%);
  display: flex; align-items: flex-end; padding: 1rem;
  opacity: 0; transition: opacity .3s;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay-icon { color: white; display: flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.g-overlay-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.g-wide  { grid-column: span 2; }
.g-tall  { grid-row: span 2; }
.g-ph    { background: var(--navy-lt); display: flex; align-items: center; justify-content: center; }
.g-ph span { font-size: .72rem; color: rgba(255,255,255,.25); font-style: italic; text-align: center; padding: 1rem; }
.g-gold  { background: linear-gradient(135deg, var(--gold-dk), var(--gold)); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--navy); text-align: center; padding: 1.5rem; line-height: 1.3; }
.g-navy  { background: linear-gradient(135deg, var(--navy-mid), var(--navy)); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,.6); text-align: center; padding: 1.5rem; line-height: 1.5; }

/* ─── SOCIAL FOLLOW BAR ─── */
.soc-follow-bar { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }
.sfb {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .85rem 1.8rem; border-radius: 999px;
  font-family: var(--sans); font-weight: 700; font-size: .88rem;
  text-decoration: none; letter-spacing: .02em;
  transition: transform .2s, box-shadow .2s;
}
.sfb:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.3); }
.sfb svg { width: 18px; height: 18px; flex-shrink: 0; fill: currentColor; }
.sfb-ig { background: linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); color: white; }
.sfb-fb { background: #1877f2; color: white; }
.sfb-tt { background: #010101; color: white; border: 1px solid rgba(255,255,255,.12); }

/* ─── FOOTER SOCIAL ─── */
.footer-social { display: flex; gap: .55rem; margin-top: 1.1rem; }
.fs-btn {
  width: 34px; height: 34px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform .2s, opacity .2s;
}
.fs-btn:hover { transform: translateY(-2px); }
.fs-btn svg { width: 16px; height: 16px; fill: currentColor; }
.fs-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; }
.fs-fb { background: #1877f2; color: white; }
.fs-tt { background: #111; color: white; }
.fs-wa { background: #25d366; color: white; }

/* Gallery responsive */
@media(max-width:900px){
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 200px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
}
@media(max-width:480px){
  .gallery-grid { grid-auto-rows: 160px; }
  .g-wide { grid-column: span 2; }
}

/* ════════════════════════════════════════
   CUSTOM CURSOR
════════════════════════════════════════ */
html.custom-cursor,
html.custom-cursor * { cursor: none !important; }

.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%,-50%);
  transition: transform .15s ease, background .2s, opacity .2s;
  will-change: left, top;
}
.cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 2px solid rgba(222,169,51,.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%,-50%);
  transition: width .25s ease, height .25s ease, border-color .25s, background .25s, opacity .2s;
  will-change: left, top;
}
/* hover state */
.cursor-dot.c-hover  { transform: translate(-50%,-50%) scale(0); background: var(--gold); }
.cursor-ring.c-hover { width: 56px; height: 56px; border-color: var(--gold); background: rgba(222,169,51,.07); }
/* click state */
.cursor-dot.c-click  { transform: translate(-50%,-50%) scale(2.5); opacity: .6; }
.cursor-ring.c-click { width: 24px; height: 24px; border-color: var(--gold-lt); }
/* hide on touch */
@media(hover:none){ .cursor-dot,.cursor-ring{ display:none !important; } }

/* ════════════════════════════════════════
   NAV LOGO with image
════════════════════════════════════════ */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 44px; height: 44px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.nav-logo:hover .nav-logo-img { transform: rotate(8deg) scale(1.05); }
.nav-logo-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: .01em;
}
.nav-logo-text small {
  display: block;
  font-family: var(--sans);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .85;
}
@media(max-width:480px){
  .nav-logo-text { display: none; }
  .nav-logo-img  { width: 40px; height: 40px; }
}

/* ════════════════════════════════════════
   PAGE LOAD TRANSITION
════════════════════════════════════════ */
body { opacity: 0; transition: opacity .4s ease; }
body.page-loaded { opacity: 1; }

/* ════════════════════════════════════════
   SMOOTH GLOBAL TRANSITIONS
════════════════════════════════════════ */
a, button { transition: color .2s, background .2s, border-color .2s, transform .18s, box-shadow .18s, opacity .2s; }
img { transition: transform .4s ease; }
.card, .kid-card, .team-card, .why-card, .role-card, .inv-card, .partner-tile {
  transition: transform .22s ease, box-shadow .22s ease;
}

/* ════════════════════════════════════════
   BUTTON RIPPLE
════════════════════════════════════════ */
.btn { position: relative; overflow: hidden; }
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  transform: scale(0);
  animation: rippleAnim .65s linear forwards;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(1); opacity: 0; } }

/* ════════════════════════════════════════
   YOUTUBE MODAL — ENHANCED
════════════════════════════════════════ */
#video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex !important;           /* always flex — controlled by opacity */
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, backdrop-filter .35s;
  padding: 1rem;
}
#video-modal.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  width: min(1080px, 96vw);
  background: var(--navy);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(222,169,51,.25);
  position: relative;
  transform: scale(.88) translateY(32px);
  transition: transform .45s cubic-bezier(.34,1.2,.64,1);
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
}
#video-modal.open .modal-box {
  transform: scale(1) translateY(0);
}
.modal-close-btn {
  position: absolute;
  top: -16px; right: -16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.modal-close-btn:hover { background: var(--gold-lt); transform: scale(1.1) rotate(90deg); }
.modal-video-wrap {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}
/* YouTube API div becomes iframe — must fill wrapper */
.modal-video-wrap > div,
.modal-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: block;
}
.modal-caption {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1rem;
  padding: .8rem 1rem;
  background: rgba(222,169,51,.07);
  border-radius: 8px;
  border: 1px solid rgba(222,169,51,.15);
}
.modal-caption span { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.5; }
.modal-caption strong { color: var(--gold); display: block; margin-bottom: .1rem; }

/* ════════════════════════════════════════
   LINK HOVER UNDERLINE ANIMATION
════════════════════════════════════════ */
.footer-col a {
  position: relative;
  display: inline-block;
}
.footer-col a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}
.footer-col a:hover::after { width: 100%; }

/* ════════════════════════════════════════
   REPORT DOWNLOAD BUTTON ENHANCEMENTS
════════════════════════════════════════ */
.report-btn {
  position: relative;
  overflow: hidden;
}
.report-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(222,169,51,.06);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.report-btn:hover::before { transform: scaleX(1); }
.report-btn .dl-badge {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: .2rem .55rem;
  border-radius: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   MOBILE MENU — IMPROVED
════════════════════════════════════════ */
.nav-drawer {
  /* always present in DOM, shown via flex on menu-open */
}
#navbar.menu-open ~ .nav-drawer,
.nav-drawer { }
/* Drawer links stagger animation */
#navbar.menu-open .nav-drawer a {
  animation: drawerSlide .3s ease both;
}
#navbar.menu-open .nav-drawer a:nth-child(1){ animation-delay:.05s }
#navbar.menu-open .nav-drawer a:nth-child(2){ animation-delay:.10s }
#navbar.menu-open .nav-drawer a:nth-child(3){ animation-delay:.15s }
#navbar.menu-open .nav-drawer a:nth-child(4){ animation-delay:.20s }
#navbar.menu-open .nav-drawer a:nth-child(5){ animation-delay:.25s }
@keyframes drawerSlide {
  from { opacity:0; transform: translateX(-16px); }
  to   { opacity:1; transform: translateX(0); }
}

/* ════════════════════════════════════════
   GIVEBUTTER WIDGET INTEGRATION
════════════════════════════════════════ */

/* Allow Givebutter widgets to grow to their natural height */
givebutter-widget {
  display: block;
  width: 100%;
  min-height: 200px;
}

/* Wrapper for inline form widgets — no fixed height */
.gb-form-wrap {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
}

/* Floating donate button — hide the WA float on pages
   where Givebutter's own floating button is active
   (Givebutter button appears bottom-right by default;
   move WA float to bottom-left on those pages) */
body.gb-float-active #wa-float {
  right: auto;
  left: 2rem;
}

/* Goal bar widget container */
.gb-goal-wrap {
  border-radius: 8px;
  overflow: hidden;
}

/* On mobile — full width widgets */
@media(max-width:768px) {
  givebutter-widget { min-height: 160px; }
}
