/* ============ DAYO NIGERIA — SHARED STYLESHEET ============ */
/* Used across all pages. index.html has its own inline CSS for the hero. */

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

:root {
  --green-dark:   #1A4D2E;
  --green-mid:    #2A6B42;
  --green-sage:   #5C8B6E;
  --green-light:  #C0DD97;
  --gold:         #B8860B;
  --gold-light:   #D4A62A;
  --cream:        #FDF6EC;
  --cream-mid:    #F5EDD8;
  --white:        #FAFAF7;
  --gray-dark:    #1C1C1C;
  --gray-mid:     #444444;
  --gray-light:   #888888;
  --gray-faint:   #CCCCCC;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Montserrat', sans-serif;
  --transition:   cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--gray-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }
h4, h5, h6 { font-family: var(--font-sans); font-weight: 500; }

.display-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============ NAVIGATION ============ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--green-dark);
  box-shadow: 0 2px 40px rgba(0,0,0,0.2);
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-brand span { color: var(--green-light); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--green-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ============ PAGE HERO ============ */
.page-hero {
  background: var(--green-dark);
  padding: 140px 5% 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.page-hero-line {
  width: 32px;
  height: 1.5px;
  background: var(--gold);
}

.page-hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 800px;
}

.page-hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--green-light);
  max-width: 640px;
  line-height: 1.5;
}

/* ============ SECTIONS ============ */
section { position: relative; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5%;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.section-label-line {
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-headline em { font-style: italic; color: var(--green-sage); }

.section-body {
  font-size: 1rem;
  color: var(--gray-mid);
  line-height: 1.85;
  max-width: 720px;
}

.section-body p { margin-bottom: 1.25rem; }
.section-body p:last-child { margin-bottom: 0; }

/* ============ UTILITIES ============ */
.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.green-bg { background: var(--green-dark); }
.cream-bg { background: var(--cream); }
.white-bg { background: var(--white); }

.text-white { color: var(--white); }
.text-sage { color: var(--green-light); }
.text-gold { color: var(--gold); }
.text-green { color: var(--green-dark); }

/* ============ BUTTONS & CTAS ============ */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 14px 24px;
  text-decoration: none;
  transition: all 0.25s var(--transition);
  border: none;
  cursor: pointer;
}

.cta-primary:hover { background: var(--white); transform: translateY(-2px); }

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
  padding: 13px 24px;
  text-decoration: none;
  transition: all 0.25s var(--transition);
  background: none;
  cursor: pointer;
}

.cta-secondary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 13px 24px;
  text-decoration: none;
  transition: all 0.25s;
}

.cta-ghost:hover { border-color: var(--green-light); color: var(--green-light); }

.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s, gap 0.2s;
}

.text-cta:hover { color: var(--gold); gap: 14px; }

.text-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.text-cta-white:hover { gap: 14px; color: var(--gold); }

/* ============ FORMS ============ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--gray-dark);
  background: var(--white);
  border: 1.5px solid rgba(26,77,46,0.2);
  padding: 12px 16px;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--green-dark); }

.form-textarea { resize: vertical; min-height: 120px; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231A4D2E' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-note {
  font-size: 0.75rem;
  color: var(--gray-light);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ============ QUOTE BLOCKS ============ */
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--green-dark);
  line-height: 1.45;
  font-style: italic;
}

.quote-attr {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.75rem;
}

/* ============ PRESS CARDS ============ */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(26,77,46,0.1);
}

.press-card {
  background: var(--white);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background 0.25s;
  border-bottom: 2px solid transparent;
}

.press-card:hover {
  background: var(--cream);
  border-bottom-color: var(--gold);
}

.press-platform {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.press-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--green-dark);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.press-desc {
  font-size: 0.8rem;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.press-link {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-sage);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============ TIMELINE ============ */
.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 1.5px solid rgba(26,77,46,0.15);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline-year {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.timeline-text {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ FOOTER ============ */
footer {
  background: var(--green-dark);
  padding: 3rem 5%;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-brand-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-nav-title {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-links a:hover { color: var(--green-light); }

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-social a {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--green-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-scripture {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255,255,255,0.4);
}

.footer-copyright {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

.arrow-right {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--green-dark);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1rem; }
  .nav-toggle { display: flex; z-index: 101; }
}
