/* ═══════════════════════════════════════════
   ANANSI'S WEB — Shared Stylesheet
   Mama Asaasee · The Nkrabea Library
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Oswald:wght@300;400;600;700&display=swap');

:root {
  --gold:       #C4880A;
  --bright-gold:#D4A017;
  --earth-red:  #8B2500;
  --deep-brown: #2A1500;
  --warm-black: #1A0800;
  --cream:      #2C1A08;
  --sand:       #7A4E1A;
  --green-life: #2D5016;
  --copper:     #B87333;
  --web-line:   rgba(180,120,20,0.35);
  --bg:         #F2E8D5;
  --bg-card:    #EDE0C4;
  --bg-dark:    #E4D5B0;
  --text-main:  #1A0800;
  --text-soft:  #5C3A1A;
  --text-muted: #8A6030;
  --border:     rgba(180,120,20,0.25);
}

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

body {
  background: var(--bg);
  color: var(--text-main);
  font-family: 'Libre Baskerville', Georgia, serif;
  overflow-x: hidden;
  cursor: default;
}

/* ── KENTE STRIPE ── */
.kente-stripe {
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px,        var(--gold) 18px,
    var(--earth-red) 18px,  var(--earth-red) 36px,
    var(--green-life) 36px, var(--green-life) 54px,
    var(--deep-brown) 54px, var(--deep-brown) 72px
  );
}

/* ── NAV ── */
.site-nav {
  background: #6B2000;
  border-bottom: 2px solid rgba(212,160,23,0.3);
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 60px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-spider { font-size: 1.4rem; animation: spiderPulse 4s ease-in-out infinite; }
@keyframes spiderPulse {
  0%,100% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(212,160,23,0.3)); }
  50% { transform: scale(1.15); filter: drop-shadow(0 0 12px rgba(212,160,23,0.8)); }
}
.nav-brand-text { line-height: 1; }
.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 1px;
  display: block;
}
.nav-brand-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.7;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  height: 60px;
}
.nav-links a {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,237,214,0.55);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  height: 100%;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--cream); border-bottom-color: rgba(212,160,23,0.4); }
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }

.nav-links .nav-akoben a {
  color: #FF6B20;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255,107,32,0.4);
}
.nav-links .nav-akoben a:hover,
.nav-links .nav-akoben a.active {
  color: #FF8C40;
  border-bottom-color: #FF6B20;
  text-shadow: 0 0 12px rgba(255,107,32,0.6);
}

.nav-home-btn {
  background: var(--gold);
  color: var(--warm-black) !important;
  padding: 0 1.2rem !important;
  font-weight: 700 !important;
  border-bottom: none !important;
  clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
}
.nav-home-btn:hover { background: var(--bright-gold) !important; color: var(--warm-black) !important; }

/* ── FOOTER ── */
.site-footer {
  background: #2A1500;
  border-top: 1px solid rgba(196,136,10,0.2);
  padding: 3.5rem 2.5rem 1.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--bright-gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  text-decoration: none;
}
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(245,237,214,0.55);
  line-height: 1.7;
}
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bright-gold);
  margin-bottom: 0.85rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a {
  font-size: 0.82rem;
  color: rgba(245,237,214,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--bright-gold); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,237,214,0.25);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── SHARED PAGE HERO ── */
.page-hero {
  padding: 4rem 2.5rem 3rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(180,120,20,0.2);
  background: linear-gradient(135deg, rgba(139,37,0,0.08), rgba(196,136,10,0.06)), #EDE0C4;
}
.page-hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--earth-red);
  margin-bottom: 0.75rem;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: #1A0800;
  line-height: 0.95;
  margin-bottom: 1rem;
}
.page-hero-title em { color: var(--earth-red); font-style: italic; }
.page-hero-desc {
  font-size: 1rem;
  color: #5C3A1A;
  line-height: 1.8;
  max-width: 600px;
}
.kente-bar {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--earth-red), var(--bright-gold), var(--green-life));
  margin: 1rem 0;
  border-radius: 2px;
}

/* ── SHARED UTILITIES ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.section-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--earth-red);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #1A0800;
  line-height: 1.1;
}
.section-title em { color: var(--earth-red); font-style: italic; }
.section-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--earth-red), var(--bright-gold), var(--green-life));
  margin: 1rem 0 2.5rem;
  border-radius: 2px;
}

.btn-gold {
  display: inline-block;
  background: var(--earth-red);
  color: #F5EDD6;
  padding: 0.75rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  transition: background 0.2s, transform 0.2s;
}
.btn-gold:hover { background: #6B1A00; transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #1A0800;
  padding: 0.75rem 2rem;
  border: 1.5px solid rgba(139,37,0,0.4);
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--earth-red); color: var(--earth-red); }

/* ── NEWS TICKER ── */
.ticker-bar {
  background: var(--earth-red);
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.ticker-inner {
  display: inline-block;
  animation: ticker 45s linear infinite;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #F5EDD6;
}
.ticker-inner span { color: var(--bright-gold); margin: 0 2.5rem; }
@keyframes ticker { from { transform:translateX(100vw); } to { transform:translateX(-100%); } }

/* ── QUOTE BANNER ── */
.quote-banner {
  padding: 5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(139,37,0,0.9), rgba(42,21,0,0.95));
}
.quote-banner::before {
  content: '❝';
  position: absolute;
  font-size: 18rem;
  color: rgba(255,255,255,0.05);
  top: -2rem; left: 2rem;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem,2.5vw,1.7rem);
  font-style: italic;
  color: #F5EDD6;
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.quote-attr {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bright-gold);
  position: relative;
  z-index: 1;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(42,21,0,0.75);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #FDF6E8;
  border: 2px solid rgba(139,37,0,0.3);
  max-width: 580px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  animation: fadeUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(42,21,0,0.3);
}
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)} }
.modal-close {
  position: absolute;
  top: 1rem; right: 1.5rem;
  background: none; border: none;
  color: #8A6030; font-size: 1.3rem;
  cursor: pointer;
}
.modal-title { font-family:'Playfair Display',serif; font-size:1.6rem; color:#1A0800; margin-bottom:0.3rem; }
.modal-sub { font-family:'Oswald',sans-serif; font-size:0.65rem; letter-spacing:3px; text-transform:uppercase; color:var(--earth-red); margin-bottom:1.25rem; }
.modal-body { font-size:0.92rem; color:#5C3A1A; line-height:1.85; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .site-nav { padding: 0 1.25rem; }
}
