/* ============================================================
   Mill Creek Baptist Church — Main Stylesheet
   Fort McCoy, FL 32134 | (352) 546-2370
   ============================================================ */


:root {
  --navy: #1a2f5a;
  --blue: #2563a8;
  --blue-light: #3b82c4;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --cream: #f8f4ed;
  --charcoal: #2d2d2d;
  --gray: #6b7280;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 47, 90, 0.97);
  backdrop-filter: blur(10px);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 50px;
  filter: brightness(1.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
  background: rgba(255,255,255,0.08);
}

.nav-give {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-radius: 4px;
  padding: 0.5rem 1.2rem !important;
}

.nav-give:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

/* Hamburger hidden on desktop, shown via media query below */
.nav-hamburger { display: none !important; }

#hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(26,47,90,0.95) 0%, rgba(37,99,168,0.85) 50%, rgba(26,47,90,0.95) 100%);
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(59,130,196,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(37,99,168,0.2) 0%, transparent 60%);
}

.hero-bg::after {
  content: '✝';
  position: absolute;
  font-size: 55vw;
  color: rgba(255,255,255,0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.01) 2px,
    rgba(255,255,255,0.01) 4px
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 900px;
  animation: fadeUp 1.2s ease forwards;
}

.hero-cross {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 10px rgba(201,168,76,0.5); }
  to { text-shadow: 0 0 30px rgba(201,168,76,0.9), 0 0 60px rgba(201,168,76,0.4); }
}

.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.hero-title span {
  color: var(--gold-light);
  font-style: italic;
}

.hero-verse {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.5);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 0.9rem 2.2rem;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SERVICE TIMES BANNER ===== */
#service-banner {
  background: var(--navy);
  padding: 1rem 2rem;
}

.service-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.service-time-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.service-time-item .icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
}

.service-time-item .label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}

.service-time-item .time {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: white;
}

.divider-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* ===== SECTIONS SHARED ===== */
section { padding: 6rem 2rem; }

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before, .section-label::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--blue);
  opacity: 0.5;
}

.section-label.center {
  justify-content: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.section-title.center { text-align: center; }

.section-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
  max-width: 650px;
}

/* ===== WELCOME ===== */
#welcome {
  background: var(--cream);
}

.welcome-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.welcome-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.welcome-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  position: relative;
  z-index: 1;
}

.welcome-image::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 3px solid var(--gold);
  border-radius: 4px;
  z-index: 0;
}

.welcome-text .section-label { justify-content: flex-start; }
.welcome-text .section-label::before { display: none; }

.welcome-text .section-title {
  margin-bottom: 1.5rem;
}

.welcome-text .section-body {
  margin-bottom: 1.5rem;
}

.welcome-signature {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--navy);
  margin-top: 2rem;
  border-top: 1px solid rgba(26,47,90,0.15);
  padding-top: 1.5rem;
}

.welcome-signature span {
  display: block;
  font-family: 'Lato', sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.3rem;
}

/* ===== ABOUT / BELIEFS ===== */
#beliefs {
  background: var(--white);
}

.beliefs-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.beliefs-intro {
  max-width: 680px;
  margin: 1.5rem auto 4rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.belief-card {
  background: var(--cream);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  text-align: left;
  border-top: 4px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.belief-card::after {
  content: attr(data-number);
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(26,47,90,0.06);
  line-height: 1;
}

.belief-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.belief-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.belief-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.belief-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--gray);
}

/* ===== SERVICES ===== */
#services {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue-light), var(--gold));
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-inner .section-label { color: var(--gold-light); }
.services-inner .section-label::before,
.services-inner .section-label::after { background: var(--gold-light); }
.services-inner .section-title { color: white; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.service-day {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: white;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-time-display {
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.service-location {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

/* ===== MINISTRIES ===== */
#ministries {
  background: var(--cream);
}

.ministries-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ministries-header {
  text-align: center;
  margin-bottom: 4rem;
}

.ministries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ministry-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
  cursor: pointer;
}

.ministry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.ministry-img {
  height: 180px;
  object-fit: cover;
  width: 100%;
  display: block;
}

.ministry-img-placeholder {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.ministry-body {
  padding: 1.5rem;
}

.ministry-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.ministry-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
}

.ministry-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  transition: gap 0.2s;
}

.ministry-link:hover { gap: 0.6rem; color: var(--navy); }

/* ===== SERMONS ===== */
/* ===== SERMONS / YOUTUBE ===== */
#sermons {
  background: white;
}

