/* ============================================================
   ONE VOICE AFRICA FORUM — Main Stylesheet
   Site: onevoiceafricaforum.org
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --maroon: #8B1A1A;
  --maroon-dark: #5C0E0E;
  --maroon-light: #B52525;
  --black: #1A1A1A;
  --orange: #E8621A;
  --orange-light: #F0843C;
  --green: #2D6B2D;
  --teal: #1A5C5C;
  --gold: #D4A017;
  --gold-light: #F0C040;
  --off-white: #F8F6F1;
  --warm-gray: #E8E4DC;
  --text-muted: #6B6560;
  --white: #FFFFFF;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--off-white);
  color: var(--black);
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
.font-display { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; }
.font-serif   { font-family: 'DM Serif Display', serif; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 70px;
  border-bottom: 2px solid var(--maroon);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 48px; width: 48px; object-fit: contain; border-radius: 50%; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--white); letter-spacing: 0.08em; }
.nav-logo-sub  { font-size: 9px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--maroon) !important; color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 3px;
  font-weight: 600 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--maroon-light) !important; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 12px;
  min-width: 44px; min-height: 44px; justify-content: center; align-items: center;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger span {
  width: 24px; height: 2px; background: var(--white);
  display: block; transition: all 0.3s;
}
.mobile-menu {
  display: none; position: fixed; top: 78px; left: 0; right: 0;
  background: rgba(26,26,26,0.98); padding: 24px 40px;
  border-bottom: 2px solid var(--maroon); z-index: 999;
  flex-direction: column; gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 16px; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ── */
#home {
  min-height: 100vh;
  background: var(--black);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(139,26,26,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(45,107,45,0.2)  0%, transparent 50%),
    radial-gradient(ellipse at 80% 10%, rgba(232,98,26,0.15) 0%, transparent 40%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    linear-gradient(var(--white) 1px, transparent 1px),
    linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-watermark {
  position: absolute; right: -40px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(200px, 35vw, 480px);
  color: rgba(255,255,255,0.03); line-height: 1;
  pointer-events: none; user-select: none; letter-spacing: -0.02em;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(212,160,23,0.15); border: 1px solid rgba(212,160,23,0.4);
  color: var(--gold); font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 2px; margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(1.4); }
}
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.92; letter-spacing: 0.03em;
  color: var(--white); margin-bottom: 8px;
}
.hero-h1 span { color: var(--gold); }
.hero-h1-sub {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--maroon-light); margin-bottom: 20px; line-height: 1.3;
}
.hero-desc {
  color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.75;
  max-width: 480px; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--maroon); color: var(--white);
  padding: 15px 30px; border-radius: 3px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: all 0.25s;
  border: 2px solid var(--maroon);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  background: var(--maroon-light); border-color: var(--maroon-light);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,26,26,0.4);
}
.btn-outline {
  background: transparent; color: var(--white);
  padding: 15px 30px; border-radius: 3px;
  font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: all 0.25s;
  border: 2px solid rgba(255,255,255,0.3);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold {
  background: var(--gold); color: var(--black);
  padding: 15px 30px; border-radius: 3px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,160,23,0.4); }
.btn-dark {
  background: var(--black); color: var(--white);
  padding: 16px 40px; border-radius: 3px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-dark:hover { background: var(--maroon-dark); transform: translateY(-2px); }

/* ── PARTNER TAGS ── */
.partner-tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.partner-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 2px;
}

