/* ============================================================
   GOD'S POWER MINISTERS — Main Stylesheet
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:         #1B2A4A;
  --navy-dark:    #0E1A2D;
  --navy-light:   #243660;
  --gold:         #C9A84C;
  --gold-light:   #E8C96E;
  --gold-dark:    #A8873A;
  --white:        #FFFFFF;
  --off-white:    #F8F5EE;
  --cream:        #F2EDE4;
  --text:         #1A1A2E;
  --text-mid:     #4A5568;
  --text-soft:    #718096;
  --border:       #E2D9C8;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.11);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.16);
  --transition:   all 0.3s ease;
  --nav-h:        76px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--navy);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ── Layout helpers ─────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-light  { background: var(--off-white); }
.section-white  { background: var(--white); }
.section-navy   { background: var(--navy-dark); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-header h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 12px; }
.section-header p  { color: var(--text-mid); font-size: 1.05rem; }

.section-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.section-eyebrow--light { color: var(--gold-light); }

.text-white      { color: var(--white) !important; }
.text-gold-light { color: var(--gold-light) !important; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-full { width: 100%; justify-content: center; }

/* ── Form elements ───────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--text); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-soft); }

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  cursor: pointer;
}
.checkbox-label input { width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; }

/* ── NAVBAR ──────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.35s ease, box-shadow 0.35s ease;
  background: transparent;
}

#navbar.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo-cross {
  font-size: 1.3rem;
  color: var(--gold);
}
.nav-logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--gold-light); }

.nav-link.nav-cta {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 600;
  padding: 8px 18px;
}
.nav-link.nav-cta:hover { background: var(--gold-light); color: var(--navy-dark); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 75%, rgba(201,168,76,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(36,54,96,0.6) 0%, transparent 50%),
    linear-gradient(150deg, #0a1628 0%, #1B2A4A 45%, #243660 75%, #16213e 100%);
  background-size: cover;
}

/* Subtle cross tiling pattern */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M36 10v60M10 36h60' stroke='white' stroke-width='0.6' fill='none' opacity='0.06'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 40, 0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 24px;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 6px 18px;
  border-radius: 50px;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: rgba(255,255,255,0.88);
  margin-bottom: 18px;
}

.hero-verse {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 36px;
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  transition: var(--transition);
  animation: bounce 2s infinite;
}
.hero-scroll:hover { color: var(--gold-light); }
.hero-scroll i { font-size: 0.8rem; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── SERVICE TIMES ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }

.service-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.service-card--featured h3,
.service-card--featured p  { color: var(--white); }
.service-card--featured .service-icon i { color: var(--gold-light); }
.service-card--featured .service-badge  { background: var(--gold); color: var(--navy-dark); }

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.service-icon i { font-size: 1.4rem; color: var(--gold-dark); }

.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-time { font-size: 1.3rem; font-weight: 700; color: var(--gold-dark); margin-bottom: 10px; font-family: 'Playfair Display', serif; }
.service-card p  { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 18px; }
.service-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

.services-address {
  text-align: center;
  color: var(--text-mid);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.services-address i { color: var(--gold-dark); }

/* ── ABOUT ───────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 28px; }

.tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  background: var(--off-white);
  padding: 4px;
  border-radius: 10px;
  width: fit-content;
}

.tab-btn {
  padding: 9px 22px;
  border-radius: 7px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
}
.tab-btn--active,
.tab-btn:hover {
  background: var(--navy);
  color: var(--white);
}

.tab-panel { display: none; }
.tab-panel--active { display: block; animation: fadeIn 0.3s ease; }

.tab-panel h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 14px; }
.tab-panel p  { color: var(--text-mid); margin-bottom: 14px; line-height: 1.75; }

.values-list { display: flex; flex-direction: column; gap: 14px; }
.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.values-list li > i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-dark);
  font-size: 0.75rem;
  margin-top: 2px;
}
.values-list li div strong { display: block; font-size: 0.9rem; color: var(--navy); }
.values-list li div span  { font-size: 0.85rem; color: var(--text-mid); }

/* Pastor card */
.pastor-card {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pastor-avatar {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid var(--gold);
}
.pastor-avatar i { font-size: 5rem; color: rgba(255,255,255,0.25); }

.pastor-message { padding: 36px; }
.quote-mark {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 16px;
}
.pastor-message h3 { color: var(--gold-light); font-size: 1.2rem; margin-bottom: 14px; }
.pastor-message p  { color: rgba(255,255,255,0.75); font-size: 0.92rem; line-height: 1.75; margin-bottom: 12px; }
.pastor-sig { margin-top: 20px; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 16px; }
.pastor-sig strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 2px; }
.pastor-sig span   { color: var(--gold-light); font-size: 0.82rem; }

/* ── EVENTS ──────────────────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  display: flex;
  gap: 0;
  transition: var(--transition);
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.event-card--gold .event-date-badge { background: var(--gold-dark); }

.event-date-badge {
  background: var(--navy);
  color: var(--white);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  flex-shrink: 0;
}
.event-day   { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.event-month { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-top: 2px; }

.event-body { padding: 22px 22px 22px 18px; }
.event-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,168,76,0.12);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.event-body h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.event-body p  { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 14px; line-height: 1.65; }
.event-meta { display: flex; flex-direction: column; gap: 4px; }
.event-meta span { font-size: 0.8rem; color: var(--text-soft); display: flex; align-items: center; gap: 6px; }
.event-meta i { color: var(--gold-dark); width: 14px; }

/* ── SERMONS ─────────────────────────────────────────────────── */
.sermons-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy-dark);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.sermon-featured-info h3 { font-size: 1.65rem; color: var(--navy); margin: 10px 0 12px; }
.sermon-meta-line {
  font-size: 0.875rem;
  color: var(--text-soft);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.sermon-meta-line i { color: var(--gold-dark); }
.sermon-featured-info p { color: var(--text-mid); margin-bottom: 24px; line-height: 1.75; }

/* Sermon list */
.sermon-list { border-top: 2px solid var(--border); padding-top: 40px; }
.sermon-list-heading { font-size: 1.3rem; color: var(--navy); margin-bottom: 20px; }

.sermon-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.sermon-item:hover .sermon-play-btn { background: var(--gold); color: var(--navy-dark); }

.sermon-play-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  padding-left: 3px;
  transition: var(--transition);
}

