﻿/* ============================================================
   South Cayuga Baptist Church — style.css
   ============================================================ */

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

:root {
  --navy:      #6b1d2a;   /* burgundy — màu nhà thờ truyền thống */
  --navy-dark: #4a1019;   /* deep burgundy dark */
  --gold:      #c9963a;   /* warm amber gold */
  --gold-light:#e0b865;
  --cream:     #faf6ef;
  --white:     #ffffff;
  --gray-100:  #f5f0eb;
  --gray-300:  #d8cfc7;
  --gray-600:  #6b5e57;
  --gray-800:  #3a2e2a;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.10);
  --shadow-md: 0 4px 20px rgba(0,0,0,.15);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.20);
  --radius:    6px;
  --transition: .3s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  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); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-head);
  color: var(--navy);
  margin-bottom: 16px;
}

.divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 0 0 28px 0;
}
.divider.center { margin: 0 auto 28px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(107, 29, 42, .97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gold);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--navy-dark);
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 20px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.header-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.brand-sub {
  font-size: .68rem;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Nav */
.main-nav { flex-shrink: 0; }
.main-nav ul {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
}
.main-nav ul li a {
  display: block;
  padding: 8px 11px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 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;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(74, 16, 25, .82) 0%,
    rgba(107, 29, 42, .70) 50%,
    rgba(74, 16, 25, .60) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 120px 24px 80px;
  margin-left: max(24px, calc((100vw - 1200px) / 2));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,150,58,.18);
  border: 1px solid var(--gold);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.18;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   SERVICE TIMES BAR
   ============================================================ */
.service-bar {
  background: var(--gold);
  padding: 0;
}
.service-bar-inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 40px;
  border-right: 1px solid rgba(107, 29, 42, .2);
}
.service-item:last-child { border-right: none; }
.service-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.service-detail strong {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy-dark);
}
.service-detail span {
  font-size: .9rem;
  color: var(--navy);
  font-weight: 600;
}

/* ============================================================
   MISSION + VISION (Homepage)
   ============================================================ */