/* ── EVENT CARD ── */
.hero-event-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--gold);
  border-radius: 8px; padding: 36px;
  backdrop-filter: blur(10px);
  animation: fadeUp 0.8s ease 0.3s both;
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
.event-card-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.event-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px; color: var(--white); letter-spacing: 0.04em;
  line-height: 1.1; margin-bottom: 6px;
}
.event-card-edition {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 15px; color: var(--maroon-light); margin-bottom: 24px;
}
.event-details { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.event-detail { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.75); font-size: 14px; }
.event-detail-icon {
  width: 28px; height: 28px; background: rgba(139,26,26,0.3);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.countdown-row { display: flex; gap: 10px; margin-bottom: 24px; }
.countdown-unit {
  flex: 1; background: rgba(0,0,0,0.3); border-radius: 6px;
  padding: 12px 8px; text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}
.countdown-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 30px;
  color: var(--white); line-height: 1; display: block;
}
.countdown-label {
  font-size: 9px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em; text-transform: uppercase;
  display: block; margin-top: 4px;
}
.event-card-btn {
  display: block; text-align: center;
  background: var(--gold); color: var(--black);
  padding: 14px; border-radius: 4px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: all 0.25s;
}
.event-card-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,160,23,0.4); }

/* ── MISSION STRIP ── */
.mission-strip { background: var(--maroon-dark); padding: 70px 40px; }
.mission-inner { max-width: 1200px; margin: 0 auto; }
.mission-headline {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(20px, 2.5vw, 30px); color: var(--white);
  text-align: center; margin-bottom: 48px; line-height: 1.5;
}
.mission-headline em { color: var(--gold); font-style: normal; }
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.pillar {
  background: rgba(0,0,0,0.2); padding: 40px 32px; text-align: center;
  transition: background 0.2s;
}
.pillar:hover { background: rgba(0,0,0,0.35); }
.pillar-num { font-family: 'Bebas Neue', sans-serif; font-size: 60px; color: rgba(212,160,23,0.15); line-height: 1; margin-bottom: 8px; }
.pillar-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.pillar-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--white); letter-spacing: 0.06em; margin-bottom: 12px; }
.pillar-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ── SECTIONS ── */
section { padding: 100px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--maroon); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content:''; width:24px; height:2px; background:var(--maroon); }
.section-label.gold { color: var(--gold); }
.section-label.gold::before { background: var(--gold); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px); letter-spacing: 0.03em;
  line-height: 0.95; margin-bottom: 16px;
}
.section-subtitle {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(16px, 1.8vw, 22px); color: var(--text-muted);
  margin-bottom: 48px; line-height: 1.5;
}

