/* ============================================================
   styles.css — Combined Stylesheet
   Emanuel's Hope Baptist Church
   All CSS in one file so the SPA router always has every
   style available regardless of which page was loaded first.
   ============================================================ */


/* ────────────────────────────────────────────────────── */
/* GLOBAL.CSS                                           */
/* ────────────────────────────────────────────────────── */

/* ============================================================
   GLOBAL.CSS — Variables, Reset, Typography, Utilities
   Emanuel's Hope Baptist Church
   ============================================================ */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  /* Backgrounds */
  --bg:         #FAFAF8;
  --bg2:        #F3F0EB;
  --bg3:        #EDE9E1;

  /* Brand Colors */
  --navy:       #0D1F4E;
  --navy2:      #162A6A;
  --gold:       #C9A84C;
  --gold2:      #E8C97A;
  --gold-light: rgba(201, 168, 76, 0.12);

  /* Text */
  --text:       #1C1C2E;
  --text2:      #4A4A6A;
  --text3:      #8A8AAA;
  --white:      #FFFFFF;

  /* Shadows */
  --shadow:     0 4px 24px rgba(13, 31, 78, 0.10);
  --shadow-lg:  0 12px 48px rgba(13, 31, 78, 0.14);

  /* Transitions */
  --trans:      cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar        { width: 5px; }
::-webkit-scrollbar-track  { background: var(--bg2); }
::-webkit-scrollbar-thumb  { background: var(--gold); border-radius: 4px; }

/* ── PROGRESS BAR ── */
.progress-bar {
  position: fixed; top: 0; left: 0; z-index: 500;
  height: 3px;
  background: linear-gradient(to right, var(--navy), var(--gold));
  width: 0;
  transition: width 0.1s;
}

/* ── LAYOUT UTILITIES ── */
.section    { padding: 100px 4vw; }
.section-sm { padding: 70px 4vw; }
.inner      { max-width: 1320px; margin: 0 auto; }

/* ── SECTION LABELS ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  height: 1px;
  width: 28px;
  background: var(--gold);
}
.section-tag span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── SECTION TITLES ── */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text2);
  max-width: 600px;
}

/* ── ALIGNMENT ── */
.text-center { text-align: center; }
.text-center .section-body { margin: 0 auto; }
.text-center .section-tag  { justify-content: center; }

/* ── GOLD DIVIDER ── */
.gold-line {
  width: 56px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold2));
  margin: 20px 0;
}
.gold-line.center { margin: 20px auto; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--trans), transform 0.8s var(--trans);
}
.reveal.up { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  transition: all 0.3s;
}
.btn svg { transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 140px 4vw 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/general/footer-bg.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--white);
  position: relative; z-index: 1;
  margin-bottom: 14px;
}
.page-header p {
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative; z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative; z-index: 1;
  margin-top: 16px;
}
.breadcrumb span { font-size: 12px; color: rgba(255,255,255,0.5); }
.breadcrumb a    { font-size: 12px; color: rgba(255,255,255,0.7); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }

/* ── PAGE TRANSITION (used by router.js) ── */
main {
  transition: opacity 220ms ease;
}

/* ── RESPONSIVE BASE ── */
@media (max-width: 768px) {
  .section    { padding: 70px 5vw; }
  .section-sm { padding: 50px 5vw; }
}
@media (max-width: 480px) {
  .page-header { padding: 120px 5vw 60px; }
}


/* ────────────────────────────────────────────────────── */
/* NAV.CSS                                              */
/* ────────────────────────────────────────────────────── */

/* ============================================================
   NAV.CSS — Navigation & Mobile Menu
   ============================================================ */