.sermon-item-info { flex: 1; }
.sermon-item-info h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 3px; font-family: 'Inter', sans-serif; font-weight: 600; }
.sermon-item-info span { font-size: 0.8rem; color: var(--text-soft); }
.sermon-item-info em  { font-style: italic; }

.sermon-list-footer { padding-top: 28px; display: flex; justify-content: center; }

/* ── MINISTRIES ──────────────────────────────────────────────── */
.ministries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ministry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.ministry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }

.ministry-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}
.ministry-card--featured h3,
.ministry-card--featured p,
.ministry-card--featured .ministry-time { color: rgba(255,255,255,0.85); }
.ministry-card--featured h3 { color: var(--white); }
.ministry-card--featured .ministry-icon { background: rgba(255,255,255,0.1); }
.ministry-card--featured .ministry-icon i { color: var(--gold-light); }
.ministry-card--featured .ministry-link { color: var(--gold-light); }
.ministry-card--featured .ministry-link:hover { color: var(--white); }

.ministry-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.ministry-icon i { font-size: 1.4rem; color: var(--gold-dark); }

.ministry-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.ministry-card p  { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; flex: 1; margin-bottom: 16px; }

.ministry-time {
  font-size: 0.8rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}
.ministry-time i { color: var(--gold-dark); }

.ministry-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ministry-link:hover { gap: 10px; color: var(--gold-dark); }

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery-grid {
  columns: 3;
  column-gap: 18px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  cursor: pointer;
}

.gallery-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: var(--navy-dark);
}
.gallery-item:hover .gallery-frame {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-item:hover .gallery-frame img { transform: scale(1.05); }

/* Hover overlay */
.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 26, 45, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 3;
  backdrop-filter: blur(2px);
}
.gallery-hover-overlay i {
  font-size: 1.6rem;
  color: var(--gold-light);
  transform: scale(0.8);
  transition: var(--transition);
}
.gallery-item:hover .gallery-hover-overlay { opacity: 1; }
.gallery-item:hover .gallery-hover-overlay i { transform: scale(1); }

/* Gold accent border on hover */
.gallery-item:hover .gallery-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: 4;
  pointer-events: none;
}

/* Caption */
.gallery-caption {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 4px 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
}
.gallery-caption i { color: var(--gold-dark); font-size: 0.78rem; flex-shrink: 0; }
.gallery-item:hover .gallery-caption { color: var(--navy); }

/* Helper note */
.gallery-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.82rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.gallery-note i    { color: var(--gold-dark); }
.gallery-note code {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.78rem;
  color: var(--navy);
}

/* Responsive */
@media (max-width: 900px)  { .gallery-grid { columns: 2; } }
@media (max-width: 540px)  { .gallery-grid { columns: 1; } }

/* ── PRAYER ──────────────────────────────────────────────────── */
.prayer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.prayer-intro h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 10px 0 16px; }
.prayer-intro p  { color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 36px; }

.prayer-promises {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.promise {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
}
.promise i    { font-size: 1.4rem; }
.promise span { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-dark);
}
.contact-detail h4   { font-size: 0.875rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; font-family: 'Inter', sans-serif; }
.contact-detail p    { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; }
.contact-detail a    { color: var(--navy); }
.contact-detail a:hover { color: var(--gold-dark); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow-md);
  margin-top: 8px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

.contact-form-wrap h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 24px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); }

.footer-top { padding: 72px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 22px; }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); transform: translateY(-3px); }

.footer-links-col h4,
.footer-contact-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-links-col a  { font-size: 0.875rem; color: rgba(255,255,255,0.65); }
.footer-links-col a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  margin-bottom: 12px;
  line-height: 1.55;
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-service-times  { margin-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 14px; display: flex; flex-direction: column; gap: 2px; }
.footer-service-times strong { color: var(--gold-light); font-size: 0.82rem; }
.footer-service-times span   { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ── BACK TO TOP ─────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 900;
  border: 2px solid var(--gold);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover   { background: var(--gold); color: var(--navy-dark); }

/* ── TOAST ───────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 88px;
  right: 28px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 10px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 1100;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.toast i { color: var(--gold); }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ministries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .section { padding: 70px 0; }

  /* Nav mobile */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 0 24px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { max-height: 600px; }

  .nav-link {
    padding: 13px 24px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.95rem;
  }
  .nav-link.nav-cta {
    margin: 12px 24px 0;
    border-radius: 8px;
    text-align: center;
    justify-content: center;
    border-bottom: none;
    display: block;
    padding: 12px 24px;
  }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Sermons */
  .sermons-featured { grid-template-columns: 1fr; gap: 32px; }

  /* Ministries */
  .ministries-grid { grid-template-columns: 1fr 1fr; }

  /* Prayer */
  .prayer-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 540px) {
  .hero-title { font-size: 2.6rem; }

  .services-grid { grid-template-columns: 1fr; }
  .events-grid   { grid-template-columns: 1fr; }
  .ministries-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .tabs { width: 100%; }
  .tab-btn { flex: 1; text-align: center; }

  .back-to-top { bottom: 20px; right: 20px; }
  .toast       { bottom: 76px; right: 16px; left: 16px; }
}