/* ── RECEPTION ── */
#reception { background: var(--black); color: var(--white); }
#reception .section-title { color: var(--white); }
#reception .section-subtitle { color: rgba(255,255,255,0.5); }
.reception-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.reception-body { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 20px; }
.reception-meta { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.meta-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px; background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--maroon); border-radius: 0 4px 4px 0;
}
.meta-icon { font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.meta-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.meta-value { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.4; }
.reception-visual {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 40%, #2a0a0a 100%);
  border-radius: 8px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
}
.reception-visual-bg {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 32px 32px;
}
.reception-visual-year {
  position: absolute; font-family: 'Bebas Neue', sans-serif;
  font-size: 160px; color: rgba(255,255,255,0.04); line-height: 1;
}
.reception-visual-center { position: relative; z-index: 2; text-align: center; padding: 32px; }
.reception-badge {
  display: inline-block; background: var(--gold); color: var(--black);
  font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 0.1em;
  padding: 7px 18px; border-radius: 3px; margin-bottom: 16px;
}
.reception-visual-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 46px;
  color: var(--white); letter-spacing: 0.04em; line-height: 1; margin-bottom: 8px;
}
.reception-visual-date {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 18px; color: var(--gold);
}
.sponsor-tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 32px; }
.tier-card { padding: 20px; border-radius: 6px; text-align: center; transition: transform 0.2s; }
.tier-card:hover { transform: translateY(-4px); }
.tier-card.gold-tier { background: linear-gradient(135deg, rgba(212,160,23,0.15), rgba(212,160,23,0.05)); border: 1px solid rgba(212,160,23,0.4); }
.tier-card.silver-tier { background: linear-gradient(135deg, rgba(180,180,180,0.1), rgba(180,180,180,0.03)); border: 1px solid rgba(180,180,180,0.2); }
.tier-card.bronze-tier { background: linear-gradient(135deg, rgba(176,94,50,0.12), rgba(176,94,50,0.04)); border: 1px solid rgba(176,94,50,0.25); }
.tier-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 0.08em; margin-bottom: 4px; }
.tier-card.gold-tier .tier-name { color: var(--gold); }
.tier-card.silver-tier .tier-name { color: #C0C0C0; }
.tier-card.bronze-tier .tier-name { color: #CD7F32; }
.tier-price { font-size: 12px; color: rgba(255,255,255,0.45); }
.past-editions { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 20px; }
.edition-box { background: rgba(139,26,26,0.3); border-radius: 4px; padding: 12px; text-align: center; }
.edition-box.current { background: rgba(212,160,23,0.15); border: 1px solid rgba(212,160,23,0.35); }
.edition-num { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--white); }
.edition-box.current .edition-num { color: var(--gold); }
.edition-yr { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.guests-box {
  margin-top: 16px; padding: 20px 24px;
  background: rgba(212,160,23,0.06); border: 1px solid rgba(212,160,23,0.18);
  border-radius: 8px;
}
.guests-box-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.guests-box-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ── STATS ── */
#impact { background: linear-gradient(135deg, var(--maroon-dark) 0%, #3a0a0a 100%); padding: 80px 40px; }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.stat-block { padding: 48px 32px; text-align: center; background: rgba(0,0,0,0.15); transition: background 0.2s; }
.stat-block:hover { background: rgba(0,0,0,0.3); }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px, 5.5vw, 76px); color: var(--gold); line-height: 1; display: block; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; letter-spacing: 0.04em; }

