/* ================================================================
   THE LIVING WORD MINISTRIES TRUST – ZIMBABWE
   Design: 2014 faithful recreation — modernised & professional
   Primary: #AA0000 · Nav: #1a1a1a · Font: Constantia serif
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

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

:root {
  --red:          #AA0000;
  --red-dark:     #880000;
  --red-hover:    #CC0000;
  --red-light:    #fff0f0;
  --nav-bg:       #AA0000;
  --nav-hover:    #AA0000;
  --white:        #ffffff;
  --off-white:    #f9f6f6;
  --text:         #1a1a1a;
  --text-mid:     #444444;
  --text-light:   #666666;
  --border:       #dddddd;
  --gold:         #996600;
  --font-serif:   Constantia, 'Lucida Bright', Georgia, 'Times New Roman', serif;
  --font-sans:    Lato, Arial, Helvetica, sans-serif;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.10);
  --shadow:       0 2px 12px rgba(0,0,0,0.13);
  --shadow-md:    0 4px 24px rgba(0,0,0,0.18);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.22);
  --radius:       3px;
  --max-w:        980px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-serif);
  color: var(--text);
  background: #ffffff;
  font-size: 15px;
  line-height: 1.8;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--red); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--red-hover); text-decoration: underline; }
ul, ol { list-style: none; }
p    { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--red);
  line-height: 1.3;
  font-weight: normal;
}
h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 12px; }
h2 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); margin-bottom: 10px; }
h3 { font-size: clamp(1rem, 2vw, 1.3rem); margin-bottom: 8px; }
h4 { font-size: 1rem; color: var(--text); font-weight: 700; margin-bottom: 6px; font-family: var(--font-sans); }

.section-eyebrow {
  display: block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red); margin-bottom: 6px; font-family: var(--font-sans);
}
.section-title    { color: var(--red); margin-bottom: 10px; }
.section-subtitle { color: var(--text-light); font-size: 0.95rem; max-width: 580px; margin: 6px 0 0; font-family: var(--font-sans); }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 6px auto 0; }

/* ── Layout ─────────────────────────────────────────────── */
.page-wrap   { max-width: var(--max-w); margin: 0 auto; background: #fff; box-shadow: 0 0 40px rgba(0,0,0,0.08); }
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.container-sm{ max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ── ═══ TOP BAR — logo left + social right ═══════════════ */
#topbar {
  background: #fff;
  border-bottom: 3px solid var(--red);
  padding: 16px 0 12px;
}
#topbar .inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
#logo { display: flex; align-items: center; gap: 16px; text-decoration: none; }
#logo img {
  height: 100px; width: 100px;
  object-fit: contain; flex-shrink: 0;
}
.logo-text h1 {
  font-size: 1.4rem; color: var(--red); margin: 0; line-height: 1.2;
  font-family: 'Great Vibes', cursive;
}
.logo-text span {
  display: block; font-size: 0.72rem; color: var(--text-light);
  letter-spacing: 1.5px; text-transform: uppercase; font-family: var(--font-sans);
  margin-top: 3px;
}
#topbar-right { text-align: right; }
#topbar-right p {
  font-size: 0.85rem; color: var(--text-light); margin-bottom: 10px;
  font-family: var(--font-sans); line-height: 1.4;
}
#topbar-right p strong { color: var(--red); }
.social-row { display: flex; gap: 8px; justify-content: flex-end; flex-wrap: wrap; }
.social-btn {
  width: 36px; height: 36px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.92rem; color: #fff; text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}
.social-btn:hover { opacity: 0.85; transform: translateY(-1px); text-decoration: none; color: #fff; }
.social-btn.facebook  { background: #3b5998; }
.social-btn.twitter   { background: #1da1f2; }
.social-btn.youtube   { background: #ff0000; }
.social-btn.whatsapp  { background: #25d366; }
.social-btn.instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }

/* ── ═══ NAV BAR ═════════════════════════════════════════ */
#navbar {
  background: var(--nav-bg);
  position: sticky; top: 0; z-index: 999;
  border-bottom: 3px solid var(--red);
}
#navbar .inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center;
}
#nav { display: flex; align-items: center; flex: 1; }
#nav > li { position: relative; }
#nav > li > a {
  display: block; padding: 0 20px; height: 46px; line-height: 46px;
  color: #e8e8e8; font-family: var(--font-sans); font-size: 0.82rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  white-space: nowrap; transition: color 0.15s, background 0.15s;
}
#nav > li > a:hover,
#nav > li.active > a  { color: #fff; background: var(--nav-hover); text-decoration: none; }
#nav > li > a.donate-nav {
  color: #e8e8e8;
}
#nav > li > a.donate-nav:hover,
#nav > li.active > a.donate-nav {
  color: #fff; background: var(--nav-hover);
}

