/* =====================================================
   Hope Church Chennai — Main Stylesheet
   Aesthetic: Sacred Luminance — Deep Navy × Warm Gold
   ===================================================== */

/* ─── CSS Variables ─── */
:root {
  --navy:       #0A1628;
  --navy-mid:   #112240;
  --navy-light: #1A3358;
  --gold:       #C9952A;
  --gold-light: #E0B44A;
  --gold-pale:  #F5E6C0;
  --cream:      #FBF7F0;
  --white:      #FFFFFF;
  --text-dark:  #1A1A2E;
  --text-mid:   #4A4A6A;
  --text-light: #8A8AA0;
  --border:     rgba(201,149,42,0.2);

  --ff-display: 'Cinzel', serif;
  --ff-heading: 'Playfair Display', serif;
  --ff-body:    'Lora', serif;

  --radius: 4px;
  --shadow: 0 8px 40px rgba(10,22,40,0.15);
  --shadow-gold: 0 4px 20px rgba(201,149,42,0.25);

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: var(--ff-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ─── Top Bar ─── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  font-family: var(--ff-body);
  font-size: 0.8rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--navy-light);
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.topbar-inner span { display: flex; align-items: center; gap: 7px; }
.topbar-inner i { color: var(--gold); font-size: 0.75rem; }
.topbar-social { margin-left: auto; display: flex; gap: 12px; }
.topbar-social a {
  color: rgba(255,255,255,0.6);
  width: 26px; height: 26px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  transition: all var(--transition);
}
.topbar-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ─── Navbar ─── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 20px rgba(10,22,40,0.4);
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--white); text-decoration: none;
}
.brand-cross {
  font-size: 2rem; color: var(--gold);
  text-shadow: 0 0 20px rgba(201,149,42,0.5);
  line-height: 1;
}
.brand-text {
  display: flex; flex-direction: column;
  font-family: var(--ff-display);
}
.brand-name { font-size: 1.1rem; font-weight: 600; letter-spacing: 0.05em; color: var(--white); }
.brand-city { font-size: 0.7rem; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; }

.nav-links {
  display: flex; list-style: none; gap: 4px;
}
.nav-links a {
  font-family: var(--ff-display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 60%; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: all var(--transition);
}

/* ─── Page Hero ─── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '✝';
  position: absolute;
  font-size: 25rem;
  color: rgba(201,149,42,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  font-family: serif;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero h1 {
  font-family: var(--ff-display);
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.page-hero p {
  color: var(--gold-pale);
  font-size: 1.1rem;
  font-style: italic;
}
.hero-divider {
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto;
}

/* ─── HOME HERO ─── */
.home-hero {
  min-height: 92vh;
  background:
    linear-gradient(to bottom, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.75) 50%, rgba(10,22,40,0.95) 100%),
    radial-gradient(ellipse at 30% 40%, rgba(201,149,42,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(26,51,88,0.8) 0%, transparent 60%),
    var(--navy);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 24px;
  position: relative;
}
.home-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.home-hero-content { max-width: 800px; position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '—'; color: rgba(201,149,42,0.5);
}
.home-hero h1 {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.home-hero h1 em { color: var(--gold); font-style: italic; }
.home-hero .subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  font-style: italic;
}
.hero-verse {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--gold-pale);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 40px;
  padding: 16px 24px;
  border-left: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  background: rgba(201,149,42,0.08);
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--ff-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,149,42,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ─── Sections ─── */
.section { padding: 90px 24px; }
.section-alt { background: var(--white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: '✝';
  font-size: 0.85rem;
}
.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-dark .section-title { color: var(--white); }
.section-body {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.8;
}
.section-dark .section-body { color: rgba(255,255,255,0.75); }
.gold-line {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 20px 0;
}

/* ─── Stats Row ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 60px 0;
}
.stat-item {
  background: var(--white);
  padding: 32px 20px;
  text-align: center;
}
.stat-number {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 6px;
  font-style: italic;
}

/* ─── About Section ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-image-wrap::before {
  content: '';
  position: absolute; top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.4;
}

/* ─── Pastor Card ─── */
.pastor-card {
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  box-shadow: var(--shadow);
  margin-top: 60px;
}
.pastor-img {
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  min-height: 280px;
  font-size: 5rem; color: var(--gold);
}
.pastor-info {
  padding: 40px;
  border-left: 3px solid var(--gold);
}
.pastor-info h3 {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 6px;
}
.pastor-info .pastor-title-tag {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.pastor-info p { color: rgba(255,255,255,0.8); font-style: italic; line-height: 1.8; }

/* ─── Service Cards ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.service-time {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.service-day {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 12px;
  font-family: var(--ff-display);
}
.service-name {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

/* ─── Gallery Grid ─── */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px;
  justify-content: center;
}
.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 40px;
  font-family: var(--ff-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--navy-mid);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: 0.95rem;
}
.gallery-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px;
  color: var(--text-light);
  font-style: italic;
}
.gallery-empty i { font-size: 2.5rem; color: var(--gold); margin-bottom: 12px; display: block; }