.sermons-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sermons-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.youtube-channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.yt-icon {
  background: #FF0000;
  color: white;
  font-size: 0.65rem;
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
  line-height: 1;
}

.sermons-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

/* Left panel — YouTube embed */
.sermon-featured {
  background: var(--navy);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.sermon-yt-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #000;
}

.sermon-yt-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.sermon-yt-footer {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.sermon-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  width: fit-content;
}

.sermon-yt-note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.sermon-play {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
  width: fit-content;
}

.sermon-play:hover {
  background: var(--gold-light);
  transform: translateX(3px);
}

/* Right panel — Subscribe card + link list */
.sermon-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sermon-yt-subscribe {
  background: var(--navy);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.15rem;
}

.yt-logo {
  width: 44px;
  height: 44px;
  background: #FF0000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.yt-sub-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.2rem;
}

.yt-sub-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.yt-sub-btn {
  display: inline-block;
  background: #FF0000;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.yt-sub-btn:hover {
  background: #cc0000;
}

.sermon-item {
  background: var(--cream);
  border-radius: 6px;
  padding: 1.1rem 1.5rem;
  border-left: 4px solid var(--blue);
  cursor: pointer;
  transition: all 0.2s ease;
}

.sermon-item-link {
  text-decoration: none;
  display: block;
}

.sermon-item:hover {
  border-left-color: var(--gold);
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.sermon-item-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.sermon-item-meta {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.4;
}

.sermon-item-meta strong {
  color: var(--blue);
}


/* ===== EVENTS ===== */
#events {
  background: var(--cream);
}

.events-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.event-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.event-card:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.event-date-bar {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 1rem;
}

.event-month {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
}

.event-day {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  line-height: 1;
  color: white;
}

.event-dow {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.event-body {
  padding: 1.5rem;
}

.event-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.event-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.event-details {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.event-time-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--blue);
  font-weight: 700;
}

/* ===== STAFF ===== */
#staff {
  background: white;
}

.staff-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.staff-card {
  text-align: center;
}

.staff-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  display: block;
}

.staff-photo-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--gold);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