/* Dropdown */
#nav li ul {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--red-dark); min-width: 210px; z-index: 100;
  border-top: 2px solid var(--red); box-shadow: var(--shadow-md);
  padding: 4px 0;
}
#nav li:hover > ul,
#nav li:focus-within > ul { display: block; }
#nav li ul li a {
  display: block; padding: 10px 18px;
  color: #ccc; font-size: 0.8rem; font-family: var(--font-sans);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.15s, background 0.15s;
}
#nav li ul li a:hover { color: #fff; background: var(--red); text-decoration: none; }

/* Mobile toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 10px; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 23px; height: 2px;
  background: #fff; margin: 5px 0; border-radius: 1px;
  transition: all 0.28s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── ═══ HERO SLIDER ════════════════════════════════════ */
#hero {
  position: relative; overflow: hidden;
  background: var(--red-dark); width: 100%;
}
.slide {
  display: none; position: relative;
  width: 100%;
  /* Make hero responsive: use viewport-based height with sensible min/max */
  height: clamp(280px, 50vh, 560px);
  background-color: #111;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s ease, transform .45s ease;
}
.slide.active { display: block; opacity: 1; transform: translateY(0); }
.slide-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  background: transparent;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none; z-index: 2;
}
.hero-verse {
  background: #faf7f3;
  border-top: 1px solid #e8dfd6;
  border-bottom: 1px solid #e8dfd6;
  padding: 18px 28px 20px;
}
.hero-verse-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hero-verse-text {
  margin: 0;
  color: #3f332b;
  font-size: 1.05rem;
  line-height: 1.75;
  font-style: italic;
}
.hero-verse-ref {
  display: inline-block;
  margin-top: 10px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.2px;
  font-family: var(--font-sans);
}
.slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 36px;
  background: linear-gradient(transparent, rgba(0,0,0,0.80));
  z-index: 3;
}
.slide-caption-box {
  max-width: 420px; float: right;
  background: rgba(0,0,0,0.58); border-left: 4px solid var(--red);
  padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0;
  clear: both;
}
.slide-caption-box p {
  color: rgba(255,255,255,0.92); font-style: italic;
  font-size: 0.95rem; line-height: 1.75; margin: 0;
}
.slide-caption-box strong { color: white; font-style: normal; }
.hero-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,0.35); border: none; padding: 0;
  transition: background 0.3s, width 0.3s;
}
.hero-dot.active { background: var(--red); width: 28px; border-radius: 5px; }
.hero-prev, .hero-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(170,0,0,0.65); border: none; color: #fff;
  width: 40px; height: 40px; border-radius: 50%;
  font-size: 1rem; cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.hero-prev:hover, .hero-next:hover { background: rgba(170,0,0,0.9); }
.hero-prev { left: 14px; }
.hero-next { right: 14px; }
@media (max-width: 768px) {
  .slide { height: 380px; }
  .hero-verse { padding: 14px 16px 16px; }
  .hero-verse-text { font-size: 0.96rem; line-height: 1.65; }
  .hero-verse-ref { margin-top: 8px; }
  .slide-caption-box { max-width: 100%; float: none; }
}
@media (max-width: 480px) {
  .slide { height: 280px; }
}

