/* ============================================================
   AFDB Annual Meeting 2026 — Main Stylesheet
   Theme: AfDB Navy / Gold / Teal
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --gold:        #C8A84B;
  --gold-light:  #E8D08A;
  --gold-dark:   #8B6914;
  --navy:        #0A1628;
  --navy-mid:    #122240;
  --navy-light:  #1E3A5F;
  --teal:        #00B4A0;
  --teal-light:  #00D4BE;
  --cream:       #F8F4EC;
  --cream-dark:  #EDE7D8;
  --text:        #1A1A2E;
  --text-muted:  #5A6478;
  --white:       #FFFFFF;
  --danger:      #E24B4A;
  --success:     #1D9E75;
  --sidebar-w:   260px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── TOP NAV ── */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: #fff;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #0a9946;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 15px; color: var(--navy);
}
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; color: var(--gold); letter-spacing: 0.3px; }
.nav-logo-sub  { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.nav-links     { display: flex; gap: 0; align-items: center; }
.nav-link {
  padding: 8px 16px; font-size: 13.5px; font-weight: 400; color: #333;
  border-radius: 6px; transition: all 0.2s; text-decoration: none; display: inline-block;
}
.nav-link:hover { color: #fff !important; background: #0a9946; }
.nav-link.active { color: #333; font-weight: 500; }
.nav-cta {
  padding: 8px 20px; background: #0a9946; color: #fff;
  border: none; border-radius: 6px; font-size: 13.5px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; margin-left: 8px; text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: #0a9946; transform: translateY(-1px); color: #fff; }
.nav-mobile-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; }

/* ── PAGE WRAPPER ── */
.page-wrap { padding-top: 80px; min-height: 100vh; }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 94vh;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: #fff;
}
.hero-content { position: relative; z-index: 10; padding: 0 6%; max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,168,75,0.12); border: 1px solid rgba(200,168,75,0.35);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; font-weight: 500; color: var(--gold);
  margin-bottom: 1.8rem; letter-spacing: 0.8px; text-transform: uppercase;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.1;
  color: #333; margin-bottom: 1rem;
}
.hero-title em { font-style: normal; color: #0a9946; }
.hero-subtitle { font-size: 1.1rem; color: #333; line-height: 1.7; margin-bottom: 2.5rem; max-width: 540px; }
.hero-date { display: flex; gap: 2rem; margin-bottom: 2.5rem; }
.hero-date-item label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; display: block; }
.hero-date-item span  { font-size: 15px; font-weight: 500; color: #0a9946; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  position: relative; z-index: 10;
  padding: 2.5rem 6%;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  border-top: 1px solid rgba(200,168,75,0.12);
  background: linear-gradient(45deg, #007E95, #0e5811) !important;
  margin-top: 30px;
}
.hero-stat { padding: 1.5rem 2rem; text-align: center; }
.hero-stat-num   { font-size: 2rem; font-weight: 700; color: #fff; }
.hero-stat-label { font-size: 12px; color: #fff; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── BUTTONS ── */
.btn-primary {
  padding: 14px 32px; background: #0a9946; color: #fff;
  border: none; border-radius: 8px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: #0a9946; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,75,0.3); color: #fff; }
.btn-outline {
  padding: 14px 32px; background: transparent;
  border: 1.5px solid #0a9946; color: #333;
  border-radius: 8px; font-size: 15px; font-weight: 500;
  cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif;
  text-decoration: none; display: inline-block;
}
.section-header-row .btn-outline:hover { border-color: #0a9946; color: #fff; background: rgba(200,168,75,0.07); }
.section-header-row .btn-outline { border-color: #0a9946; color: #fff; background: rgba(200,168,75,0.07); }
.hero-content .btn-outline:hover { border-color: #0a9946; color: #333; background: rgba(200,168,75,0.07); }
.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: 6px; }

/* ── SECTIONS ── */
.section { padding: 5rem 6%; }
.section-dark { background: var(--navy); }
.section-mid  { background: var(--navy-mid); }
.section-alt  { background: #0D1F3C; }
.section-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
  color: #0a9946; font-weight: 600; margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700;
  color: var(--white); margin-bottom: 1rem; line-height: 1.2;
}
.section-desc { font-size: 15px; color: rgba(255,255,255,0.55); max-width: 520px; line-height: 1.7; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; gap: 1rem; flex-wrap: wrap; }

/* ── FEATURED SPEAKERS ── */
.speakers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.5rem; }
.speaker-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 1.5rem 1.25rem; text-align: center;
  transition: all 0.25s; cursor: pointer;
}
.speaker-card:hover { background: rgba(200,168,75,0.07); border-color: rgba(200,168,75,0.25); transform: translateY(-4px); }
.speaker-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700;
  color: #0a9946; margin: 0 auto 1rem; border: 1.5px solid #0a9946;
}
.speaker-name    { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.speaker-title   { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; line-height: 1.4; }
.speaker-country { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ── PROGRAMME (HOME) ── */
.programme-list { display: grid; gap: 0.75rem; }
.programme-item {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 1.25rem 1.5rem;
  display: grid; grid-template-columns: 80px 1fr auto; gap: 1.25rem; align-items: center;
  transition: all 0.2s;
}


.programme-item:hover { border-color: rgba(200,168,75,0.2); background: rgba(200,168,75,0.04); }
.programme-time { font-size: 1.05rem; font-weight: 600; color: #0a9946; }


.programme-title { font-size: 14px; font-weight: 500; color: var(--white); }
.programme-meta  { font-size: 12px; color: var(--text-muted); margin-top: 3px; }

/* ── SESSION TYPE BADGES ── */
.session-type { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; letter-spacing: 0.3px; }
.type-keynote  { background: rgba(200,168,75,0.15); color: #0a9946; }
.type-panel    { background: rgba(0,180,160,0.15);   color: var(--teal-light); }
.type-workshop { background: rgba(90,100,200,0.15);  color: #9CA3F5; }
.type-breakout { background: rgba(212,83,126,0.15);  color: #ED93B1; }

/* ── SESSIONS PAGE ── */
.session-tabs  { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.tab-btn {
  padding: 8px 18px; border-radius: 100px;
  border: 1px solid rgba(200,168,75,0.25); background: transparent;
  color: rgba(255,255,255,0.6); font-size: 13px; cursor: pointer;
  transition: all 0.2s; font-family: 'DM Sans', sans-serif; text-decoration: none; display: inline-block;
}

.qa-progress span:nth-of-type(2) { color: #0a9946; } 
.tab-btn:hover { border-color: #0a9946; color: #fff; }
.tab-btn.active { background: #0a9946; color: #fff; border-color: #0a9946; font-weight: 600; }

.sessions-grid { display: grid; gap: 1rem; }
.session-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 1.5rem;
  display: grid; grid-template-columns: 100px 1fr auto; gap: 1.5rem; align-items: start;
  transition: all 0.2s;
}
.session-card:hover { background: rgba(200,168,75,0.06); border-color: rgba(200,168,75,0.2); transform: translateX(4px); }
.session-time-main { font-size: 1.2rem; font-weight: 600; color: #0a9946; line-height: 1; }
.session-time-end  { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.session-title     { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 6px; margin-top: 6px; }
.session-meta      { font-size: 13px; color: var(--text-muted); }
.session-meta span { margin-right: 16px; }
.session-register {
  padding: 8px 16px; background: transparent;
  border: 1px solid rgba(200,168,75,0.3); color: var(--gold);
  border-radius: 6px; font-size: 12px; cursor: pointer;
  transition: all 0.2s; white-space: nowrap; font-family: 'DM Sans', sans-serif;
  text-decoration: none; display: inline-block;
}
.session-register:hover { background: var(--gold); color: var(--navy); }

/* ── AFRICA MAP ── */
.map-container {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(200,168,75,0.15);
  background: rgba(255,255,255,0.02);
  padding: 2rem; position: relative;
}
.map-svg      { width: 100%; max-height: 420px; }
.country      { fill: rgba(0,180,160,0.2); stroke: rgba(0,180,160,0.5); stroke-width: 0.8; transition: all 0.2s; cursor: pointer; }
.country:hover{ fill: rgba(200,168,75,0.4); stroke: var(--gold); }
.country.highlight { fill: rgba(200,168,75,0.35); stroke: var(--gold); }
.map-legend   { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.legend-item  { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); }
.legend-dot   { width: 10px; height: 10px; border-radius: 50%; }
.map-info-panel { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; align-items: start; }

/* ── Q&A / KNOWLEDGE CHALLENGE ── */
.qa-container   { max-width: 720px; margin: 0 auto; }
.qa-progress    { margin-bottom: 2rem; }
.qa-progress-bar   { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.qa-progress-fill  { height: 100%; background: var(--gold); border-radius: 2px; transition: width 0.4s ease; }
.qa-question    { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: var(--white); margin-bottom: 2rem; line-height: 1.4; }
.qa-options     { display: grid; gap: 0.75rem; margin-bottom: 2.5rem; }
.qa-option {
  padding: 1rem 1.25rem;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px; background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.8); font-size: 14.5px;
  cursor: pointer; transition: all 0.2s; text-align: left;
  font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; gap: 12px;
  width: 100%; border: 1.5px solid rgba(255,255,255,0.1);
}
.qa-option:hover   { border-color: #0a9946; color: var(--white); background: rgba(200,168,75,0.06); }
.qa-option.selected{ border-color: #0a9946; background: rgba(200,168,75,0.12); color: var(--gold); }
.qa-option.correct { border-color: #0a9946;  background: rgba(0,180,160,0.1); color: var(--teal-light); pointer-events: none; }
.qa-option.wrong   { border-color: var(--danger); background: rgba(226,75,74,0.08); color: #F09595; pointer-events: none; }
.option-letter {
  width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; flex-shrink: 0;
}
.qa-btn { padding: 12px 32px; background: #0a9946; color: #fff; border: none; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.qa-btn:hover    { background: #0a9946; }
.qa-btn:disabled { opacity: 0.4; cursor: default; }

.thankyou-box   { text-align: center; padding: 4rem 2rem; }
.thankyou-icon  { font-size: 3rem; margin-bottom: 1rem; }
.thankyou-title { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.thankyou-text  { color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ── FORM OVERLAY (Modal) ── */
.form-overlay {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.75);
  align-items: center; justify-content: center; padding: 2rem;
}
.form-overlay.show { display: flex; }
.form-card {
  background: var(--navy-mid); border: 1px solid rgba(200,168,75,0.2);
  border-radius: 16px; padding: 2.5rem; max-width: 480px; width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.form-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--white); margin-bottom: 0.5rem; }
.form-sub   { font-size: 14px; color: var(--text-muted); margin-bottom: 2rem; }
.form-field { margin-bottom: 1.25rem; }
.form-label { font-size: 13px; color: rgba(255,255,255,0.6); display: block; margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; color: var(--white); font-size: 14px; font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s; outline: none;
}
.form-input:focus       { border-color: var(--gold); }
.form-input::placeholder{ color: rgba(255,255,255,0.25); }

/* ── FLASH MESSAGES ── */
.flash { padding: 12px 18px; border-radius: 8px; font-size: 14px; margin-bottom: 1.5rem; }
.flash-success { background: rgba(29,158,117,0.15); border: 1px solid rgba(29,158,117,0.3); color: var(--teal-light); }
.flash-error   { background: rgba(226,75,74,0.12);  border: 1px solid rgba(226,75,74,0.3);  color: #F09595; }

/* ── ADMIN LAYOUT ── */
.admin-layout  { display: flex; min-height: calc(100vh - 64px); }
.admin-sidebar {
  width: var(--sidebar-w); background: var(--navy-mid);
  border-right: 1px solid rgba(200,168,75,0.1);
  padding: 1.5rem 0; position: sticky; top: 64px; height: calc(100vh - 64px);
  overflow-y: auto; flex-shrink: 0;
}
.sidebar-section-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); padding: 0 1.25rem; margin-bottom: 0.5rem; margin-top: 1.5rem; }
.sidebar-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 1.25rem; color: rgba(255,255,255,0.55);
  font-size: 13.5px; cursor: pointer; transition: all 0.15s;
  border-left: 2px solid transparent; text-decoration: none;
}
.sidebar-link:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.sidebar-link.active { color: var(--gold); background: rgba(200,168,75,0.08); border-left-color: var(--gold); }
.sidebar-icon  { font-size: 14px; opacity: 0.9; }
.admin-main    { flex: 1; padding: 2rem; background: #0B1A30; overflow-y: auto; }
.admin-header  { margin-bottom: 2rem; }
.admin-title   { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--white); }
.admin-subtitle{ font-size: 14px; color: var(--text-muted); margin-top: 4px; }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; }
.stat-card {
  background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 1.25rem;
}
.stat-card-label  { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-card-num    { font-size: 2rem; font-weight: 600; color: var(--white); margin: 6px 0 4px; }
.stat-card-change { font-size: 12px; }
.change-up   { color: var(--teal-light); }
.change-down { color: #F09595; }

.admin-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.5rem; }
.admin-card {
  background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 1.5rem; margin-bottom: 1.5rem;
}
.admin-card-title  { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.admin-card-action { font-size: 12px; color: var(--gold); cursor: pointer; text-decoration: none; }

/* Bar chart */
.chart-bar-wrap { display: flex; flex-direction: column; gap: 10px; }
.chart-bar-row  { display: flex; align-items: center; gap: 12px; }
.chart-bar-label{ font-size: 12px; color: var(--text-muted); min-width: 80px; }
.chart-bar-track{ flex: 1; height: 8px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
.chart-bar-fill { height: 100%; border-radius: 4px; transition: width 1s ease; }
.chart-bar-val  { font-size: 12px; color: var(--white); min-width: 28px; text-align: right; }

/* Tables */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--text-muted); padding: 10px 12px; text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06); white-space: nowrap;
}
td { font-size: 13.5px; color: rgba(255,255,255,0.75); padding: 12px; border-bottom: 1px solid rgba(255,255,255,0.04); vertical-align: middle; }
tr:hover td { background: rgba(255,255,255,0.02); }
.action-btn { padding: 5px 12px; border-radius: 5px; font-size: 12px; cursor: pointer; font-family: 'DM Sans', sans-serif; border: none; margin-right: 4px; transition: all 0.15s; }
.action-edit { background: rgba(200,168,75,0.15); color: var(--gold); }
.action-edit:hover { background: rgba(200,168,75,0.25); }
.action-del  { background: rgba(226,75,74,0.12);  color: #F09595; }
.action-del:hover  { background: rgba(226,75,74,0.22); }

/* Badges */
.badge { display: inline-block; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.badge-gold  { background: rgba(200,168,75,0.15); color: var(--gold); }
.badge-teal  { background: rgba(0,180,160,0.15);   color: var(--teal-light); }
.badge-red   { background: rgba(226,75,74,0.12);   color: #F09595; }

/* ── FOOTER ── */
.footer {
  background: #fff;
  border-top: 1px solid rgba(200,168,75,0.12);
  padding: 3.5rem 6% 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #333; margin-bottom: 0.75rem; font-weight: bold;}
.footer-brand-desc { font-size: 14px; color: #333; line-height: 1.7; }
.footer-col-title  { font-size: 14px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; color: #333; margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { font-size: 14px; color: #333; padding: 5px 0; cursor: pointer; transition: color 0.15s; }
.footer-links li:hover, .footer-links a { color: #333; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem; }
.footer-copy { font-size: 13px; color: var(--text-muted); }

/* ── UTILITIES ── */
.text-gold   { color: var(--gold); }
.text-teal   { color: var(--teal-light); }
.text-muted  { color: var(--text-muted); }
.mt-1  { margin-top: 0.5rem;  }
.mt-2  { margin-top: 1rem;    }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem;}
.d-flex { display: flex; }
.gap-1  { gap: 0.5rem; }
.gap-2  { gap: 1rem;   }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }
.fade-up { animation: fadeUp 0.5s ease forwards; }
@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .admin-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: block; }
  .session-card { grid-template-columns: 1fr; }
  .map-info-panel { grid-template-columns: 1fr; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; height: auto; position: relative; top: 0; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .hero-stats  { grid-template-columns: 1fr 1fr; }
  .stats-row   { grid-template-columns: 1fr 1fr; }
  .section     { padding: 3rem 5%; }
  .hero-content{ padding: 0 5%; }
}