/* ── ABOUT ── */
#about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.section-title span { color: var(--maroon); }
.founding-block {
  background: var(--black); color: var(--white);
  padding: 32px; border-radius: 8px; margin: 28px 0;
  border-left: 4px solid var(--gold);
}
.founding-year { font-family: 'Bebas Neue', sans-serif; font-size: 68px; color: var(--maroon); line-height: 1; margin-bottom: 8px; }
.founding-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.about-body { font-size: 15px; line-height: 1.8; color: var(--text-muted); margin-bottom: 20px; }
.partners-label { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--maroon); margin-bottom: 20px; }
.partners-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.partner-card {
  background: var(--white); border-radius: 8px; padding: 24px;
  border: 1px solid var(--warm-gray); transition: all 0.25s;
  position: relative; overflow: hidden;
}
.partner-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; }
.partner-card.nigerian::before { background: var(--green); }
.partner-card.ghana::before    { background: var(--gold); }
.partner-card.napac::before    { background: var(--maroon); }
.partner-card.gaba::before     { background: var(--teal); }
.partner-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.partner-card-icon { font-size: 28px; margin-bottom: 12px; }
.partner-card-name { font-family: 'Bebas Neue', sans-serif; font-size: 17px; letter-spacing: 0.06em; margin-bottom: 8px; }
.partner-card-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ── ADVOCACY ── */
#advocacy { background: var(--white); }
.advocacy-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.advocacy-card {
  padding: 36px; border-radius: 8px; border: 1px solid var(--warm-gray);
  transition: all 0.25s; position: relative; overflow: hidden;
}
.advocacy-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.advocacy-card:hover::after { transform: scaleX(1); }
.advocacy-card.a1::after { background: var(--maroon); }
.advocacy-card.a2::after { background: var(--orange); }
.advocacy-card.a3::after { background: var(--green); }
.advocacy-card.a4::after { background: var(--teal); }
.advocacy-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.advocacy-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.advocacy-title { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 0.05em; margin-bottom: 12px; }
.advocacy-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── TIMELINE ── */
#history { background: var(--black); color: var(--white); }
#history .section-title { color: var(--white); }
#history .section-subtitle { color: rgba(255,255,255,0.45); }
.timeline { position: relative; padding-left: 32px; margin-top: 48px; }
.timeline::before {
  content:''; position:absolute; left:0; top:0; bottom:0; width:2px;
  background: linear-gradient(to bottom, var(--gold), var(--maroon), transparent);
}
.timeline-item { position: relative; padding-bottom: 44px; padding-left: 32px; }
.timeline-dot {
  position: absolute; left: -40px; top: 5px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--maroon); border: 2px solid var(--gold);
}
.timeline-dot.current { background: var(--gold); border-color: var(--white); }
.timeline-year { font-family: 'Bebas Neue', sans-serif; font-size: 13px; color: var(--gold); letter-spacing: 0.15em; margin-bottom: 6px; }
.timeline-event { font-size: 16px; color: rgba(255,255,255,0.9); font-weight: 600; margin-bottom: 6px; }
.timeline-detail { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ── NEWS ── */
#news { background: var(--off-white); }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.news-card { background: var(--white); border-radius: 8px; overflow: hidden; border: 1px solid var(--warm-gray); transition: all 0.25s; }
.news-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.news-card-header { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.news-card-header.nc1 { background: linear-gradient(135deg, var(--maroon-dark), var(--maroon)); }
.news-card-header.nc2 { background: linear-gradient(135deg, var(--teal), var(--green)); }
.news-card-header.nc3 { background: linear-gradient(135deg, #5C3800, var(--gold)); }
.news-card-body { padding: 24px; }
.news-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--maroon); margin-bottom: 10px; }
.news-title { font-size: 16px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.news-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.news-link { font-size: 12px; font-weight: 700; color: var(--maroon); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; }
.news-link:hover { color: var(--maroon-light); }

/* ── CTA BAND ── */
.cta-band { background: var(--gold); padding: 60px 40px; text-align: center; }
.cta-band-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4.5vw, 58px); color: var(--black); letter-spacing: 0.04em; margin-bottom: 8px; }
.cta-band-sub { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 18px; color: rgba(26,26,26,0.55); margin-bottom: 28px; }

/* ── CONTACT ── */
#contact { background: var(--black); color: var(--white); }
#contact .section-title { color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-body { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 32px; }
.contact-info-list { display: flex; flex-direction: column; gap: 14px; }
.contact-info-item {
  display: flex; align-items: center; gap: 16px; padding: 18px;
  background: rgba(255,255,255,0.04); border-radius: 6px;
}
.contact-info-item.gold-border { border-left: 3px solid var(--gold); }
.contact-info-item.maroon-border { border-left: 3px solid var(--maroon); }
.contact-info-item.green-border { border-left: 3px solid var(--green); }
.contact-info-icon { font-size: 22px; }
.contact-info-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-info-value { font-size: 14px; color: rgba(255,255,255,0.8); }
.reg-form-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--gold); border-radius: 8px; padding: 40px;
}
.reg-form-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 0.06em; color: var(--white); margin-bottom: 4px; }
.reg-form-sub { font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 28px; }
.form-fields { display: flex; flex-direction: column; gap: 16px; }
.form-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); display: block; margin-bottom: 6px; }
.form-input, .form-select {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 4px;
  padding: 12px 16px; color: var(--white);
  font-family: 'Outfit', sans-serif; font-size: 14px; outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus { border-color: var(--gold); }
.form-input::placeholder { color: rgba(255,255,255,0.25); }
.form-select option { background: #1a1a1a; }
.form-submit {
  background: var(--gold); color: var(--black); border: none;
  padding: 16px; border-radius: 4px; width: 100%;
  font-weight: 700; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s; margin-top: 8px;
  font-family: 'Outfit', sans-serif;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--black); color: var(--white);
  padding: 80px 40px 36px;
  border-top: 2px solid var(--maroon);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 56px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { height: 50px; width: 50px; object-fit: contain; border-radius: 50%; }
.footer-logo-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 0.08em; }
.footer-tagline { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.55; margin-bottom: 16px; }
.footer-founded { font-size: 10px; color: rgba(255,255,255,0.25); letter-spacing: 0.08em; text-transform: uppercase; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.newsletter-form { display: flex; gap: 8px; margin-bottom: 10px; }
.newsletter-input {
  flex: 1; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 3px;
  padding: 10px 14px; color: var(--white); font-size: 13px;
  font-family: 'Outfit', sans-serif; outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.28); }
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-btn {
  background: var(--maroon); color: var(--white); border: none;
  padding: 10px 16px; border-radius: 3px;
  font-weight: 700; font-size: 12px; cursor: pointer;
  letter-spacing: 0.08em; transition: background 0.2s;
  font-family: 'Outfit', sans-serif;
}
.newsletter-btn:hover { background: var(--maroon-light); }
.newsletter-note { font-size: 10px; color: rgba(255,255,255,0.22); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.28); }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); text-decoration: none; font-size: 14px;
  transition: all 0.2s; font-weight: 700;
}
.social-link:hover { background: var(--maroon); color: var(--white); border-color: var(--maroon); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  .hero-watermark { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .reception-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .advocacy-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  section { padding: 64px 20px; }
  .sponsor-tiers { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 20px; }
  .mission-strip { padding: 56px 20px; }
  #impact { padding: 64px 20px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .past-editions { grid-template-columns: repeat(2,1fr); }
}

/* ============================================================
   UPDATES — v2
   - Larger base text & logo
   - Partner logo grid
   - Sponsorship packages
   - Gallery page
   - Page template
   ============================================================ */

/* ── LARGER BASE TEXT ── */
body { font-size: 17px; }
.about-body        { font-size: 16px !important; }
.reception-body    { font-size: 16px !important; }
.advocacy-desc     { font-size: 15px !important; }
.pillar-desc       { font-size: 15px !important; }
.timeline-detail   { font-size: 14px !important; }
.news-excerpt      { font-size: 14px !important; }
.meta-value        { font-size: 15px !important; }
.partner-card-desc { font-size: 13px !important; }
.event-detail      { font-size: 15px !important; }
.contact-body      { font-size: 16px !important; }
.footer-tagline    { font-size: 15px !important; }
.footer-links a    { font-size: 15px !important; }
.tier-price        { font-size: 13px !important; color: rgba(255,255,255,0.6) !important; }

/* ── BIGGER NAV LOGO ── */
.nav-logo img      { height: 58px !important; width: 58px !important; }
.nav-logo-name     { font-size: 22px !important; }
.nav-logo-sub      { font-size: 10px !important; }
nav                { height: 78px !important; }
#home              { padding-top: 78px !important; }

/* ── PARTNER LOGOS SECTION ── */
.partner-logos-strip {
  background: var(--off-white);
  padding: 56px 40px;
  border-top: 1px solid var(--warm-gray);
  border-bottom: 1px solid var(--warm-gray);
}
.partner-logos-inner { max-width: 1200px; margin: 0 auto; }
.partner-logos-label {
  text-align: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 36px;
}
.partner-logos-row {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.partner-logo-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: transform 0.25s; text-decoration: none;
}
.partner-logo-item:hover { transform: translateY(-4px); }
.partner-logo-item img {
  height: 80px; width: 80px;
  object-fit: contain; border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 6px;
}
.partner-logo-item span {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
}

/* ── SPONSORSHIP PACKAGES ── */
#sponsorship { background: var(--black); color: var(--white); }
#sponsorship .section-title { color: var(--white); }
#sponsorship .section-subtitle { color: rgba(255,255,255,0.5); }
.sponsorship-intro {
  font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.8;
  max-width: 760px; margin: 0 auto 56px; text-align: center;
}
.sponsor-packages-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.sponsor-pkg {
  border-radius: 10px; padding: 32px 24px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.sponsor-pkg:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.4); }