.staff-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.staff-role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.staff-bio {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ===== GIVE SECTION ===== */
#give {
  background: linear-gradient(135deg, var(--navy) 0%, #0f1e3d 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#give::before {
  content: '✝';
  position: absolute;
  font-size: 25rem;
  color: rgba(255,255,255,0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.give-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#give .section-label { color: var(--gold-light); justify-content: center; }
#give .section-label::before, #give .section-label::after { background: var(--gold-light); }
#give .section-title { color: white; text-align: center; margin-bottom: 1.5rem; }

.give-verse {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.give-verse cite {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
  font-family: 'Cinzel', serif;
}

.give-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.give-option {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.give-option:hover, .give-option.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ===== CONTACT ===== */
#contact {
  background: var(--cream);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .section-label { justify-content: flex-start; }
.contact-info .section-label::before { display: none; }

.contact-items {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-item-text .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.3rem;
}

.contact-item-text .value {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(26,47,90,0.15);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  background: var(--navy);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26,47,90,0.3);
}

/* ===== VERSE BANNER ===== */
.verse-banner {
  background: var(--gold);
  padding: 3.5rem 2rem;
  text-align: center;
}

.verse-banner-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--navy);
  max-width: 800px;
  margin: 0 auto 0.75rem;
  line-height: 1.5;
}

.verse-ref {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: rgba(26,47,90,0.7);
  text-transform: uppercase;
}

/* ===== FOOTER ===== */
footer {
  background: #0f1e3d;
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-brand img {
  height: 55px;
  margin-bottom: 1.25rem;
  filter: brightness(1.3);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.social-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
/* ===== RESPONSIVE — TABLET (max 1024px) ===== */
@media (max-width: 1024px) {
  .ministries-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .beliefs-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .sermons-grid { grid-template-columns: 1fr; }
  .sermons-header { flex-wrap: wrap; gap: 1rem; }
}

/* ===== RESPONSIVE — MOBILE (max 768px) ===== */
@media (max-width: 768px) {

  /* --- NAVBAR --- */
  nav {
    padding: 0 1.25rem;
    height: 64px !important;
    z-index: 9999 !important;
  }

  .nav-logo img { height: 42px; }

  /* Hide desktop nav links on mobile */
  .nav-links { display: none !important; }

  /* Mobile full-screen menu overlay */
  #mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(160deg, #0d1b36 0%, #1a2f5a 100%);
    z-index: 9998;
    flex-direction: column;
    padding: 0 2rem 1.5rem;
    overflow: hidden;
  }

  #mobile-menu.open {
    display: flex;
  }

  #mobile-menu a {
    flex: 1;
    display: flex !important;
    align-items: center;
    color: rgba(255,255,255,0.88) !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    padding: 0 0.5rem !important;
    transition: color 0.2s, padding-left 0.2s !important;
    background: none !important;
  }

  #mobile-menu a:first-child {
    border-top: 1px solid rgba(255,255,255,0.08) !important;
  }

  #mobile-menu a:last-child {
    border-bottom: none !important;
    flex: none !important;
    margin-top: 1rem;
  }

  #mobile-menu a:hover {
    color: var(--gold-light) !important;
    padding-left: 1rem !important;
  }

  #mobile-menu .mobile-give {
    background: var(--gold) !important;
    color: var(--navy) !important;
    justify-content: center !important;
    border-radius: 6px !important;
    padding: 1rem !important;
    box-shadow: 0 4px 20px rgba(201,168,76,0.35) !important;
    border-top: none !important;
  }

  #mobile-menu .mobile-give:hover {
    background: var(--gold-light) !important;
    padding-left: 1rem !important;
  }

  /* Hamburger icon */
  .nav-hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 99999;
    width: 38px;
    height: 38px;
  }

  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.25s ease;
    transform-origin: center;
  }

  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* --- HERO --- */
  section { padding: 3.5rem 1.25rem; }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.1;
  }

  .hero-verse {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .btn-primary, .btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 1rem 1.5rem;
  }

  /* --- SERVICE BANNER --- */
  .service-banner-inner {
    flex-direction: column;
    gap: 0.85rem;
    text-align: center;
    padding: 0.5rem 0;
  }

  .divider-dot { display: none; }

  .service-time-item {
    justify-content: center;
    width: 100%;
  }

  /* --- WELCOME --- */
  .welcome-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .welcome-image::before { display: none; }

  .welcome-image img,
  .welcome-img-placeholder {
    height: 280px;
  }

  .welcome-signature { font-size: 1.1rem; }

  /* --- BELIEFS --- */
  .beliefs-grid { grid-template-columns: 1fr; }

  /* --- SERVICES --- */
  .services-grid { grid-template-columns: 1fr; }

  /* --- MINISTRIES --- */
  .ministries-grid { grid-template-columns: 1fr; }

  /* --- SERMONS / YOUTUBE --- */
  .sermons-grid { grid-template-columns: 1fr; }

  .sermons-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .youtube-channel-btn {
    width: 100%;
    justify-content: center;
  }

  .sermon-yt-footer { padding: 1.25rem; }

  .sermon-yt-subscribe {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .yt-logo { margin: 0 auto; }

  /* --- EVENTS --- */
  .events-grid { grid-template-columns: 1fr; }

  .events-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .events-header .btn-primary {
    width: 100%;
    text-align: center;
  }

  /* --- STAFF --- */
  .staff-grid { grid-template-columns: 1fr; }

  /* --- GIVE --- */
  .give-options {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 2rem;
  }

  .give-option {
    width: 100%;
    text-align: center;
  }

  .give-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  /* --- CONTACT --- */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form { padding: 1.75rem 1.25rem; }

  .form-row { grid-template-columns: 1fr; }

  .contact-items { gap: 1.25rem; }

  /* --- FOOTER --- */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand img { height: 52px; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    font-size: 0.75rem;
  }
}

/* ===== RESPONSIVE — SMALL PHONES (max 420px) ===== */
@media (max-width: 420px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .service-card { padding: 1.5rem; }
  .event-card { flex-direction: column; }
  .event-date-bar {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    min-width: unset;
    width: 100%;
  }
  .event-month { font-size: 0.65rem; }
  .event-day { font-size: 1.8rem; }
  .staff-grid { grid-template-columns: 1fr; }
  .ministries-grid { grid-template-columns: 1fr; }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== ADDITIONAL UTILITY STYLES ===== */

.ministries-intro {
  max-width: 600px;
  margin: 1rem auto 0;
  text-align: center;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.75;
}

.staff-intro {
  max-width: 560px;
  margin: 1rem auto 0;
  color: var(--gray);
  line-height: 1.75;
}

.give-body {
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.give-btn {
  font-size: 0.95rem;
  padding: 1rem 3rem;
}

.contact-intro {
  margin-top: 1rem;
  color: var(--gray);
  line-height: 1.75;
  font-size: 0.95rem;
}
