/* ─── SHARED STYLES — Who Is Jesus Book Ministry ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0d1b2e;
  --navy-mid: #162840;
  --navy-light: #1e3a5f;
  --gold: #c9943a;
  --gold-light: #e8b86d;
  --gold-pale: #f5e6c8;
  --cream: #faf6ef;
  --warm-white: #fffdf9;
  --text-dark: #1a1209;
  --text-mid: #3d2f1a;
  --text-light: #7a6a50;
  --red-urgent: #8b1a1a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 27, 46, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 148, 58, 0.25);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  text-decoration: none;
  font-weight: 600;
}

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

.nav-links a {
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

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

.nav-donate-btn {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-donate-btn:hover { background: var(--gold-light) !important; }

/* PAGE HERO */
.page-hero {
  background: var(--navy);
  padding: 8rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,148,58,0.1) 0%, transparent 70%);
}

.page-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.page-hero .section-label { color: var(--gold); margin-bottom: 1rem; display: block; }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero h1 em { font-style: italic; color: var(--gold-light); }

.page-hero p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* SECTIONS */
section { padding: 5rem 2rem; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-family: 'Crimson Pro', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--gold); }

/* BUTTONS */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 2.5rem;
  font-family: 'Crimson Pro', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-navy {
  background: var(--navy);
  color: var(--warm-white);
  padding: 1rem 2.5rem;
  font-family: 'Crimson Pro', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

/* FOOTER */
footer {
  background: #080f18;
  padding: 4rem 2rem 2rem;
  color: rgba(255,255,255,0.4);
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.footer-brand-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: 'Crimson Pro', serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

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

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; }
}