.sponsor-pkg.platinum {
  background: linear-gradient(150deg, rgba(180,180,220,0.12) 0%, rgba(100,100,160,0.06) 100%);
  border: 1px solid rgba(180,180,220,0.35);
}
.sponsor-pkg.gold-pkg {
  background: linear-gradient(150deg, rgba(212,160,23,0.14) 0%, rgba(212,160,23,0.05) 100%);
  border: 1px solid rgba(212,160,23,0.4);
}
.sponsor-pkg.silver-pkg {
  background: linear-gradient(150deg, rgba(192,192,192,0.1) 0%, rgba(192,192,192,0.04) 100%);
  border: 1px solid rgba(192,192,192,0.28);
}
.sponsor-pkg.bronze-pkg {
  background: linear-gradient(150deg, rgba(205,127,50,0.12) 0%, rgba(205,127,50,0.04) 100%);
  border: 1px solid rgba(205,127,50,0.28);
}
.sponsor-pkg-badge {
  display: inline-block; border-radius: 3px;
  font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 0.15em;
  padding: 5px 14px; margin-bottom: 4px; align-self: flex-start;
}
.platinum   .sponsor-pkg-badge { background: rgba(180,180,220,0.25); color: #C8C8F0; }
.gold-pkg   .sponsor-pkg-badge { background: rgba(212,160,23,0.25);  color: var(--gold); }
.silver-pkg .sponsor-pkg-badge { background: rgba(192,192,192,0.2);  color: #D0D0D0; }
.bronze-pkg .sponsor-pkg-badge { background: rgba(205,127,50,0.2);   color: #E0A060; }
.sponsor-pkg-price {
  font-family: 'Bebas Neue', sans-serif; font-size: 44px;
  line-height: 1; letter-spacing: 0.03em;
}
.platinum   .sponsor-pkg-price { color: #C8C8F0; }
.gold-pkg   .sponsor-pkg-price { color: var(--gold); }
.silver-pkg .sponsor-pkg-price { color: #D0D0D0; }
.bronze-pkg .sponsor-pkg-price { color: #E0A060; }
.sponsor-pkg-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 22px;
  letter-spacing: 0.06em; color: var(--white); margin-bottom: 4px;
}
.sponsor-pkg-divider {
  border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 4px 0;
}
.sponsor-pkg-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.sponsor-pkg-perks li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.68); line-height: 1.5;
}
.sponsor-pkg-perks li::before {
  content: '✓'; font-size: 11px; font-weight: 700; margin-top: 2px; flex-shrink: 0;
}
.platinum   .sponsor-pkg-perks li::before { color: #C8C8F0; }
.gold-pkg   .sponsor-pkg-perks li::before { color: var(--gold); }
.silver-pkg .sponsor-pkg-perks li::before { color: #D0D0D0; }
.bronze-pkg .sponsor-pkg-perks li::before { color: #E0A060; }
.sponsor-pkg-cta {
  display: block; text-align: center; border-radius: 4px;
  padding: 13px; font-weight: 700; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: all 0.2s; margin-top: auto;
}
.platinum   .sponsor-pkg-cta { background: rgba(180,180,220,0.2); color: #C8C8F0; border: 1px solid rgba(180,180,220,0.35); }
.gold-pkg   .sponsor-pkg-cta { background: var(--gold); color: var(--black); }
.silver-pkg .sponsor-pkg-cta { background: rgba(192,192,192,0.15); color: #D0D0D0; border: 1px solid rgba(192,192,192,0.3); }
.bronze-pkg .sponsor-pkg-cta { background: rgba(205,127,50,0.15); color: #E0A060; border: 1px solid rgba(205,127,50,0.3); }
.sponsor-pkg-cta:hover { transform: translateY(-2px); filter: brightness(1.1); }

/* ── GALLERY PAGE ── */
.gallery-hero {
  background: var(--black); padding: 120px 40px 80px;
  border-bottom: 2px solid var(--maroon);
}
.gallery-hero-inner { max-width: 1200px; margin: 0 auto; }
.gallery-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px); color: var(--white);
  letter-spacing: 0.04em; line-height: 0.95; margin-bottom: 16px;
}
.gallery-hero h1 span { color: var(--gold); }
.gallery-hero p {
  font-size: 18px; color: rgba(255,255,255,0.55); max-width: 600px; line-height: 1.7;
}
.gallery-section { background: var(--off-white); padding: 80px 40px; }
.gallery-section-inner { max-width: 1200px; margin: 0 auto; }
.gallery-year-group { margin-bottom: 72px; }
.gallery-year-label {
  font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--maroon);
  letter-spacing: 0.06em; margin-bottom: 24px;
  padding-bottom: 10px; border-bottom: 2px solid var(--warm-gray);
  display: flex; align-items: center; gap: 16px;
}
.gallery-year-label::after { content: ''; flex: 1; height: 2px; background: var(--warm-gray); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 6px;
  background: var(--warm-gray); aspect-ratio: 4/3;
  cursor: pointer; transition: transform 0.25s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(139,26,26,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-overlay-icon { font-size: 32px; color: var(--white); }
.gallery-upload-zone {
  border: 2px dashed var(--warm-gray); border-radius: 8px;
  padding: 60px 40px; text-align: center;
  background: var(--white); transition: border-color 0.2s;
  cursor: pointer; margin-bottom: 40px;
}
.gallery-upload-zone:hover { border-color: var(--maroon); }
.gallery-upload-icon { font-size: 48px; margin-bottom: 16px; }
.gallery-upload-title { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 0.06em; color: var(--black); margin-bottom: 8px; }
.gallery-upload-sub { font-size: 15px; color: var(--text-muted); }
.gallery-placeholder {
  aspect-ratio: 4/3; border-radius: 6px;
  background: var(--warm-gray);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; cursor: pointer; border: 2px dashed rgba(0,0,0,0.1);
  transition: all 0.2s;
}
.gallery-placeholder:hover { background: var(--white); border-color: var(--maroon); }
.gallery-placeholder-icon { font-size: 28px; color: var(--text-muted); }
.gallery-placeholder-text { font-size: 12px; color: var(--text-muted); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 32px; color: var(--white); cursor: pointer;
  background: none; border: none; line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-caption {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 16px; color: rgba(255,255,255,0.6);
}

/* ── PAGE TEMPLATE ── */
.page-hero {
  background: var(--black); padding: 120px 40px 72px;
  border-bottom: 2px solid var(--maroon);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.page-hero-label::before { content:''; width:24px; height:2px; background: var(--gold); }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px); color: var(--white);
  letter-spacing: 0.04em; line-height: 0.95; margin-bottom: 16px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.55); max-width: 680px; line-height: 1.7; }
.page-content { background: var(--off-white); padding: 80px 40px; }
.page-content-inner { max-width: 1200px; margin: 0 auto; }

/* ── MOBILE UPDATES ── */
@media (max-width: 960px) {
  .sponsor-packages-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-logos-row { gap: 28px; }
}
@media (max-width: 520px) {
  .sponsor-packages-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .partner-logo-item img { height: 64px; width: 64px; }
}

/* ── Expanded advocacy grid — 8 cards, more text ── */
#advocacy .advocacy-grid {
  grid-template-columns: repeat(2, 1fr) !important;
}
#advocacy .advocacy-desc {
  font-size: 14px !important;
  line-height: 1.75 !important;
}
#advocacy .advocacy-card {
  padding: 32px 28px;
}
@media (max-width: 960px) {
  #advocacy .advocacy-grid {
    grid-template-columns: 1fr !important;
  }
}
