/* ═══════════════════════════════════════
   DRAMA BOOSTER CLUB — STYLESHEET
   Palette: Velvet Burgundy × Warm Gold × Parchment
   ═══════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --burgundy:    #6B1E3A;  
  --ahs-blue:    #123283;  
  --burgundy-dk: #4A1228;
  --ahs-navy-blue: #091837;
  --gold:        #E8A020;
  --ahs-gold:    #f3be59;
  --gold-lt:     #F5C355;
  --parchment:   #FBF7F0;
  --lavender:    #EDE8F5;
  --ahs-blue-lt: #d7e6ff;
  --charcoal:    #1C1C2E;
  --mid:         #5A5470;
  --white:       #FFFFFF;
  --shadow:      rgba(28, 28, 46, 0.12);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;

  --max-w: 1100px;
  --nav-h: 68px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--parchment);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION SHARED ── */
section {
  padding: 96px 0;
}
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.light { color: var(--gold-lt); }
h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.section-intro {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 620px;
  margin-bottom: 48px;
}
.section-intro.light { color: rgba(255,255,255,0.8); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  /* background: var(--burgundy); */
  background: var(--ahs-blue);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--ahs-navy-blue); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-gold {
  display: inline-block;
  background: var(--ahs-gold);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-link {
  color: var(--ahs-blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* ═══════════════════════════════════════
   NAV
   ═══════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251, 247, 240, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107, 30, 58, 0.1);
  height: var(--nav-h);
  transition: box-shadow 0.2s;
}
#navbar.scrolled { box-shadow: 0 2px 20px var(--shadow); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ahs-blue);
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--charcoal);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--ahs-gold);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--ahs-blue); }
.nav-links a:hover::after { width: 100%; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ahs-blue);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ahs-navy-blue);
  overflow: hidden;
  padding: 0;
}

/* Spotlight radial */
.spotlight {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center,
    rgba(232, 160, 32, 0.22) 0%,
    rgba(232, 160, 32, 0.06) 45%,
    transparent 70%);
  pointer-events: none;
}

/* Curtains */
.curtain-left,
.curtain-right {
  position: absolute;
  top: 0;
  width: 14vw;
  height: 100%;
  background: linear-gradient(to bottom,
    #8B2043 0%, #6B1E3A 40%, #3D0F20 100%);
  z-index: 1;
}
.curtain-left  { left: 0; border-radius: 0 0 60% 0; }
.curtain-right { right: 0; border-radius: 0 0 0 60%; }
.curtain-left::after,
.curtain-right::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40%;
  background: rgba(0,0,0,0.15);
}
.curtain-left::after  { right: 0; }
.curtain-right::after { left: 0; }

/* Marquee lights */
.marquee-lights { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.lights-row {
  position: absolute;
  left: 14vw; right: 14vw;
  display: flex;
  justify-content: space-between;
}
.lights-row.top    { top: 24px; }
.lights-row.bottom { bottom: 24px; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 780px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ahs-gold);
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 28px;
}
.hero-line-1 {
  display: block;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-style: italic;
  font-weight: 400;
}
.hero-line-2 {
  display: block;
  font-size: clamp(3.2rem, 7.5vw, 6rem);
  font-weight: 900;
  color: var(--ahs-gold);
  text-shadow: 0 0 40px rgba(232, 160, 32, 0.4);
  letter-spacing: -0.02em;
}
.hero-line-3 {
  display: block;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-style: italic;
  font-weight: 400;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
#about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text p {
  color: var(--mid);
  margin-bottom: 16px;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat {
  background: var(--parchment);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--ahs-blue);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--mid);
  font-weight: 500;
}

/* ═══════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════ */
#gallery {
  background: var(--parchment);
  padding-bottom: 32px;
}
#gallery .container { margin-bottom: 40px; }
.gallery-scroll {
  overflow-x: auto;
  padding: 8px 24px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--ahs-blue) transparent;
}
.gallery-scroll::-webkit-scrollbar { height: 6px; }
.gallery-scroll::-webkit-scrollbar-track { background: transparent; }
.gallery-scroll::-webkit-scrollbar-thumb {
  background: var(--ahs-blue);
  border-radius: 3px;
}
.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
}
.gallery-card {
  width: 380px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.25s;
  cursor: pointer;
  background: var(--charcoal);
}
.gallery-card:hover { transform: translateY(-6px); }
.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.25s;
}
.gallery-card:hover img { opacity: 1; }
.gallery-card figcaption {
  padding: 14px 18px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  background: var(--charcoal);
}
.gallery-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--mid);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════
   BOARD
   ═══════════════════════════════════════ */
