@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --indigo-deep: #05130D;   /* near-black, deepest panel background */
  --indigo: #0B3D24;        /* dark green, primary brand color */
  --purple: #145C36;        /* mid green, secondary/hover shade */
  --red: #1F7A45;           /* kept variable name for structure; now accent green for CTAs */
  --red-dark: #0F4A29;
  --gold: #F2C94C;          /* the "little bit of yellow" accent */
  --ink: #10140F;           /* near-black text */
  --paper: #F7FAF7;
  --paper-dim: #E9F1EA;
  --white: #FFFFFF;
  --muted: #55605A;

  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 20px 50px -20px rgba(5, 19, 13, 0.4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.15; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--gold); display: inline-block; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; border: none;
  font-family: var(--font-display); font-weight: 700; font-size: 14.5px;
  letter-spacing: 0.01em; transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 12px 24px -10px rgba(230, 57, 70, 0.6); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.08); color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.btn-dark { background: var(--indigo); color: var(--white); }
.btn-dark:hover { background: var(--indigo-deep); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--indigo-deep);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; color: var(--white); font-size: 19px; }
.brand-mark { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, var(--gold), var(--red)); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.8); font-weight: 600; font-size: 14.5px; transition: color 0.15s; }
.nav-links a:hover { color: var(--white); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 22px; }
.header-actions .btn-ghost{background-color: blue; font-weight: bolder; font-size: 1rem;}
/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--indigo) 0%, var(--indigo-deep) 60%, var(--purple) 130%);
  padding: 76px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
  padding-bottom: 90px;
}
.hero-copy h1 {
  font-size: clamp(34px, 4.4vw, 54px); color: var(--white); font-weight: 800; margin: 18px 0 20px;
}
.hero-copy h1 span { color: var(--gold); }
.hero-copy p { color: rgba(255,255,255,0.78); font-size: 17px; line-height: 1.7; max-width: 480px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: var(--font-display); font-size: 26px; color: var(--white); }
.hero-stats div span { color: rgba(255,255,255,0.6); font-size: 13px; }

/* hero visual: main slideshow image + tucked secondary image */
.hero-visual { position: relative; }
.hero-visual-inner { position: relative; width: 100%; max-width: 420px; margin-left: auto; }
.slideshow {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 5; box-shadow: var(--shadow-card);
  background: var(--indigo);
}
.slideshow img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.9s ease;
}
.slideshow img.active { opacity: 1; }
.slide-quote {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 24px 24px;
  background: linear-gradient(0deg, rgba(20,12,58,0.92) 10%, rgba(20,12,58,0.55) 60%, transparent 100%);
  color: var(--white);
}
.slide-quote blockquote {
  margin: 0 0 10px; font-family: var(--font-display); font-size: 17px; font-weight: 600; line-height: 1.4;
  opacity: 0; transform: translateY(10px); transition: opacity 0.5s ease, transform 0.5s ease;
}
.slide-quote blockquote.active { opacity: 1; transform: translateY(0); }
.slide-quote cite { font-size: 12.5px; color: var(--gold); font-style: normal; font-weight: 600; letter-spacing: 0.02em; }
.slide-dots { position: absolute; top: 18px; right: 18px; display: flex; gap: 6px; z-index: 2; }
.slide-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,0.4); padding: 0;
  transition: background 0.2s, width 0.2s;
}
.slide-dots button.active { background: var(--gold); width: 22px; border-radius: 5px; }

.hero-visual-secondary {
  position: absolute; left: -140px; bottom: -34px; width: 150px; z-index: 3;
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card);
  border: 4px solid var(--indigo-deep);
}
.hero-visual-badge {
  position: absolute; top: -22px; right: -18px; z-index: 3;
  background: var(--white); border-radius: var(--radius-sm); padding: 12px 16px;
  box-shadow: var(--shadow-card); display: flex; align-items: center; gap: 10px;
}
.hero-visual-badge .dot { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--red)); flex-shrink: 0; }
.hero-visual-badge strong { display: block; font-family: var(--font-display); font-size: 15px; }
.hero-visual-badge span { font-size: 11.5px; color: var(--muted); }
@media (max-width: 689px) {
  .hero-visual-secondary{display: none;}
}

/* ---------- Action cards row ---------- */
.action-cards {
  transform: translateY(-56px);
  margin-bottom: -30px;
}
.action-cards .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.action-card {
  border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 14px;
}
.action-card .icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.action-card h3 { font-size: 18px; }
.action-card p { margin: 0; font-size: 14px; line-height: 1.6; color: inherit; opacity: 0.85; }
.action-card.card-a { background: var(--white); color: var(--ink); }
.action-card.card-a .icon { background: var(--paper-dim); }
.action-card.card-b { background: var(--indigo); color: var(--white); }
.action-card.card-b .icon { background: rgba(255,255,255,0.12); }
.action-card.card-c { background: var(--red); color: var(--white); }
.action-card.card-c .icon { background: rgba(255,255,255,0.18); }
.action-card .btn { align-self: flex-start; margin-top: 6px; padding: 10px 20px; font-size: 13px; }