nav {
  position: fixed; top: 3px; left: 0; right: 0; z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  height: 80px;
  background: rgba(250, 250, 248, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 2px 16px rgba(13, 31, 78, 0.07);
  transition: all 0.4s;
}
nav.scrolled {
  height: 68px;
  box-shadow: 0 4px 24px rgba(13, 31, 78, 0.1);
}

/* ── LOGO ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: contain;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text .nl1 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.nav-logo-text .nl2 {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── DESKTOP NAV LINKS ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: var(--text2);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  transition: color 0.3s, background 0.3s;
  position: relative;
  border-radius: 4px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--gold-light);
}
.nav-links a.active { color: var(--gold); background: rgba(201, 168, 76, 0.08); }

/* Give Now — CTA button */
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 0 !important;
  letter-spacing: 0.12em !important;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

/* ── HAMBURGER (mobile) ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
  border-radius: 2px;
}

/* ── MOBILE OVERLAY ── */
.mobile-overlay {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 190;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-overlay a {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--navy);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}
.mobile-overlay a:hover { color: var(--gold); border-color: var(--gold); }

.mob-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--navy);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
}


/* ────────────────────────────────────────────────────── */
/* FOOTER.CSS                                           */
/* ────────────────────────────────────────────────────── */

/* ============================================================
   FOOTER.CSS — Footer
   ============================================================ */

footer {
  background: url('../images/general/footer-bg.jpg') center/cover;
  position: relative;
}
footer::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8, 14, 38, 0.95);
}

.footer-top {
  position: relative; z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 4vw 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

/* ── BRAND COLUMN ── */
.footer-brand img  { height: 64px; margin-bottom: 20px; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  max-width: 260px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}
.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

/* ── LINK COLUMNS ── */
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--white); }

/* ── BOTTOM BAR ── */
.footer-bottom {
  position: relative; z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.25); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}


/* ────────────────────────────────────────────────────── */
/* HOME.CSS                                             */
/* ────────────────────────────────────────────────────── */

/* ============================================================
   HOME.CSS — Hero Slider, Welcome Video, Mission, Stats,
              About Preview, Sermons Preview, Newsletter
   ============================================================ */

/* ── HERO SLIDER ── */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; z-index: 2; }

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,31,78,0.82) 0%,
    rgba(13,31,78,0.45) 60%,
    rgba(13,31,78,0.15) 100%
  );
}

/* Slide Content */
.slide-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4vw;
  padding-top: 80px;
  max-width: 1320px;
  margin: 0 auto;
  left: 0; right: 0;
}
.slide-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s 0.3s, transform 0.8s 0.3s;
}
.slide.active .slide-eyebrow,
.slide.active .slide-h1,
.slide.active .slide-p,
.slide.active .slide-actions { opacity: 1; transform: translateY(0); }

.slide-eyebrow-line { width: 36px; height: 1px; background: var(--gold); }
.slide-eyebrow span {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold2);
}
.slide-h1 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 90px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s 0.5s, transform 0.9s 0.5s;
}
.slide-h1 em { font-style: italic; color: var(--gold2); }
.slide-p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s 0.7s, transform 0.8s 0.7s;
}
.slide-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s 0.9s, transform 0.8s 0.9s;
}

/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.slider-dot {
  width: 28px; height: 3px;
  background: rgba(255,255,255,0.35);
  border: none;
  transition: background 0.3s, width 0.3s;
}
.slider-dot.active { background: var(--gold); width: 48px; }

.slider-arrows {
  position: absolute;
  bottom: 28px; right: 4vw;
  z-index: 10;
  display: flex;
  gap: 8px;
}
.slider-arrow {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s;
}
.slider-arrow:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

.slider-counter {
  position: absolute;
  top: 50%; right: 4vw;
  transform: translateY(-50%);
  z-index: 10;
  text-align: right;
}
.slider-counter-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  color: rgba(255,255,255,0.15);
  line-height: 1;
}
.slider-counter-total { font-size: 11px; letter-spacing: 0.2em; color: rgba(255,255,255,0.3); }