/* ─── Songs ─── */
.songs-tabs {
  display: flex; gap: 8px; margin-bottom: 40px;
  border-bottom: 2px solid var(--border);
  flex-wrap: wrap;
}
.song-tab {
  padding: 10px 28px;
  background: none; border: none;
  font-family: var(--ff-display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}
.song-tab::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.song-tab.active { color: var(--gold); }
.song-tab.active::after { transform: scaleX(1); }

.songs-panel { display: none; }
.songs-panel.active { display: block; }

.songs-list { display: flex; flex-direction: column; gap: 12px; }
.song-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
  cursor: pointer;
}
.song-item:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-gold);
}
.song-num {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  color: var(--gold);
  min-width: 32px;
  text-align: center;
  font-weight: 700;
}
.song-title {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  color: var(--navy);
  flex: 1;
}
.song-lang-badge {
  background: var(--gold-pale);
  color: var(--navy);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-family: var(--ff-display);
  letter-spacing: 0.08em;
}
.song-lyrics-panel {
  display: none;
  padding: 20px 24px 24px 72px;
  background: var(--cream);
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 2;
  white-space: pre-line;
}
.song-lyrics-panel.open { display: block; }
.no-lyrics { font-style: italic; color: var(--text-light); }

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 24px;
}
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-detail-body strong {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.contact-detail-body span, .contact-detail-body p {
  color: var(--text-mid);
  font-size: 0.95rem;
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--gold);
  margin-top: 30px;
}
.map-embed iframe { display: block; }

.contact-form { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.contact-form h3 {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,149,42,0.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
}
.alert-success { background: #e8f5e9; border: 1px solid #4caf50; color: #2e7d32; }
.alert-error   { background: #ffeaea; border: 1px solid #ef5350; color: #c62828; }

/* ─── Verse Banner ─── */
.verse-banner {
  background: var(--navy);
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.verse-banner::before {
  content: '"';
  position: absolute; top: -30px; left: 20px;
  font-size: 20rem;
  color: rgba(201,149,42,0.06);
  font-family: Georgia, serif;
  line-height: 1;
}
.verse-banner blockquote {
  font-family: var(--ff-heading);
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--gold-pale);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.verse-banner cite {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
}

/* ─── Footer ─── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); }
.footer-top { padding: 80px 24px 60px; max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-brand {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.footer-cross { font-size: 2.5rem; color: var(--gold); line-height: 1; }
.footer-brand strong { font-family: var(--ff-display); font-size: 1rem; color: var(--white); display: block; }
.footer-brand em { font-family: var(--ff-body); font-size: 0.8rem; color: var(--gold); font-style: normal; }
.footer-about { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-heading {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,149,42,0.2);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a i { font-size: 0.6rem; color: var(--gold); }
.footer-times { list-style: none; }
.footer-times li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.65);
}
.footer-times i { color: var(--gold); font-size: 0.8rem; }
.footer-address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.footer-address i { color: var(--gold); margin-right: 8px; }
.footer-contact-item { font-size: 0.87rem; color: rgba(255,255,255,0.65); margin-bottom: 6px; }
.footer-contact-item i { color: var(--gold); margin-right: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: var(--gold); }
.footer-verse { font-style: italic; }

/* ─── Lightbox ─── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,22,40,0.95);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); box-shadow: 0 0 60px rgba(0,0,0,0.8); }
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  background: none; border: none;
  color: var(--gold); font-size: 2rem; cursor: pointer;
  line-height: 1;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .about-grid, .pastor-card, .contact-grid { grid-template-columns: 1fr; }
  .pastor-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .topbar-inner { justify-content: center; }
  .topbar-social { margin-left: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .section { padding: 60px 20px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-up  { animation: fadeUp 0.7s ease forwards; }
.fade-in  { animation: fadeIn 0.5s ease forwards; }
.delay-1  { animation-delay: 0.15s; opacity: 0; }
.delay-2  { animation-delay: 0.30s; opacity: 0; }
.delay-3  { animation-delay: 0.45s; opacity: 0; }
.delay-4  { animation-delay: 0.60s; opacity: 0; }