/* ---------- Section shell (shared "trend") ---------- */
.section { padding: 110px 0 90px; }
.section-tight { padding-top: 60px; }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(28px, 3.2vw, 38px); margin: 14px 0 16px; }
.section-head p { color: var(--muted); font-size: 16px; line-height: 1.7; }
.section-alt { background: var(--paper-dim); }

/* ---------- About / feature split (mirrors action-card trend: colored panel + white panel) ---------- */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; /*align-items: center;*/ } 
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg);box-shadow: var(--shadow-card); }
/* .split-media .project-image1{height: 90vh;} */
.split-media .smaller{width: 80%;}
.split-media .stat-chip {
  position: absolute; bottom: -24px; left: -24px; background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card); padding: 16px 20px; display: flex; align-items: center; gap: 12px;
}
.split-media .stat-chip strong { display: block; font-family: var(--font-display); font-size: 22px; color: var(--red); }
.split-media .stat-chip span { font-size: 12px; color: var(--muted); }
.pillars { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 32px; }
.pillar { display: flex; gap: 14px; align-items: flex-start; }
.pillar .check {
  width: 26px; height: 26px; border-radius: 50%; background: var(--indigo); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; margin-top: 2px;
}
.pillar h4 { font-size: 15.5px; margin-bottom: 4px; }
.pillar p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---------- Tabbed priorities section ---------- */
.tabs-shell {
  background: var(--indigo-deep); border-radius: var(--radius-lg); padding: 56px;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; color: var(--white); align-items: center;
}
.tab-list { display: flex; flex-direction: column; gap: 10px; }
.tab-btn {
  text-align: left; background: transparent; border: 1.5px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.75);
  padding: 16px 20px; border-radius: var(--radius-sm); font-family: var(--font-display); font-weight: 700; font-size: 15px;
  transition: all 0.2s ease; display: flex; align-items: center; justify-content: space-between;
}
.tab-btn span.num { font-family: var(--font-body); font-weight: 600; font-size: 12px; opacity: 0.6; }
.tab-btn.active { background: var(--red); color: var(--white); border-color: transparent; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadein 0.4s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: translateY(0);} }
.tab-panel h3 { font-size: 24px; margin-bottom: 14px; }
.tab-panel p { color: rgba(255,255,255,0.75); line-height: 1.75; font-size: 15.5px; margin-bottom: 20px; }
.tab-panel ul { display: flex; flex-direction: column; gap: 10px; }
.tab-panel li { font-size: 14.5px; color: rgba(255,255,255,0.85); display: flex; gap: 10px; }
.tab-panel li::before { content: '—'; color: var(--gold); }

/* ---------- Vision & Mission ---------- */
.vm-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.vm-card {
  border-radius: var(--radius-lg); padding: 36px; color: var(--white);
  display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow-card);
}
.vm-card.vm-vision { background: linear-gradient(150deg, var(--indigo) 0%, var(--indigo-deep) 100%); }
.vm-card.vm-mission { background: linear-gradient(150deg, var(--red) 0%, var(--red-dark) 100%); }
.vm-card .icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.vm-card h3 { font-size: 20px; }
.vm-card p { margin: 0; font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.85); }

/* ---------- Timeline (professional journey) ---------- */
.timeline { display: flex; flex-direction: column; gap: 22px; margin: 28px 0 32px; }
.timeline-item { display: flex; gap: 18px; align-items: flex-start; }
.timeline-item .year {
  flex-shrink: 0; min-width: 84px; font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: var(--white); background: var(--indigo); border-radius: 999px; padding: 6px 12px; text-align: center;
}
.timeline-item h4 { font-size: 15.5px; margin-bottom: 4px; }
.timeline-item p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---------- Pull quote (leadership call) ---------- */
.pull-quote {
  border-left: 4px solid var(--gold); padding: 4px 0 4px 22px; margin: 26px 0 32px;
}
.pull-quote p { font-family: var(--font-display); font-size: 19px; font-weight: 600; line-height: 1.5; color: var(--ink); margin: 0 0 8px; }
.pull-quote cite { font-size: 13px; color: var(--muted); font-style: normal; }

/* ---------- Goal chips (Nigerian Dream Project) ---------- */
.goal-chips { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 32px; }
.goal-chip { background: var(--paper-dim); border-radius: var(--radius-sm); padding: 14px 18px; min-width: 140px; }
.goal-chip strong { display: block; font-family: var(--font-display); font-size: 20px; color: var(--red); }
.goal-chip span { font-size: 12.5px; color: var(--muted); }