.mission-home {
  background: var(--navy);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.mission-home::before {
  content: '\201C';
  position: absolute;
  top: -40px; left: 40px;
  font-family: var(--font-head);
  font-size: 18rem;
  color: rgba(201,150,58,.06);
  line-height: 1;
  pointer-events: none;
}

.mission-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.mission-block .section-label { color: var(--gold); }
.mission-block .section-title { color: var(--white); }
.mission-block .divider { background: var(--gold); }

.mission-quote {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: rgba(255,255,255,.92);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.mission-text {
  color: rgba(255,255,255,.72);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.values-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
}
.values-list li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   WELCOME / ABOUT SNIPPET
   ============================================================ */
.welcome-section {
  padding: 96px 24px;
  background: var(--white);
}
.welcome-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.welcome-img-wrap {
  position: relative;
}
.welcome-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}
.welcome-img-accent {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 200px;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
.welcome-badge {
  position: absolute;
  top: 28px; left: -20px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.welcome-badge strong { display: block; font-size: 1.6rem; font-family: var(--font-head); }
.welcome-badge span { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.welcome-text { padding: 0; }
.welcome-text .section-label { color: var(--gold); }
.welcome-text p { color: var(--gray-600); line-height: 1.85; margin-bottom: 18px; }

/* ============================================================
   SCRIPTURE VERSE
   ============================================================ */
.verse-section {
  background: var(--cream);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.verse-section::before,
.verse-section::after {
  content: '\201C';
  position: absolute;
  font-family: var(--font-head);
  font-size: 10rem;
  color: rgba(201,150,58,.15);
  line-height: 1;
}
.verse-section::before { top: -20px; left: 20px; }
.verse-section::after  { content: '\201D'; bottom: -40px; right: 20px; }

.verse-text {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  color: var(--navy);
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.verse-ref {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

/* ============================================================
   MINISTRIES HIGHLIGHTS
   ============================================================ */
.ministries-section {
  padding: 96px 24px;
  background: var(--white);
}
.ministries-section .section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.ministries-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ministry-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.ministry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.ministry-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.ministry-card-body {
  padding: 24px;
}
.ministry-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.ministry-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.ministry-card-body p {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}
.ministry-card-body a {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ministry-card-body a::after { content: '→'; }
.ministry-card-body a:hover { color: var(--navy); }

/* ============================================================
   EVENTS PREVIEW
   ============================================================ */
.events-section {
  background: var(--cream);
  padding: 96px 24px;
}
.events-section .section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.events-list {
  max-width: 1000px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--gray-300);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.event-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 0;
  align-items: center;
  background: var(--white);
  transition: background var(--transition);
}
.event-item:hover { background: #fdfaf4; }
.event-date-box {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  height: 100%;
  min-height: 80px;
}
.event-day {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.event-month {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.event-info { padding: 20px 24px; }
.event-info h4 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.event-info p { font-size: .82rem; color: var(--gray-600); }
.event-time {
  padding: 0 24px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.events-cta { text-align: center; }

/* ============================================================
   COMMUNITY SNAPSHOT
   ============================================================ */
.community-section {
  padding: 96px 24px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.community-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .12;
}
.community-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.community-text .section-label { color: var(--gold); }
.community-text .section-title { color: var(--white); }
.community-text .divider { background: var(--gold); }
.community-text p { color: rgba(255,255,255,.75); line-height: 1.85; margin-bottom: 24px; }

.outreach-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.outreach-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,150,58,.2);
  border-radius: 8px;
  padding: 18px 20px;
}
.outreach-emoji { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.outreach-item h4 { color: var(--white); font-size: .95rem; margin-bottom: 4px; }
.outreach-item p  { color: rgba(255,255,255,.65); font-size: .82rem; line-height: 1.6; margin: 0; }

/* ============================================================
   LOCATION / CONTACT STRIP
   ============================================================ */
.location-strip {
  background: var(--gray-100);
  padding: 64px 24px;
}
.location-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  text-align: center;
}
.loc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.loc-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.loc-card h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.loc-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}
.loc-card a { color: var(--navy); font-weight: 600; }
.loc-card a:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(201,150,58,.16), transparent 28%),
    linear-gradient(180deg, #3d0c14 0%, #2a0810 100%);
  border-top: 1px solid rgba(201,150,58,.35);
  padding: 72px 24px 0;
  overflow: hidden;
}
.footer-orbit {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(201,150,58,.14);
  box-shadow:
    0 0 0 40px rgba(201,150,58,.04),
    0 0 0 80px rgba(201,150,58,.025);
  pointer-events: none;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-topline {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: end;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.footer-brand-sub {
  font-size: .72rem;
  color: rgba(255,255,255,.62);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-desc {
  max-width: 520px;
  justify-self: end;
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  line-height: 1.85;
}

.footer-panels {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 0 2px;
}
.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-nav a:hover {
  color: var(--navy-dark);
  background: var(--gold);
  border-color: var(--gold);
}
.footer-panel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(6px);
}
.footer-panel-accent {
  background: linear-gradient(180deg, rgba(201,150,58,.14) 0%, rgba(255,255,255,.05) 100%);
  border-color: rgba(201,150,58,.28);
}
.footer-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-panel h5 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}
.footer-link-grid a {
  font-size: .9rem;
  color: rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 8px;
}
.footer-link-grid a:hover {
  color: var(--gold);
  border-bottom-color: rgba(201,150,58,.4);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .92rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
}
.footer-contact-list li span.icon {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold);
}
.footer-contact-list a {
  color: rgba(255,255,255,.86);
}
.footer-contact-list a:hover {
  color: var(--gold);
}

.footer-hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: .92rem;
  color: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(255,255,255,.09);
  padding-bottom: 12px;
}
.footer-hours-list li:last-child { border-bottom: none; }
.footer-hours-list li strong { color: var(--white); }
.footer-hours-list li span {
  color: var(--gold-light);
  white-space: nowrap;
}

.footer-copyright {
  text-align: center;
  padding: 18px 24px 22px;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
}
.footer-copyright a { color: rgba(255,255,255,.4); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-hero {
  height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: 80px;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74, 16, 25, .85) 0%, rgba(17,30,51,.4) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.page-hero-content h1 { color: var(--white); }
.breadcrumb {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ============================================================
   INNER PAGE CONTENT
   ============================================================ */
.page-section {
  padding: 88px 24px;
}
.page-section.alt {
  background: var(--cream);
}
.section-intro {
  max-width: 760px;
  margin-bottom: 48px;
}
.section-intro p,
.content-copy p,
.card-copy,
.timeline-copy,
.value-card p,
.ministry-detail p,
.contact-lead,
.contact-card p,
.sermon-note,
.event-card p,
.outreach-card p {
  color: var(--gray-600);
  line-height: 1.8;
}
.two-col {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: start;
}
.content-copy > * + * {
  margin-top: 18px;
}
.media-card img,
.gallery-card img,
.feature-image,
.hero-side-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.hero-side-image {
  height: 100%;
  min-height: 420px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.stat-card {
  background: var(--white);
  border: 1px solid rgba(107, 29, 42, .08);
  border-radius: 10px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.stat-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.stat-card span {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  font-weight: 700;
}

.leadership-grid,
.beliefs-grid,
.values-grid,
.sermons-grid,
.events-grid,
.outreach-grid,
.contact-grid,
.gallery-grid,
.partner-grid,
.quick-contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}
.leadership-grid { grid-template-columns: repeat(3, 1fr); }
.beliefs-grid { grid-template-columns: repeat(2, 1fr); }
.values-grid { grid-template-columns: repeat(2, 1fr); }
.sermons-grid { grid-template-columns: repeat(2, 1fr); }
.events-grid { grid-template-columns: repeat(3, 1fr); }
.outreach-grid { grid-template-columns: repeat(2, 1fr); }
.contact-grid { grid-template-columns: .95fr 1.05fr; align-items: start; }
.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.partner-grid { grid-template-columns: repeat(3, 1fr); }
.quick-contact-grid { grid-template-columns: repeat(3, 1fr); }

.info-card,
.belief-card,
.value-card,
.sermon-card,
.event-card,
.outreach-card,
.partner-card,
.contact-card,
.map-card,
.form-card,
.gallery-card,
.ministry-detail,
.feature-panel {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(107, 29, 42, .08);
  box-shadow: var(--shadow-sm);
}
.info-card,
.belief-card,
.value-card,
.sermon-card,
.event-card,
.outreach-card,
.partner-card,
.contact-card,
.form-card,
.ministry-detail,
.feature-panel {
  padding: 28px;
}
.belief-card h3,
.value-card h3,
.sermon-card h3,
.event-card h3,
.outreach-card h3,
.partner-card h3,
.contact-card h3,
.ministry-detail h3 {
  margin-bottom: 10px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.scripture-tag {
  margin-top: 14px;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
}

.timeline-list,
.check-list,
.meta-list,
.contact-list,
.schedule-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.timeline-list li,
.check-list li,
.meta-list li,
.contact-list li,
.schedule-list li {
  position: relative;
  padding-left: 18px;
  color: var(--gray-600);
}
.timeline-list li::before,
.check-list li::before,
.meta-list li::before,
.contact-list li::before,
.schedule-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.quote-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: 14px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.quote-panel blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.5;
  margin-bottom: 18px;
}
.quote-panel p {
  color: rgba(255,255,255,.75);
}

.ministry-stack {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}
.ministry-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}
.ministry-detail img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}
.ministry-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.meta-box {
  background: var(--cream);
  border-radius: 8px;
  padding: 16px;
}
.meta-box strong {
  display: block;
  font-size: .76rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 6px;
}

.sermon-meta,
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 16px 0 20px;
  font-size: .82rem;
  color: var(--navy);
  font-weight: 600;
}
.sermon-meta span,
.event-meta span {
  background: var(--cream);
  border-radius: 999px;
  padding: 8px 12px;
}

.event-card.featured {
  background: linear-gradient(180deg, #fffdf8 0%, #f8f2e5 100%);
  border-color: rgba(201,168,76,.35);
}

.partner-card {
  text-align: left;
}

.contact-card,
.form-card,
.map-card {
  height: 100%;
}
.contact-card + .contact-card {
  margin-top: 20px;
}
.contact-card a {
  color: var(--navy);
}
.contact-card a:hover {
  color: var(--gold);
}
.form-card form {
  display: grid;
  gap: 18px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.field-group label {
  display: block;
  margin-bottom: 8px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--navy);
}
.field-group input,
.field-group textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: 14px 15px;
  font: inherit;
  color: var(--gray-800);
  background: #fff;
}
.field-group textarea {
  min-height: 170px;
  resize: vertical;
}
.field-group input:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.14);
}
.form-status {
  padding: 14px 16px;
  border-radius: 8px;
  font-size: .9rem;
}
.form-status.success {
  background: #edf7ee;
  color: #256238;
  border: 1px solid #b7d7bd;
}
.form-status.error {
  background: #fff2f0;
  color: #8d2d1f;
  border: 1px solid #efc2bb;
}
.map-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 12px;
}

.gallery-card {
  overflow: hidden;
}
.gallery-card img {
  height: 260px;
}
.gallery-caption {
  padding: 18px 20px 22px;
}
.gallery-caption h3 {
  margin-bottom: 8px;
}

.cta-banner {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy) 0%, #24395f 100%);
  color: var(--white);
  border-radius: 14px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 10px;
}
.cta-banner p {
  color: rgba(255,255,255,.75);
  max-width: 700px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .main-nav ul li a { padding: 8px 8px; font-size: .72rem; }
  .brand-name { font-size: .9rem; }
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: var(--navy-dark);
    border-top: 1px solid rgba(201,150,58,.3);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    z-index: 999;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
  }
  .main-nav ul {
    flex-direction: column;
    padding: 16px 0;
    white-space: normal;
  }
  .main-nav ul li a {
    padding: 14px 28px;
    font-size: .9rem;
    border-bottom: none;
    border-left: 3px solid transparent;
  }
  .main-nav ul li a:hover,
  .main-nav ul li a.active {
    border-left-color: var(--gold);
    background: rgba(201,168,76,.08);
  }

  .mission-grid,
  .welcome-grid,
  .community-inner,
  .two-col,
  .contact-grid,
  .ministry-detail { grid-template-columns: 1fr; gap: 40px; }

  .ministries-grid { grid-template-columns: 1fr 1fr; }
  .location-inner,
  .values-grid,
  .beliefs-grid,
  .sermons-grid,
  .outreach-grid,
  .gallery-grid,
  .partner-grid,
  .quick-contact-grid { grid-template-columns: 1fr; }
  .events-grid,
  .leadership-grid,
  .form-grid,
  .stats-row { grid-template-columns: 1fr; }
  .footer-topline,
  .footer-panels { grid-template-columns: 1fr; }

  .welcome-img-accent { display: none; }
  .welcome-badge { left: 16px; }

  .hero-content { margin-left: 0; }

  .service-bar-inner { flex-direction: column; }
  .service-item { border-right: none; border-bottom: 1px solid rgba(107, 29, 42, .2); }
  .service-item:last-child { border-bottom: none; }

  .event-item { grid-template-columns: 72px 1fr; }
  .event-time { display: none; }
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .ministries-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .page-section { padding: 72px 20px; }
  .page-hero-content { padding: 28px 20px; }
  .quote-panel,
  .cta-banner,
  .info-card,
  .belief-card,
  .value-card,
  .sermon-card,
  .event-card,
  .outreach-card,
  .partner-card,
  .contact-card,
  .form-card,
  .ministry-detail { padding: 22px; }
  .footer-panel { padding: 22px; }
  .footer-link-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-0  { margin-bottom: 0; }

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
