/* ===== Hajia Rabi Salifu — rabisalifu.com ===== */
:root {
  --blue-950: #071B4E;
  --blue-900: #0C2D77;
  --blue-800: #10399A;
  --blue-700: #1746B8;
  --blue-tint: #EDF2FC;
  --red: #DC2626;
  --red-dark: #B91C1C;
  --red-tint: #FDECEC;
  --red-light: #FCA5A5;
  --gold: #FCA5A5; /* legacy accent var — now a light red shade */
  --ink: #16223B;
  --muted: #5F6A80;
  --line: #E7EAF1;
  --white: #FFFFFF;
  --r-lg: 22px;
  --r-md: 12px;
  --shadow-sm: none;
  --shadow-md: none;
  --font: "Manrope", "Segoe UI", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em, i, blockquote { font-style: normal; }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; gap: 24px;
}
.brand { display: block; line-height: 1.25; }
.brand-name {
  display: block; font-weight: 800; font-size: 1.06rem;
  color: var(--blue-900); letter-spacing: -0.01em;
}
.brand-tag {
  display: block; font-size: 0.56rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); font-weight: 700; margin-top: 1px;
}
.main-nav { display: flex; gap: 30px; align-items: center; }
.main-nav a {
  font-size: 0.86rem; font-weight: 600; color: #46516a;
  padding: 4px 0; position: relative;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 2px; background: var(--red); border-radius: 2px;
  transition: width .22s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--blue-900); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 0.86rem;
  padding: 13px 26px; border-radius: 10px; letter-spacing: 0.01em;
  transition: all .18s ease; border: 1.5px solid transparent; cursor: pointer;
  font-family: var(--font);
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-black { background: #111318; color: var(--white); }
.btn-black:hover { background: #2A2E38; transform: translateY(-1px); }
.btn-blue { background: var(--blue-900); color: var(--white); }
.btn-blue:hover { background: var(--blue-800); transform: translateY(-1px); }
.btn-outline { border-color: #cfd7e6; color: var(--blue-900); background: var(--white); }
.btn-outline:hover { border-color: var(--blue-900); }
.btn-outline-light { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.9); }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 96px; }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 72px; align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red); background: var(--red-tint);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 28px;
}
.hero-copy h1 {
  font-size: clamp(2.5rem, 4.8vw, 3.9rem);
  font-weight: 800; line-height: 1.06; letter-spacing: -0.03em;
  color: var(--blue-900);
}
.hero-copy h1 span { color: var(--red); }
.hero-sub {
  margin-top: 26px; color: var(--muted); font-size: 1.02rem; max-width: 46ch; line-height: 1.8;
}
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-role {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px;
  font-size: 0.8rem; font-weight: 600; color: var(--muted);
}
.hero-role .role-mark {
  width: 42px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, #CE1126 0 33%, #FCD116 33% 66%, #006B3F 66%);
}
.hero-role b { color: var(--blue-900); font-weight: 800; }

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; aspect-ratio: 1 / 1.04; object-fit: cover; object-position: center 12%;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.hero-badge {
  position: absolute; left: 26px; bottom: 26px;
  background: var(--white); border-radius: var(--r-md);
  padding: 14px 20px; border: 1px solid var(--line);
  border-left: 4px solid var(--red);
}
.hero-badge b { display: block; color: var(--blue-900); font-size: 0.86rem; font-weight: 800; }
.hero-badge span { font-size: 0.72rem; color: var(--muted); font-weight: 600; }

/* ---------- Section scaffolding ---------- */
section { padding: 96px 0; }
.section-divider { border: 0; border-top: 1px solid var(--line); }
.section-kicker {
  display: inline-block; color: var(--red); font-size: 0.66rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.28em; margin-bottom: 14px;
}
.section-title {
  color: var(--blue-900); font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800; line-height: 1.16; letter-spacing: -0.02em;
}
.section-sub { margin-top: 16px; color: var(--muted); font-size: 0.96rem; max-width: 54ch; }

/* ---------- Stands (pillars) ---------- */
.stands-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: start;
}
.stands-intro p { margin-top: 18px; color: var(--muted); font-size: 0.95rem; max-width: 40ch; }
.stands-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; }
.stand {
  padding: 30px 0 34px; border-top: 2px solid var(--line);
  transition: border-color .25s ease;
}
.stand:hover { border-top-color: var(--red); }
.stand-num {
  font-size: 0.72rem; font-weight: 800; color: var(--red); letter-spacing: 0.16em;
}
.stand h3 { margin-top: 12px; font-size: 1.12rem; font-weight: 800; color: var(--blue-900); }
.stand p { margin-top: 8px; font-size: 0.88rem; color: var(--muted); }