/* ---------- Interior page banner (platform.html, journey.html) ---------- */
.page-banner {
  background: linear-gradient(160deg, var(--indigo) 0%, var(--indigo-deep) 60%, var(--purple) 130%);
  padding: 64px 0 70px;
}
.page-banner .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; }
.page-banner .back-link {
  display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.65);
  font-size: 13.5px; font-weight: 600; margin-bottom: 18px;
}
.page-banner .back-link:hover { color: var(--white); }
.page-banner h1 { font-size: clamp(28px, 3.6vw, 42px); color: var(--white); font-weight: 800; margin: 6px 0 16px; }
.page-banner p { color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.7; max-width: 480px; }
.page-banner .banner-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }

@media (max-width: 980px) {
  .page-banner .container { grid-template-columns: 1fr; }
}

/* ---------- Testimonials / involvement ---------- */
.involve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.involve-card { background: var(--white); border-radius: var(--radius-md); padding: 30px; box-shadow: var(--shadow-card); }
.involve-card .icon { width: 46px; height: 46px; border-radius: 12px; background: var(--paper-dim); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 18px; }
.involve-card h3 { font-size: 17px; margin-bottom: 10px; }
.involve-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0 0 16px; }

/* ---------- Contact ---------- */
.contact-shell { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; }
.contact-info { background: var(--indigo); color: var(--white); border-radius: var(--radius-lg); padding: 40px; }
.contact-info h3 { font-size: 22px; margin-bottom: 14px; }
.contact-info p { color: rgba(255,255,255,0.75); font-size: 14.5px; line-height: 1.7; margin-bottom: 26px; }
.contact-info-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.contact-info-item .ic { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item strong { display: block; font-size: 13.5px; }
.contact-info-item span { font-size: 13px; color: rgba(255,255,255,0.65); }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm); border: 1.5px solid #E3DFF3;
  font-family: var(--font-body); font-size: 14.5px; color: var(--ink); background: var(--paper);
  transition: border-color 0.15s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--purple); }
.field textarea { resize: vertical; min-height: 120px; }
.form-msg { margin-top: 14px; font-size: 14px; font-weight: 600; border-radius: var(--radius-sm); padding: 12px 16px; display: none; }
.form-msg.success { display: block; background: #E7F6EC; color: #1E7A3B; }
.form-msg.error { display: block; background: #FDEBEC; color: var(--red-dark); }

/* ---------- Footer ---------- */
.site-footer { background: var(--indigo-deep); color: rgba(255,255,255,0.7); padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-grid h4 { color: var(--white); font-size: 14.5px; margin-bottom: 16px; }
.footer-grid li { margin-bottom: 10px; font-size: 13.5px; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; display: flex; justify-content: space-between; font-size: 12.5px; flex-wrap: wrap; gap: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; margin-top: 13%; }
  .split-media .smaller{width: 100%;}
  .hero-visual-inner { margin: 0 auto; }
  .action-cards .container { grid-template-columns: 1fr; }
  .split, .contact-shell, .involve-grid, .footer-grid, .vm-grid { grid-template-columns: 1fr; }
  .tabs-shell { grid-template-columns: 1fr; padding: 32px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .site-header { position: fixed; width: 100%; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--indigo-deep);
    padding: 10px 24px 20px;
    box-shadow: var(--shadow-card);
    z-index: 50;
  }
  .nav-links.open a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open a:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
}

/* ================= YOUTUBE VIDEO GRID ================= */
.video-block { margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(11,61,36,0.12); }
.video-block h3 { font-size: 26px; margin: 6px 0 10px; }
.video-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 26px;
}
.video-card {
  border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow-card); background: var(--white);
  border: 1px solid rgba(11,61,36,0.08);
}
.video-thumb { position: relative; aspect-ratio: 16/9; background: var(--indigo-deep); overflow: hidden; }
.video-thumb iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-loading, .video-error {
  grid-column: 1 / -1; color: var(--muted); font-size: 14.5px; padding: 20px 0;
}

@media (max-width: 860px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ================= DONATE ================= */
.donate-card {
  max-width: 460px; margin: 0 auto; background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); padding: 30px 32px; border: 1px solid rgba(11,61,36,0.08);
}
.donate-card-row {
  display: flex; align-items: center; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid rgba(11,61,36,0.08);
}
.donate-card-row:last-of-type { border-bottom: none; }
.donate-card-row .ic { font-size: 20px; width: 30px; text-align: center; flex-shrink: 0; }
.donate-card-row strong { display: block; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.donate-card-row span { font-size: 16px; font-weight: 600; }
.donate-note { font-size: 13px; color: var(--muted); line-height: 1.6; margin-top: 18px; }
