/* ============================================================
   COCALICO BAND BOOSTERS INC. — style.css
   Color palette derived from gold eagle logo
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dark:   #9A7A2F;
  --navy:        #0D1B2A;
  --navy-mid:    #1C2E42;
  --navy-light:  #243B55;
  --white:       #FFFFFF;
  --off-white:   #F9F6EF;
  --gray-light:  #F2EFE8;
  --gray:        #8A8278;
  --text-dark:   #1A1612;
  --text-body:   #3A3530;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --radius:      10px;
  --radius-lg:   18px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.18);
  --transition:  0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-full { width: 100%; text-align: center; }

/* ── Section commons ── */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.section-header.light .section-label { color: var(--gold-light); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  line-height: 1.25;
}
.section-header.light .section-title { color: var(--white); }
.title-divider {
  margin: 1rem auto 0;
  font-size: 1.6rem;
  color: var(--gold);
}
.section-desc {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ════════════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(13,27,42,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: .75rem 1.5rem;
}
.nav-logo img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
  transition: transform var(--transition);
}
.nav-logo:hover img { transform: scale(1.04); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: .45rem .8rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--gold-light); background: rgba(255,255,255,.06); }
.nav-cta {
  margin-left: .5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .85rem;
  font-weight: 700;
  padding: .5rem 1.2rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(201,168,76,.12) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, #0a1520 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Floating music notes */
.hero-notes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-notes span {
  position: absolute;
  font-size: clamp(1.2rem, 2.5vw, 2.4rem);
  color: var(--gold);
  opacity: 0;
  animation: floatNote 12s infinite ease-in-out;
}
.hero-notes span:nth-child(1)  { left:5%;  top:75%; animation-delay: 0s;   animation-duration:14s; }
.hero-notes span:nth-child(2)  { left:18%; top:85%; animation-delay: 1.5s; animation-duration:11s; }
.hero-notes span:nth-child(3)  { left:32%; top:80%; animation-delay: 3s;   animation-duration:13s; }
.hero-notes span:nth-child(4)  { left:48%; top:90%; animation-delay: 0.8s; animation-duration:10s; }
.hero-notes span:nth-child(5)  { left:62%; top:78%; animation-delay: 2.2s; animation-duration:15s; }
.hero-notes span:nth-child(6)  { left:75%; top:88%; animation-delay: 1s;   animation-duration:12s; }
.hero-notes span:nth-child(7)  { left:87%; top:82%; animation-delay: 3.5s; animation-duration:11s; }
.hero-notes span:nth-child(8)  { left:10%; top:20%; animation-delay: 2s;   animation-duration:16s; }
.hero-notes span:nth-child(9)  { left:55%; top:15%; animation-delay: 4s;   animation-duration:14s; }
.hero-notes span:nth-child(10) { left:80%; top:25%; animation-delay: 1.8s; animation-duration:13s; }

@keyframes floatNote {
  0%   { opacity: 0; transform: translateY(0) rotate(-10deg); }
  10%  { opacity: .3; }
  50%  { opacity: .15; transform: translateY(-120px) rotate(10deg); }
  90%  { opacity: .3; }
  100% { opacity: 0; transform: translateY(-240px) rotate(-5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 780px;
}
.hero-logo {
  width: min(360px, 80vw);
  margin: 0 auto 2rem;
  filter: drop-shadow(0 8px 32px rgba(201,168,76,.25));
  animation: heroFadeIn 1s ease both;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  color: var(--gold-light);
  line-height: 1.25;
  margin-bottom: .75rem;
  animation: heroFadeIn 1s .2s ease both;
}
.hero-sub {
  font-size: clamp(.9rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.72);
  margin-bottom: 2.5rem;
  animation: heroFadeIn 1s .4s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeIn 1s .6s ease both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  letter-spacing: .1em;
  animation: heroFadeIn 1s 1s ease both;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

/* ════════════════════════════════════════════════
   BANNER STRIP
════════════════════════════════════════════════ */
.banner-strip {
  background: var(--gold);
  padding: .9rem 0;
  overflow: hidden;
}
.banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .02em;
}
.banner-inner .sep { opacity: .4; }

/* ════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════ */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text .lead {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: var(--navy);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.about-text p { margin-bottom: 1rem; color: var(--text-body); }

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.about-card {
  background: var(--off-white);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.card-icon { font-size: 2rem; margin-bottom: .6rem; }
.about-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: .4rem;
}
.about-card p { font-size: .88rem; color: var(--gray); line-height: 1.55; }

.tax-badge {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 1.8rem 2.2rem;
  color: var(--white);
  border-left: 5px solid var(--gold);
}
.tax-badge-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .03em;
  background: var(--gold);
  color: var(--navy);
  border-radius: 10px;
  padding: .8rem 1rem;
  text-align: center;
  line-height: 1.2;
}
.tax-badge-text { font-size: .92rem; line-height: 1.6; opacity: .92; }

/* ════════════════════════════════════════════════
   PRESIDENT'S MESSAGE
════════════════════════════════════════════════ */
.message-section {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.message-section::before {
  content: '♬';
  position: absolute;
  font-size: 20rem;
  color: rgba(201,168,76,.04);
  top: -4rem;
  right: -2rem;
  line-height: 1;
  pointer-events: none;
}

.message-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  backdrop-filter: blur(4px);
  align-items: start;
}

.message-photo-wrap { text-align: center; }
.president-photo {
  width: 220px;
  height: 270px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  border: 4px solid var(--gold);
  box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 0 8px rgba(201,168,76,.15);
  margin: 0 auto 1.2rem;
}
.president-badge {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.badge-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}
.badge-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
}
.badge-org {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: .6;
  margin-bottom: 1rem;
  opacity: .6;
}
.message-text {
  color: rgba(255,255,255,.82);
  font-size: .98rem;
  margin-bottom: 1.1rem;
  line-height: 1.8;
}
.message-signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,.25);
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.message-signature strong {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-light);
}
.message-signature span { font-size: .85rem; color: rgba(255,255,255,.5); }