/* ── WELCOME VIDEO SECTION ── */
.video-section {
  background: var(--navy);
  padding: 90px 4vw;
  position: relative;
  overflow: hidden;
}
.video-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/general/counter-bg.jpg') center/cover;
  opacity: 0.06;
}
.video-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 1;
}
.video-text .section-tag span        { color: var(--gold2); }
.video-text .section-tag::before,
.video-text .section-tag::after      { background: var(--gold); }
.video-text .section-title           { color: var(--white); }
.video-text p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}
.video-embed {
  position: relative;
  border: 3px solid rgba(201,168,76,0.3);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.video-embed iframe { display: block; width: 100%; aspect-ratio: 16/9; }
.video-embed::before {
  content: '';
  position: absolute; inset: -12px;
  border: 1px solid rgba(201,168,76,0.15);
  z-index: -1;
}

/* ── MISSION PILLARS ── */
.mission-section { background: var(--bg); padding: 100px 4vw; }
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.mission-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.1);
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.3s;
}
.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.35);
}
.mission-card-img {
  width: 100%; height: 220px;
  object-fit: cover;
  filter: saturate(0.9);
  transition: filter 0.5s, transform 0.5s;
}
.mission-card:hover .mission-card-img { filter: saturate(1.1); transform: scale(1.03); }
.mission-card-body  { padding: 32px 28px; }
.mission-card-num   { font-size: 10px; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.mission-card-title { font-family: var(--font-serif); font-size: 22px; font-weight: 500; color: var(--navy); margin-bottom: 12px; }
.mission-card-text  { font-size: 13px; line-height: 1.8; color: var(--text2); }
.mission-card-bar   { height: 3px; width: 40px; background: var(--gold); margin-top: 20px; transition: width 0.4s; }
.mission-card:hover .mission-card-bar { width: 80px; }

/* ── STATS SECTION ── */
.stats-section {
  background: url('../images/general/counter-bg.jpg') center/cover fixed;
  position: relative;
  padding: 100px 4vw;
}
.stats-section::before { position: absolute; inset: 0; background: rgba(13,31,78,0.88); content: ''; }

.stats-grid {
  position: relative; z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-card {
  text-align: center;
  padding: 52px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  transition: background 0.3s, border-color 0.3s;
}
.stat-card:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.35); }
.stat-num {
  font-family: var(--font-serif);
  font-size: 60px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.stat-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* ── ABOUT PREVIEW ── */
.about-home { background: var(--bg2); padding: 100px 4vw; }
.about-home-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; height: 480px; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 200px; height: 160px;
  object-fit: cover;
  border: 6px solid var(--bg2);
  box-shadow: var(--shadow-lg);
}
.about-tag {
  position: absolute;
  top: 28px; left: -28px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 24px;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.about-text p { font-size: 15px; line-height: 1.85; color: var(--text2); margin-bottom: 20px; }
.about-text .gold-line { margin: 20px 0; }

/* ── SERMONS PREVIEW ── */
.sermons-home { background: var(--bg); padding: 100px 4vw; }
.sermons-home .inner { max-width: 1320px; margin: 0 auto; }
.sermons-home-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

/* ── SERMON CARDS (shared) ── */
.sermon-card {
  background: var(--white);
  border: 1px solid var(--bg3);
  overflow: hidden;
  transition: box-shadow 0.4s, transform 0.4s;
}
.sermon-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.sermon-card-img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}
.sermon-card:hover .sermon-card-img { transform: scale(1.04); }
.sermon-card-body  { padding: 28px; }
.sermon-date   { font-size: 11px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 10px; }
.sermon-title  { font-family: var(--font-serif); font-size: 22px; font-weight: 500; color: var(--navy); margin-bottom: 12px; }
.sermon-text   { font-size: 13px; line-height: 1.7; color: var(--text2); margin-bottom: 20px; }
.sermon-pastor { font-size: 12px; color: var(--text3); }