/* ---------- About ---------- */
.about-grid {
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  gap: 80px; align-items: center;
}
.about-text p { margin: 18px 0 0; color: #424d64; font-size: 0.97rem; }
.about-text p strong { color: var(--blue-900); font-weight: 800; }
.about-quote {
  margin: 26px 0 0; padding: 18px 24px;
  background: var(--blue-tint); border-left: 4px solid var(--blue-900);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 1rem; font-weight: 700; color: var(--blue-900);
}
.about-facts { margin-top: 30px; display: grid; grid-template-columns: 1fr; gap: 0; }
.fact {
  display: grid; grid-template-columns: 150px 1fr; gap: 20px; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  font-size: 0.92rem; color: #424d64; font-weight: 600;
}
.fact b {
  color: var(--muted); font-weight: 800;
  font-size: 0.64rem; text-transform: uppercase; letter-spacing: .22em;
}
.about-photo img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow-md);
}

/* ---------- Journey ---------- */
.journey-list { margin-top: 60px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 40px; }
.jstep { position: relative; padding-top: 30px; }
.jstep::before {
  content: ""; position: absolute; top: 0; left: 0; right: -40px; height: 2px; background: var(--line);
}
.jstep:last-child::before { right: 0; }
.jstep::after {
  content: ""; position: absolute; top: -5px; left: 0;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--red);
}
.jstep-year {
  font-size: 0.68rem; font-weight: 800; color: var(--red);
  text-transform: uppercase; letter-spacing: 0.18em;
}
.jstep h3 { margin-top: 10px; color: var(--blue-900); font-size: 1rem; font-weight: 800; line-height: 1.35; }
.jstep p { margin-top: 8px; color: var(--muted); font-size: 0.82rem; }