#board { background: var(--ahs-blue-lt); }
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
  margin-bottom: 72px;
}
.board-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 0 0 24px;
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.board-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px var(--shadow); }
.board-photo-wrap {
  position: relative;
  overflow: hidden;
}
.board-photo-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.board-badge {
  position: absolute;
  bottom: 10px; left: 10px;
  background: var(--ahs-blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.board-badge.vp         { background: var(--ahs-gold) }
.board-badge.treasurer  { background: #1D5F5A; }
.board-badge.secretary  { background: #8B2043; }
.board-badge.fundraising{ background: #6B3A0F; }
.board-badge.sponsorshipchair    { background: var(--mid); }
.board-badge.consessionscoordinator    { background: var(--mid); }
.board-badge.hospitalitycoordinator    { background: var(--mid); }
.board-badge.volunteercoordinator    { background: var(--mid); }
.board-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  padding: 20px 20px 6px;
}
.board-card p {
  font-size: 0.88rem;
  color: var(--mid);
  padding: 0 20px;
  line-height: 1.55;
}

/* Board life section */
.board-life {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  box-shadow: 0 2px 20px var(--shadow);
}
.board-life-text h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-bottom: 16px;
}
.board-life-text p {
  color: var(--mid);
  margin-bottom: 12px;
}
.board-life-perks {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.board-life-perks li {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
}
.board-life-cta {
  text-align: center;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--charcoal);
}
.cta-note {
  font-size: 0.78rem;
  color: var(--mid);
}

/* ═══════════════════════════════════════
   VOLUNTEER
   ═══════════════════════════════════════ */
#volunteer { background: var(--white); }
.volunteer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.volunteer-card {
  background: var(--parchment);
  border-radius: var(--r-md);
  padding: 28px 24px;
  border: 1.5px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.volunteer-card:hover {
  border-color: var(--ahs-gold);
  transform: translateY(-3px);
}
.vol-icon { font-size: 2.2rem; margin-bottom: 14px; }
.volunteer-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.volunteer-card p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.55;
}
.volunteer-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.or-text { color: var(--mid); font-size: 0.9rem; }

/* ═══════════════════════════════════════
   DONATE
   ═══════════════════════════════════════ */
#donate { padding: 0; }
.donate-inner {
  background: linear-gradient(135deg, var(--ahs-navy-blue) 0%, var(--ahs-blue) 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.donate-inner::before {
  content: '🎭';
  position: absolute;
  font-size: 300px;
  opacity: 0.04;
  top: -40px; right: -20px;
  pointer-events: none;
  user-select: none;
}
#donate h2 { color: var(--white); }
.donate-amounts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.amount-card {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s;
}
.amount-card.featured {
  background: rgba(232, 160, 32, 0.15);
  border-color: var(--ahs-gold);
}
.amount-card:hover { background: rgba(255,255,255,0.13); }
.amount-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ahs-gold);
}
.amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
}
.impact {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.45;
}
.donate-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.donate-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
}

/* ═══════════════════════════════════════
   BYLAWS
   ═══════════════════════════════════════ */
#bylaws { background: var(--parchment); }
.bylaws-container p {
  color: var(--mid);
  max-width: 600px;
  margin-bottom: 32px;
}
.bylaws-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.bylaws-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1.5px solid rgba(107, 30, 58, 0.15);
  border-radius: var(--r-md);
  padding: 20px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.bylaws-btn:hover { border-color: var(--ahs-blue); transform: translateY(-2px); }
.bylaws-icon { font-size: 2rem; }
.bylaws-btn strong { display: block; font-weight: 600; color: var(--charcoal); }
.bylaws-btn small  { font-size: 0.8rem; color: var(--mid); }
.bylaws-note {
  font-size: 0.85rem;
  color: var(--mid);
}
.bylaws-note a {
  color: var(--ahs-blue);
  text-decoration: underline;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-brand a { color: var(--ahs-gold); }
.footer-links h4,
.footer-social h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links ul li a:hover { color: var(--ahs-gold); }
.footer-social { display: flex; flex-direction: column; gap: 12px; }
.social-link {
  font-size: 0.9rem;
  transition: color 0.2s;
  display: inline-block;
}
.social-link:hover { color: var(--ahs-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-curtain {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════
   MARQUEE LIGHTS (JS-driven)
   ═══════════════════════════════════════ */
.bulb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ahs-gold);
  box-shadow: 0 0 8px 2px rgba(232, 160, 32, 0.6);
  transition: opacity 0.3s;
}
.bulb.off {
  background: rgba(232, 160, 32, 0.2);
  box-shadow: none;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 860px) {
  .about-grid         { grid-template-columns: 1fr; gap: 40px; }
  .board-life         { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .curtain-left,
  .curtain-right      { width: 8vw; }
}

@media (max-width: 640px) {
  section             { padding: 72px 0; }
  .nav-links          { display: none; flex-direction: column; gap: 0; }
  .nav-links.open     {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--parchment);
    border-bottom: 1px solid rgba(107,30,58,0.1);
    padding: 16px 0;
    z-index: 200;
  }
  .nav-links.open li a {
    display: block;
    padding: 12px 24px;
  }
  .nav-toggle         { display: block; }
  .hero-content       { padding: 100px 20px 60px; }
  .board-life         { padding: 28px 24px; }
  .footer-grid        { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .donate-cta         { align-items: center; }
  .gallery-card       { width: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