.sermons-grid   { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

/* ── NEWSLETTER / AUDIO ── */
.audio-section {
  background: url('../images/general/audio-bg.jpg') center/cover;
  position: relative;
  padding: 80px 4vw;
}
.audio-section::before { position: absolute; inset: 0; background: rgba(13,31,78,0.9); content: ''; }
.audio-inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.audio-inner h2 { font-family: var(--font-serif); font-size: 36px; color: var(--white); margin-bottom: 16px; }
.audio-inner p  { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.audio-inner .section-tag { justify-content: center; }

.email-form { display: flex; max-width: 480px; margin: 0 auto; }
.email-form input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
}
.email-form input::placeholder { color: rgba(255,255,255,0.4); }
.email-form button {
  padding: 16px 28px;
  background: var(--gold);
  border: none;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.email-form button:hover { background: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .mission-grid   { grid-template-columns: 1fr; }
  .video-inner    { grid-template-columns: 1fr; gap: 48px; }
  .about-home-inner { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .sermons-grid   { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .slider-counter { display: none; }
  .sermons-home-header { flex-direction: column; gap: 24px; align-items: flex-start; }
}
@media (max-width: 480px) {
  .stats-grid     { grid-template-columns: 1fr 1fr; }
  .hero-slider    { height: 90vh; }
}


/* ────────────────────────────────────────────────────── */
/* ABOUT.CSS                                            */
/* ────────────────────────────────────────────────────── */

/* ============================================================
   ABOUT.CSS — About Story, History Photos, Timeline, Leadership
   ============================================================ */

/* ── ABOUT STORY ── */
.about-story { background: var(--bg); padding: 100px 4vw; }
.about-story-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ── HISTORY PHOTO STACK ── */
.about-img-side { position: relative; }
.about-img-primary {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.about-img-secondary-wrap { margin-top: 16px; position: relative; }
.about-img-secondary {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.about-est {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 18px 22px;
  text-align: center;
}
.about-est-year {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.about-est-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.about-img-caption {
  margin-top: 12px;
  padding: 14px 16px;
  background: var(--bg2);
  border-left: 3px solid var(--gold);
  font-size: 11px;
  color: var(--text2);
  line-height: 1.6;
  font-style: italic;
}

/* ── ABOUT TEXT CONTENT ── */
.about-content p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text2);
  margin-bottom: 20px;
}
.about-content .gold-line { margin: 20px 0; }

/* ── TIMELINE ── */
.timeline-section { background: var(--bg2); padding: 100px 4vw; }
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transform: translateX(-50%);
}
.tl-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  margin-bottom: 60px;
  align-items: start;
}
.tl-item:nth-child(odd)  .tl-left  { text-align: right; padding-right: 40px; }
.tl-item:nth-child(odd)  .tl-right { visibility: hidden; }
.tl-item:nth-child(even) .tl-left  { visibility: hidden; }
.tl-item:nth-child(even) .tl-right { padding-left: 40px; }

.tl-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg2);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.25);
  margin: 4px auto;
}
.tl-year  { font-family: var(--font-serif); font-size: 42px; font-weight: 400; color: rgba(201,168,76,0.25); line-height: 1; margin-bottom: 8px; }
.tl-title { font-family: var(--font-serif); font-size: 20px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.tl-text  { font-size: 13px; line-height: 1.8; color: var(--text2); }

/* ── LEADERSHIP / TEAM ── */
.leadership-section { background: var(--bg); padding: 100px 4vw; }
.lead-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.lead-card {
  background: var(--white);
  border: 1px solid var(--bg3);
  overflow: hidden;
  transition: box-shadow 0.4s, transform 0.4s;
  text-align: center;
}
.lead-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.lead-photo {
  width: 100%; height: 200px;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(0.2);
  transition: filter 0.4s, transform 0.4s;
}
.lead-card:hover .lead-photo { filter: grayscale(0); transform: scale(1.04); }

.lead-no-photo {
  width: 100%; height: 200px;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 52px;
  color: var(--gold);
}
.lead-body   { padding: 24px 20px; }
.lead-name   { font-family: var(--font-serif); font-size: 18px; color: var(--navy); margin-bottom: 4px; }
.lead-role   { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.lead-region { font-size: 12px; color: var(--text3); }

/* Featured card (Bishop M. Brooks) */
.lead-card.featured { grid-column: span 2; display: flex; text-align: left; }
.lead-card.featured .lead-photo {
  width: 260px;
  flex-shrink: 0;
  height: auto;
  object-position: top;
}
.lead-card.featured .lead-body { padding: 40px 32px; display: flex; flex-direction: column; justify-content: center; }
.lead-card.featured .lead-name { font-size: 26px; margin-bottom: 8px; }
.lead-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
  margin-top: 12px;
  margin-bottom: 20px;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .lead-grid { grid-template-columns: repeat(3, 1fr); }
  .lead-card.featured { grid-column: span 3; }
}
@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; }

  /* Timeline collapses to left-aligned single column */
  .timeline::before { left: 20px; }
  .tl-item { grid-template-columns: 40px 1fr; }
  .tl-item:nth-child(odd)  .tl-right { display: none !important; }
  .tl-item:nth-child(even) .tl-left  { display: none !important; }
  .tl-item:nth-child(odd)  .tl-left  { display: block !important; visibility: visible; grid-column: 2; padding-right: 0; text-align: left; padding-left: 20px; }
  .tl-item:nth-child(even) .tl-right { grid-column: 2; padding-left: 20px; }
  .tl-item > div:nth-child(2) { grid-column: 1; }

  .lead-grid { grid-template-columns: 1fr 1fr; }
  .lead-card.featured { grid-column: span 2; flex-direction: column; }
  .lead-card.featured .lead-photo { width: 100%; height: 220px; }
}
@media (max-width: 600px) {
  .lead-grid { grid-template-columns: 1fr; }
  .lead-card.featured { grid-column: span 1; }
}