/* ---------- News ---------- */
.news-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.news-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.news-card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-5px); border-color: var(--blue-700); }
.news-thumb { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.news-thumb-navy {
  aspect-ratio: 16/9;
  background: var(--blue-900);
  display: grid; place-items: center;
}
.news-thumb-navy span {
  color: #b9cdf5; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.3em; text-transform: uppercase;
}
.news-body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-date {
  color: var(--red); font-size: 0.64rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
}
.news-body h3 { color: var(--blue-900); font-size: 1.04rem; font-weight: 800; line-height: 1.4; }
.news-body p { color: var(--muted); font-size: 0.86rem; flex: 1; }
.news-more { color: var(--red); font-weight: 800; font-size: 0.8rem; }
.news-more:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Videos ---------- */
.video-grid { margin-top: 52px; }
.video-thumb { position: relative; cursor: pointer; aspect-ratio: 16/9; background: var(--blue-950); overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.video-thumb:hover img { transform: scale(1.04); }
.play-badge { position: absolute; inset: 0; display: grid; place-items: center; }
.play-badge span {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(7, 27, 78, 0.55); backdrop-filter: blur(4px);
  border: 2px solid var(--white);
  display: grid; place-items: center; color: var(--white);
  transition: all .2s ease;
}
.play-badge svg { width: 19px; height: 19px; margin-left: 3px; }
.video-thumb:hover .play-badge span { background: var(--red); border-color: var(--red); transform: scale(1.06); }
.video-channel {
  color: var(--blue-700); font-size: 0.62rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  margin-top: 52px; display: grid; gap: 22px;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  grid-template-areas: "a b c" "a d d";
}
.gallery-grid figure { border-radius: var(--r-lg); overflow: hidden; position: relative; border: 1px solid var(--line); }
.g-a { grid-area: a; } .g-b { grid-area: b; } .g-c { grid-area: c; } .g-d { grid-area: d; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform .35s ease; }
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(255, 255, 255, 0.94); color: var(--blue-900);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.02em;
  padding: 8px 14px; border-radius: 8px;
}

/* ---------- Get involved ---------- */
.involve {
  background: var(--blue-950);
  color: var(--white); border-radius: 0;
}
.involve-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center; }
.involve .section-kicker { color: #ffb3c0; }
.involve h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem); font-weight: 800; line-height: 1.2; color: var(--white);
  letter-spacing: -0.02em;
}
.involve p { color: #b6c6ec; margin-top: 16px; font-size: 0.95rem; max-width: 50ch; }
.subscribe-form {
  display: flex; gap: 10px; background: var(--white); border-radius: 14px; padding: 8px;
}
.subscribe-form input {
  flex: 1; border: 0; outline: none; padding: 12px 18px; background: transparent;
  font-family: var(--font); font-size: 0.9rem; color: var(--ink); min-width: 0; font-weight: 600;
}
.subscribe-form button { border: 0; white-space: nowrap; }
.involve-note { margin-top: 16px; font-size: .8rem; color: #8ea3d6; font-weight: 600; }
.involve-note a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-950); color: #93a6d4; font-size: 0.85rem; }
.footer-inner {
  display: grid; grid-template-columns: 1.3fr 0.7fr 1fr; gap: 48px; padding: 68px 0 46px;
}
.footer-inner h4 {
  color: var(--white); font-size: 0.68rem;
  letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 18px; font-weight: 800;
}
.footer-inner .brand-name { color: var(--white); }
.footer-inner .brand-tag { color: #ff9fae; }
.footer-links { display: grid; gap: 10px; font-weight: 600; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 0.76rem; color: #6d82b8; font-weight: 600;
}
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.16);
  display: grid; place-items: center; color: #c9d6f2; transition: all .2s ease;
}
.socials a svg { width: 16px; height: 16px; }
.socials a:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* ---------- Article pages ---------- */
.article-hero {
  background: var(--blue-950);
  color: var(--white); padding: 76px 0 60px;
}
.article-hero .crumb {
  font-size: 0.66rem; color: #9fb4e4; letter-spacing: .28em; text-transform: uppercase; font-weight: 800;
}
.article-hero h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800;
  line-height: 1.18; margin-top: 18px; max-width: 30ch; letter-spacing: -0.02em;
}
.article-hero .meta { margin-top: 18px; color: #93a6d4; font-size: 0.84rem; font-weight: 600; }
.article-body { padding: 64px 0 90px; }
.article-body .prose { max-width: 720px; margin: 0 auto; }
.article-body img.article-img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); margin: 0 auto 44px; }
.prose p { margin: 0 0 22px; color: #38425a; font-size: 1rem; line-height: 1.85; }
.prose h2 {
  color: var(--blue-900); font-size: 1.35rem; font-weight: 800; margin: 40px 0 16px; letter-spacing: -0.01em;
}
.prose blockquote {
  border-left: 4px solid var(--blue-900); background: var(--blue-tint);
  padding: 22px 28px; margin: 30px 0; border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--blue-900); font-weight: 700; font-size: 1.02rem; line-height: 1.7;
}
.prose .source-note {
  margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: 0.78rem; color: var(--muted);
}
.back-link { display: inline-block; margin-top: 34px; color: var(--red); font-weight: 800; font-size: 0.86rem; }
.back-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  section { padding: 72px 0; }
  .hero { padding: 40px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; width: 100%; }
  .hero-role { justify-content: center; width: 100%; }
  .hero-photo { order: -1; width: 100%; max-width: 480px; margin: 0 auto; }
  .stands-grid, .about-grid, .involve-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { order: -1; max-width: 560px; }
  .journey-list { grid-template-columns: 1fr; gap: 0; }
  .jstep { padding: 24px 0 24px 34px; }
  .jstep::before { top: 0; bottom: 0; left: 5px; right: auto; width: 2px; height: auto; }
  .jstep::after { top: 28px; left: 0; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px 240px;
    grid-template-areas: "a a" "b c" "d d";
  }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
}
@media (max-width: 640px) {
  .hero { padding: 28px 0 56px; }
  .hero-eyebrow { margin-bottom: 20px; }
  .hero-copy h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero-sub { font-size: 0.94rem; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { flex: 1 1 45%; }
  .hero-role { flex-direction: column; gap: 10px; text-align: center; }
  .hero-photo { max-width: 100%; }
  .hero-badge { left: 12px; bottom: 12px; right: 12px; padding: 10px 14px; }
  .stands-items, .news-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 240px); grid-template-areas: "a" "b" "c" "d"; }
  .footer-inner { grid-template-columns: 1fr; }
  .subscribe-form { flex-direction: column; }
  .fact { grid-template-columns: 1fr; gap: 4px; }
}