/* ── ═══ PAGE CONTENT SECTIONS ══════════════════════════ */
.section    { padding: 52px 0; }
.section-sm { padding: 36px 0; }
.section-lg { padding: 72px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: #1a0000; }
.section-dark h2, .section-dark h3 { color: #FFD700; }

/* Impact/stats bar */
.impact-bar { background: var(--red); padding: 28px 0; }
.impact-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
}
.impact-item {
  text-align: center; padding: 16px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.impact-item:last-child { border-right: none; }
.impact-number {
  font-size: 2.4rem; font-weight: 700; color: #fff;
  font-family: var(--font-serif); line-height: 1;
}
.impact-label { font-size: 0.78rem; color: rgba(255,255,255,0.75); margin-top: 4px; font-family: var(--font-sans); letter-spacing: 0.5px; }

/* Two-column main content */
.content-row {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0;
  align-items: start;
}
.main-col { padding: 36px 32px 36px 0; border-right: 1px solid #e0e0e0; }
.side-col  { padding: 36px 0 36px 28px; }

/* Grids */
.grid-2     { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3     { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4     { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-2-img { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }

/* Program cards (homepage) */
.prog-card {
  position: relative; overflow: hidden;
  border: 2px solid transparent; display: block;
  transition: border-color 0.2s, transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow);
}
.prog-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-md); text-decoration: none; }
.prog-card img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s; }
.prog-card:hover img { transform: scale(1.04); }
.prog-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(100,0,0,0.88) 30%, transparent 70%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 18px;
}
.prog-card-label {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 2px;
  color: rgba(255,220,220,0.85); text-transform: uppercase;
  font-family: var(--font-sans); margin-bottom: 4px;
}
.prog-card-title { color: #fff; font-size: 1rem; margin: 0; font-family: var(--font-serif); }
.prog-card-text  { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-top: 4px; line-height: 1.5; }

/* News cards */
.news-card { background: #fff; border: 1px solid #ddd; box-shadow: var(--shadow); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.news-card-img { height: 185px; overflow: hidden; border-bottom: 2px solid var(--red); }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .news-card-img img { transform: scale(1.04); }
.news-card-body  { padding: 16px 18px; }
.news-card-meta  { font-size: 0.73rem; color: var(--text-light); margin-bottom: 7px; font-family: var(--font-sans); display: flex; gap: 10px; align-items: center; }
.news-card-meta i { color: var(--red); }
.news-card-title { font-size: 1rem; color: var(--red); margin-bottom: 7px; line-height: 1.35; }
.news-card-title a { color: var(--red); }
.news-card-title a:hover { color: var(--red-hover); text-decoration: underline; }
.news-card-excerpt { font-size: 0.85rem; color: var(--text-light); margin-bottom: 12px; font-family: var(--font-sans); }

/* General card */
.card { background: #fff; border: 1px solid #ddd; box-shadow: var(--shadow); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-img    { width: 100%; height: 200px; object-fit: cover; }
.card-body   { padding: 18px; }
.card-title  { color: var(--red); font-size: 1rem; margin-bottom: 6px; }
.card-text   { font-size: 0.86rem; color: var(--text-light); font-family: var(--font-sans); }
.tag { display: inline-block; padding: 2px 9px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; background: var(--red-light); color: var(--red); font-family: var(--font-sans); }

/* ── Icon boxes ─────────────────────────────────── */
.icon-box {
  text-align: center; padding: 28px 16px;
  background: #fff; border: 1px solid #ddd; box-shadow: var(--shadow);
  transition: all 0.2s;
}
.icon-box:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.icon-box .icon {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--red-light); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; margin: 0 auto 14px;
  transition: background 0.2s, color 0.2s;
}
.icon-box:hover .icon { background: var(--red); color: #fff; }
.icon-box h4 { margin-bottom: 7px; color: var(--red); font-family: var(--font-sans); }
.icon-box p  { font-size: 0.84rem; color: var(--text-light); margin: 0; font-family: var(--font-sans); }

/* Team cards */
.member-card { text-align: center; }
.member-img-wrap {
  width: 130px; height: 130px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 13px;
  border: 3px solid var(--red); box-shadow: var(--shadow-sm);
  transition: border-color 0.2s;
}
.member-card:hover .member-img-wrap { border-color: var(--red-hover); }
.member-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.member-name { font-weight: 700; font-size: 0.92rem; color: var(--text); margin-bottom: 3px; font-family: var(--font-sans); }
.member-pos  { font-size: 0.75rem; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 9px; font-family: var(--font-sans); }
.member-socials { display: flex; justify-content: center; gap: 6px; }
.member-socials a {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--red-light); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; transition: all 0.15s;
}
.member-socials a:hover { background: var(--red); color: #fff; text-decoration: none; }

/* Belief boxes */
.belief-box {
  background: #fff; padding: 22px 20px;
  border: 1px solid #ddd; border-top: 3px solid var(--red);
  box-shadow: var(--shadow); transition: box-shadow 0.2s;
}
.belief-box:hover { box-shadow: var(--shadow-md); }
.belief-box h4 { color: var(--red); margin-bottom: 8px; font-family: var(--font-sans); font-size: 0.9rem; }
.belief-box p  { font-size: 0.86rem; color: var(--text-light); margin-bottom: 6px; font-family: var(--font-sans); }
.belief-box .ref { font-size: 0.76rem; font-style: italic; color: var(--gold); }

/* Scripture */
.scripture {
  border-left: 4px solid var(--red);
  padding: 16px 24px; background: var(--off-white);
  margin: 24px 0; font-style: italic; color: #550000;
  line-height: 1.85; font-size: 1rem;
}
.scripture cite { display: block; margin-top: 8px; font-style: normal; font-weight: 700; font-size: 0.84rem; color: var(--red); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 24px; background: var(--red); color: #fff;
  border: 2px solid var(--red); border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 0.88rem; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: all 0.15s;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: 0 3px 10px rgba(170,0,0,0.3); }
.btn-outline  { background: transparent; color: var(--red); }
.btn-outline:hover  { background: var(--red); color: #fff; }
.btn-white    { background: #fff; color: var(--red); border-color: #fff; }
.btn-white:hover    { background: #ffe0e0; }
.btn-gold     { background: var(--gold); border-color: var(--gold); }
.btn-gold:hover     { background: #774400; border-color: #774400; }
.btn-lg { padding: 12px 32px; font-size: 0.95rem; }
.btn-sm { padding: 6px 16px; font-size: 0.8rem; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, #1a0000 0%, #550000 60%, #880000 100%);
  padding: 42px 0 34px; text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 8px; }
.page-hero p  { color: rgba(255,255,255,0.68); font-size: 0.95rem; font-family: var(--font-sans); }
.breadcrumb {
  display: flex; justify-content: center; gap: 8px; margin-bottom: 12px;
  font-size: 0.76rem; font-family: var(--font-sans);
}
.breadcrumb a       { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span    { color: rgba(255,255,255,0.28); }
.breadcrumb .current{ color: #FFD700; }

/* CTA banner */
.cta-banner { background: var(--red); padding: 56px 0; text-align: center; }
.cta-banner h2 { color: #fff; margin-bottom: 10px; }
.cta-banner p  { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 26px; font-family: var(--font-sans); }
.cta-banner-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* Map */
.map-frame { width: 100%; height: 380px; border: 2px solid var(--red); display: block; }

/* Forms */
.form-section { background: #fff; border: 1px solid #ddd; padding: 32px; box-shadow: var(--shadow); }
.form-group   { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text-mid); margin-bottom: 5px; font-family: var(--font-sans); }
.form-control {
  width: 100%; padding: 9px 13px; border: 1px solid #ccc;
  font-size: 0.9rem; font-family: var(--font-serif); color: var(--text);
  background: #fafafa; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus { border-color: var(--red); box-shadow: 0 0 0 2px rgba(170,0,0,0.1); background: #fff; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; padding: 12px 16px; display: none; align-items: center; gap: 10px; font-family: var(--font-sans); font-size: 0.86rem; margin-bottom: 16px; }
.form-success.show { display: flex; }
.form-error   { background: #fef2f2; color: var(--red); border: 1px solid #fecaca; padding: 12px 16px; display: none; align-items: center; gap: 10px; font-family: var(--font-sans); font-size: 0.86rem; margin-bottom: 16px; }
.form-error.show   { display: flex; }
.alert         { padding: 14px 18px; border: 1px solid; margin-bottom: 16px; display: flex; gap: 10px; font-size: 0.86rem; font-family: var(--font-sans); }
.alert-warning { background: #fffbeb; color: #854d0e; border-color: #fde68a; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: 10px; }
.gallery-item { position: relative; aspect-ratio: 4/3; overflow: hidden; border: 2px solid #ddd; cursor: pointer; transition: border-color 0.2s; }
.gallery-item:hover { border-color: var(--red); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(170,0,0,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: #fff; font-size: 1.6rem; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.92); align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox img  { max-width: 90vw; max-height: 88vh; object-fit: contain; box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 18px; right: 22px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(170,0,0,0.7); border: none; color: #fff; font-size: 1.5rem; cursor: pointer; padding: 12px 15px; border-radius: var(--radius); }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }

/* ── ═══ FOOTER ══════════════════════════════════════════ */
#footer { background: #1a0000; color: rgba(255,255,255,0.68); padding: 28px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 20px; }
.footer-brand img   { height: 48px; margin-bottom: 8px; }
.footer-brand h3    { color: #fff; font-size: 0.88rem; margin-bottom: 4px; }
.footer-brand p     { font-size: 0.78rem; line-height: 1.6; font-family: var(--font-sans); }
.footer-socials     { display: flex; gap: 6px; margin-top: 8px; }
.footer-social-link {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; transition: all 0.15s;
}
.footer-social-link:hover { background: var(--red); color: #fff; text-decoration: none; }
.footer-heading     { color: #fff; font-size: 0.78rem; font-weight: 700; margin-bottom: 8px; letter-spacing: 0.5px; font-family: var(--font-sans); text-transform: uppercase; }
.footer-links       { display: flex; flex-direction: column; gap: 4px; }
.footer-links a     { color: rgba(255,255,255,0.55); font-size: 0.78rem; font-family: var(--font-sans); transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,200,200,0.9); text-decoration: none; }
.footer-contact     { display: flex; flex-direction: column; gap: 5px; }
.footer-contact-item{ display: flex; gap: 8px; align-items: flex-start; font-size: 0.78rem; font-family: var(--font-sans); }
.footer-contact-item i { color: var(--red); margin-top: 2px; flex-shrink: 0; width: 12px; }
.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: rgba(255,200,200,.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding: 10px 0;
}
.footer-bottom .inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom-copy   { font-size: 0.72rem; color: rgba(255,255,255,0.32); font-family: var(--font-sans); }
.footer-bottom-links  { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-bottom-links a{ font-size: 0.72rem; color: rgba(255,255,255,0.35); font-family: var(--font-sans); }
.footer-bottom-links a:hover { color: rgba(255,180,180,0.8); }

/* ── Sidebar widgets ────────────────────────────────── */
.widget { margin-bottom: 28px; }
.widget-title {
  font-size: 1rem; color: var(--red); border-bottom: 2px solid var(--red);
  padding-bottom: 7px; margin-bottom: 14px; font-family: var(--font-serif);
}
.widget ul { display: flex; flex-direction: column; gap: 6px; }
.widget ul li { font-size: 0.85rem; font-family: var(--font-sans); }
.widget ul li::before { content: '▸ '; color: var(--red); }
.widget ul li a { color: var(--text-mid); }
.widget ul li a:hover { color: var(--red); text-decoration: none; }
.widget-contact p { font-size: 0.84rem; font-family: var(--font-sans); margin-bottom: 8px; display: flex; gap: 8px; }
.widget-contact i { color: var(--red); flex-shrink: 0; width: 14px; margin-top: 3px; }

/* ── Utilities ────────────────────────────────────── */
.text-center  { text-align: center; }
.text-red     { color: var(--red); }
.text-light   { color: var(--text-light); }
.text-white   { color: #fff !important; }
.mt-8  { margin-top: 8px;  } .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px;  } .mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; } .mb-40 { margin-bottom: 40px; }
.d-flex       { display: flex; }
.align-center { align-items: center; }
.gap-12       { gap: 12px; }
.divider      { border: none; border-top: 1px solid #ddd; margin: 28px 0; }
.spinner      { display: inline-block; width: 28px; height: 28px; border: 3px solid #eee; border-top-color: var(--red); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-state{ display: flex; justify-content: center; align-items: center; min-height: 160px; }
.fade-in      { animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .impact-grid { grid-template-columns: repeat(2,1fr); }
  .grid-4, .prog-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  /* Mobile full-screen menu when opened — animated slide-in */
  #nav { display: flex; flex-direction: column; width: 100%; position: fixed; top: 0; left: 0; right: 0; height: 100vh; background: var(--red); z-index: 998; padding: 84px 18px 28px; overflow:auto; transform: translateX(100%); transition: transform .36s cubic-bezier(.2,.9,.26,1); }
  #nav.open { transform: translateX(0); }
  #nav > li > a { height: auto; line-height: 1; padding: 13px 20px; }
  #nav li ul { position: static; display: none; box-shadow: none; padding-left: 18px; }
  .nav-toggle { display: flex; flex-direction: column; }
  .nav-toggle { z-index: 1001; }
  #topbar .inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  #topbar-right { width: 100%; text-align: left; }
  .social-row { justify-content: flex-start; }
  .content-row { grid-template-columns: 1fr; }
  .main-col { padding-right: 0; border-right: none; padding-bottom: 0; }
  .side-col { padding-left: 0; border-top: 1px solid #eee; }
  .grid-2, .grid-2-img, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
}
/* Prevent background scroll when mobile nav is open */
body.nav-open { overflow: hidden; }

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 1.4rem; }
  /* Slightly larger base font for readability */
  body { font-size: 16px; }
  .container { padding: 0 16px; }
  /* Make nav items large and tappable */
  #nav > li > a { font-size: 1.05rem; padding: 16px 10px; display:block; }
  #nav li ul li a { padding-left: 22px; }
  /* Verse strip spacing on very small screens */
  .hero-verse { padding: 12px 12px 14px; }
  .hero-verse-text { font-size: 0.9rem; }
  /* Footer accordion: show brand and toggle only */
  .footer-grid > div { display: none; }
  .footer-grid .footer-brand { display:block }
  .footer-compact-toggle { display:inline-block }
}

/* Accessibility: focus styles */
a:focus, button:focus { outline: 3px solid rgba(170,0,0,0.15); outline-offset: 2px; }

/* Mobile polish: tighter header, nicer social icons, and compact footer */
@media (max-width: 480px) {
  /* Topbar / Logo */
  #topbar .inner { padding: 10px 14px; gap: 8px; }
  #logo img { height: 56px; }
  .logo-text h1 { font-size: 1.4rem; }
  #topbar-right p { font-size: 0.78rem; }
  .social-row a { width: 36px; height: 36px; display:inline-flex; align-items:center; justify-content:center; border-radius:6px; font-size:0.9rem }

  /* Navbar: make toggle larger and easier to tap */
  .nav-toggle { padding: 10px; margin-right: 8px; }
  #nav > li > a { padding: 12px 16px; font-size: 0.95rem; }

  /* Hero verse strip: compact on phones */
  .hero-verse { padding: 12px 12px 14px; }
  .hero-verse-text { font-size: 0.88rem; line-height: 1.55; }
  .hero-verse-ref { font-size: 0.8rem; }

  /* Reduce hero controls size */
  .hero-prev, .hero-next { width:36px; height:36px; font-size:0.9rem }
  .hero-prev { left: 2px; }
  .hero-next { right: 2px; }
  .hero-dot { width:8px; height:8px }

  /* Compact footer: show brand + one column, hide verbose lists by default */
  .footer-grid { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid > div:not(.footer-brand) { display: none; }
  .footer-brand h3 { font-size: 1.05rem; }
  .footer-brand p { display: none; }
  .footer-bottom { padding: 12px 0; }
  .footer-bottom-copy { font-size: 0.78rem; }
  .footer-bottom-links { display: none; }

  /* Add compact footer expand button (JS will toggle `.expanded`) */
  .footer-compact-toggle { display:block; margin-top:8px; background:transparent; border:1px solid rgba(255,255,255,0.06); color:var(--text-light); padding:8px 12px; border-radius:6px; font-size:0.9rem }
  .footer-grid.expanded > div { display:block; }
  .footer-grid.expanded .footer-brand p { display:block; }
  .footer-grid.expanded .footer-bottom-links { display:inline-block; }
}