/* ────────────────────────────────────────────────────── */
/* SERMONS.CSS                                          */
/* ────────────────────────────────────────────────────── */

/* ============================================================
   SERMONS.CSS — Sermons Page
   ============================================================ */
.sermons-section { background: var(--bg); padding: 100px 4vw; }
.sermons-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.sermons-video-wrap {
  margin-bottom: 80px;
  border: 3px solid rgba(201,168,76,0.2);
  box-shadow: var(--shadow-lg);
}
.sermons-video-wrap iframe { display: block; width: 100%; aspect-ratio: 16/9; }

@media (max-width: 1100px) { .sermons-full-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px)  { .sermons-full-grid { grid-template-columns: 1fr; } }


/* ────────────────────────────────────────────────────── */
/* EVENTS.CSS                                           */
/* ────────────────────────────────────────────────────── */

/* ============================================================
   EVENTS.CSS — Events Page
   ============================================================ */
.events-section { background: var(--bg); padding: 100px 4vw; }
.events-list { margin-top: 60px; display: flex; flex-direction: column; gap: 24px; }

.event-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  background: var(--white);
  border: 1px solid var(--bg3);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.event-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.event-date-box {
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  min-width: 120px;
}
.event-month { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.event-day   { font-family: var(--font-serif); font-size: 40px; font-weight: 400; line-height: 1; }

.event-body  { padding: 28px 32px; }
.event-title { font-family: var(--font-serif); font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.event-meta  { font-size: 12px; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 10px; }
.event-text  { font-size: 13px; line-height: 1.7; color: var(--text2); }
.event-cta   { padding: 24px 32px; display: flex; align-items: center; border-left: 1px solid var(--bg3); }

@media (max-width: 900px) {
  .event-item { grid-template-columns: 100px 1fr; }
  .event-cta  { display: none; }
}
@media (max-width: 500px) {
  .event-item { grid-template-columns: 80px 1fr; }
  .event-day  { font-size: 30px; }
}


/* ────────────────────────────────────────────────────── */
/* GIVE.CSS                                             */
/* ────────────────────────────────────────────────────── */

/* ============================================================
   GIVE.CSS — Give / Donate Page
   ============================================================ */
.give-section { background: var(--bg); padding: 100px 4vw; }
.give-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.give-text p { font-size: 15px; line-height: 1.9; color: var(--text2); margin-bottom: 32px; }
.give-text .gold-line { margin: 20px 0; }

.give-verse {
  background: var(--navy);
  color: var(--white);
  padding: 40px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.give-verse::before {
  content: '"';
  position: absolute; top: -20px; left: 16px;
  font-family: var(--font-serif);
  font-size: 160px;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  font-style: italic;
}
.give-verse blockquote {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.give-verse cite { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

.give-options { display: flex; flex-direction: column; gap: 16px; }
.give-option {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--bg3);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.give-option:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.give-option-icon  { font-size: 28px; flex-shrink: 0; }
.give-option-title { font-family: var(--font-serif); font-size: 18px; color: var(--navy); margin-bottom: 4px; }
.give-option-text  { font-size: 12px; color: var(--text2); }

.give-scripture-box {
  background: var(--navy);
  padding: 36px;
  margin-top: 32px;
  text-align: center;
}
.give-scripture-box p    { font-family: var(--font-serif); font-size: 20px; color: var(--white); font-style: italic; margin-bottom: 8px; }
.give-scripture-box cite { font-size: 11px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; }

@media (max-width: 900px) { .give-inner { grid-template-columns: 1fr; } }


/* ────────────────────────────────────────────────────── */
/* LOCATIONS.CSS                                        */
/* ────────────────────────────────────────────────────── */

/* ============================================================
   LOCATIONS.CSS — Locations Page
   ============================================================ */
.locations-section { background: var(--bg); padding: 100px 4vw; }
.locations-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}
.locations-jm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.locations-region-title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.loc-card {
  background: var(--white);
  border: 1px solid var(--bg3);
  border-top: 3px solid var(--gold);
  padding: 36px 28px;
  transition: box-shadow 0.4s, transform 0.4s;
}
.loc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.loc-country-flag { font-size: 28px; margin-bottom: 16px; display: block; }
.loc-card-name    { font-family: var(--font-serif); font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.loc-card-addr    { font-size: 13px; color: var(--text2); line-height: 1.7; margin-bottom: 14px; }
.loc-card-pastor  { font-size: 12px; color: var(--gold); letter-spacing: 0.1em; font-weight: 500; }
.loc-service-badge {
  margin-top: 16px;
  font-size: 12px;
  background: var(--gold-light);
  padding: 10px 14px;
  color: var(--navy);
  font-weight: 500;
}
.loc-map-embed {
  width: 100%;
  min-height: 240px;
  border: none;
  display: block;
}

@media (max-width: 900px) {
  .locations-us-grid { grid-template-columns: 1fr; }
  .locations-jm-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .locations-jm-grid { grid-template-columns: 1fr; }
}


/* ────────────────────────────────────────────────────── */
/* CONTACT.CSS                                          */
/* ────────────────────────────────────────────────────── */

/* ============================================================
   CONTACT.CSS — Contact Page
   ============================================================ */
.contact-section { background: var(--bg); padding: 100px 4vw; }
.contact-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}

/* ── INFO CARD ── */
.contact-info-card {
  background: var(--navy);
  padding: 48px 40px;
  color: var(--white);
}
.contact-info-card h3 { font-family: var(--font-serif); font-size: 28px; color: var(--white); margin-bottom: 8px; }
.contact-info-card .sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 40px; letter-spacing: 0.1em; }

.contact-detail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-detail:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.cd-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.cd-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.cd-value  { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; }

.contact-socials-wrap { margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); }
.contact-socials { display: flex; gap: 10px; margin-top: 14px; }
.contact-social {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}
.contact-social:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.1); }

/* ── FORM ── */
.contact-form-wrap h3 { font-family: var(--font-serif); font-size: 28px; color: var(--navy); margin-bottom: 8px; }
.contact-form-wrap .sub { font-size: 13px; color: var(--text3); margin-bottom: 36px; }

.form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); font-weight: 500; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  border: 1px solid var(--bg3);
  background: var(--white);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { height: 130px; resize: none; }
.form-group select { appearance: none; cursor: pointer; }

/* ── RESPONSIVE ── */
@media (max-width: 900px)  { .contact-inner { grid-template-columns: 1fr; } }
@media (max-width: 600px)  { .form-row { grid-template-columns: 1fr; } }