/* ════════════════════════════════════════════════
   PROGRAMS
════════════════════════════════════════════════ */
.programs-section { background: var(--gray-light); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border-top: 4px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.program-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.program-icon { font-size: 2.4rem; margin-bottom: .8rem; }
.program-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: .6rem;
}
.program-card p { font-size: .9rem; color: var(--gray); line-height: 1.65; }

/* ════════════════════════════════════════════════
   EVENTS
════════════════════════════════════════════════ */
.events-section {
  background: linear-gradient(160deg, #0e1e30 0%, #1a2f45 100%);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.event-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  position: relative;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.event-card:hover {
  background: rgba(255,255,255,.09);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.event-card.featured { border-color: var(--gold); background: rgba(201,168,76,.08); }
.event-badge {
  position: absolute;
  top: -10px; right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .65rem;
  border-radius: 20px;
}
.event-date {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  width: 60px;
  text-align: center;
  padding: .5rem .25rem;
  line-height: 1;
}
.event-month {
  display: block;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .15rem;
}
.event-day {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.event-year {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin-top: .2rem;
  opacity: .75;
}
.event-info h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: .5rem;
}
.event-info p { font-size: .87rem; color: rgba(255,255,255,.62); line-height: 1.6; margin-bottom: .75rem; }
.event-location { font-size: .8rem; color: var(--gold); font-weight: 600; }
.events-note { text-align: center; font-size: .83rem; color: rgba(255,255,255,.4); }

/* ════════════════════════════════════════════════
   SUPPORT
════════════════════════════════════════════════ */
.support-section { background: var(--white); }
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.support-card {
  background: var(--off-white);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.support-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.support-icon { font-size: 2.4rem; margin-bottom: .8rem; }
.support-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .6rem;
}
.support-card p { font-size: .87rem; color: var(--gray); line-height: 1.6; margin-bottom: 1.2rem; }

.tax-info-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  border-left: 5px solid var(--gold);
}
.tax-info-box h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.tax-info-box p {
  font-size: .92rem;
  line-height: 1.75;
  opacity: .85;
  margin-bottom: .75rem;
}

/* ════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════ */
.contact-section {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-block {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}
.contact-icon { font-size: 1.6rem; margin-top: .1rem; }
.contact-block h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.contact-block p { font-size: .92rem; color: rgba(255,255,255,.7); line-height: 1.65; }

.contact-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .05em;
  margin-bottom: .45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .9rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.form-group select option { background: var(--navy); color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.12);
}
.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  margin-top: 1rem;
  background: rgba(201,168,76,.15);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  color: var(--gold-light);
  font-weight: 600;
}
.form-success.show { display: block; }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.site-footer { background: var(--navy); }
.footer-top { padding: 60px 0 40px; border-bottom: 1px solid rgba(201,168,76,.15); }
.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1.2rem;
  filter: brightness(0.95);
}
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin-bottom: .6rem;
}
.footer-tax-note {
  margin-top: .8rem;
  padding: .75rem 1rem;
  background: rgba(201,168,76,.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .8rem !important;
  color: rgba(255,255,255,.45) !important;
}
.footer-links h4,
.footer-contact h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: .6rem;
}
.footer-contact strong { color: rgba(255,255,255,.75); }

.footer-bottom {
  padding: 1.4rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  line-height: 1.7;
}
.footer-disclaimer { margin-top: .3rem; }

/* ════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(13,27,42,.97);
    padding: 6rem 2rem 2rem;
    gap: .5rem;
    z-index: 999;
    backdrop-filter: blur(8px);
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 1.1rem; padding: .8rem 1.2rem; }
  .nav-cta { margin: .5rem 0 0; text-align: center; font-size: 1rem; padding: .85rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-cards { grid-template-columns: 1fr 1fr; }

  /* President */
  .message-card { grid-template-columns: 1fr; padding: 2rem; }
  .message-photo-wrap { display: flex; flex-direction: column; align-items: center; }

  /* Events */
  .events-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Programs */
  .programs-grid { grid-template-columns: 1fr 1fr; }

  /* Support */
  .support-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-top-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .about-cards { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .tax-badge { flex-direction: column; gap: 1rem; }
  .message-card { padding: 1.5rem; }
  .tax-info-box { padding: 1.5rem; }
}
