/* ============================
   LBC HOME PAGE STYLES
   MOBILE-FIRST DESIGN
   Base = Mobile, scale UP with min-width
   ============================ */

/* ============================
   GLOBAL / REUSABLE
   ============================ */

/* Container - Mobile Base */
.container {
  width: 100%;
  padding-inline: 1rem;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .container {
    /* Match canon header/footer container width for consistent centering */
    max-width: 1200px;
    padding-inline: 0;
  }
}

/* Buttons - Mobile Base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  width: 100%;
  text-align: center;
}

.btn:active {
  transform: scale(0.98);
}

/* Primary Button - Gold Gradient */
.btn:not(.btn-outline) {
  background: linear-gradient(135deg, #d0a75f, #facc6b);
  color: var(--lbc-navy);
  box-shadow: 0 6px 18px rgba(208, 167, 95, 0.35);
}

.btn:not(.btn-outline):hover {
  box-shadow: 0 8px 24px rgba(208, 167, 95, 0.45);
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Outline Button */
.btn-outline {
  border-color: rgba(148,163,184,0.4);
  color: var(--lbc-navy);
  background: transparent;
}

.btn-outline:hover {
  background: var(--lbc-navy);
  border-color: var(--lbc-navy);
  color: #fff;
}

@media (min-width: 480px) {
  .btn {
    width: auto;
    font-size: 0.85rem;
    padding: 0.75rem 1.75rem;
  }
}

/* Section Typography - Mobile Base */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-kicker {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lbc-gold);
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 700;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 1rem;
  color: var(--lbc-navy);
  line-height: 1.2;
}

.section-lead {
  font-size: 1rem;
  color: var(--lbc-text-soft);
  line-height: 1.7;
  margin: 0 auto;
}

/* Line-length guard (migrated from Customizer Additional CSS 2026-06-13 — keep homepage theme-owned) */
body.home :where(.section-lead, .section-intro, .section-subtitle) {
  max-width: 70ch;
}

/* Header rhythm: sermon anchors left with a gold rule; about + others stay centered
   (about header centered keeps its photo split visually balanced — no empty top-right). */
.sermon-section .section-header {
  text-align: left;
}

.sermon-section .section-header .section-kicker::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--lbc-gold);
  margin-top: 0.5rem;
  border-radius: 2px;
}

.sermon-section .section-header .section-lead {
  margin-left: 0;
  text-align: left;
}

@media (min-width: 640px) {
  .section-kicker {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-lead {
    font-size: 1.1rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.4rem;
  }
}

/* ============================
   1. HERO SECTION - Mobile First
   ============================ */
.hero {
  position: relative;
  padding: 4rem 0 4rem;
  min-height: auto;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--lbc-navy);
  overflow: hidden;
}

/* Background Image */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../images/LBC-Foyer-Upscaled.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark Gradient Overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 16, 33, 0.94) 0%,
    rgba(11, 16, 33, 0.88) 50%,
    rgba(11, 16, 33, 0.82) 100%
  );
  z-index: 1;
}

/* Hero Content - Mobile: Single Column, Centered */
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* Left Column - Text Content */
.hero-left {
  max-width: 100%;
}

.hero-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lbc-gold);
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(208, 167, 95, 0.4);
  border-radius: 999px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 1.5rem;
}

/* Scripture Quote Block - Mobile */
.hero-scripture {
  margin: 1.5rem 0;
  padding: 1.25rem;
  border-left: 3px solid var(--lbc-gold);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border-radius: 0 0.5rem 0.5rem 0;
  text-align: left;
}

.hero-scripture-main {
  display: block;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #e5e7eb;
  margin-bottom: 0.4rem;
}

.hero-highlight {
  color: #facc6b;
  font-weight: 600;
  font-style: italic;
}

.hero-scripture-ref {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.6rem;
  font-style: italic;
}

/* Hero Actions - Mobile: Stack */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 1.25rem;
}

.hero .btn {
  padding: 0.85rem 1.5rem;
}

/* Hero primary button - subtle glow to match other CTA buttons */
.hero .btn:not(.btn-outline) {
  box-shadow: 0 4px 15px rgba(208, 167, 95, 0.25);
}

.hero .btn:not(.btn-outline):hover {
  box-shadow: 0 6px 20px rgba(208, 167, 95, 0.35);
}

.hero .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.hero .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
}

.hero-supporting {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* Right Column - Service Times Card (Mobile) */
.hero-right {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148,163,184,0.25);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 360px;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lbc-gold);
  margin: 0 0 1.25rem;
  font-weight: 700;
  text-align: center;
}

.hero-times {
  display: flex;
  flex-direction: column;
}

.hero-times-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-times-row:last-child {
  border-bottom: none;
}

.hero-times-row span:first-child {
  color: #cbd5e1;
  font-size: 0.9rem;
}

.hero-times-row span:last-child {
  color: #fff;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.hero-location {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-location strong {
  display: block;
  color: #fff;
  margin: 0.4rem 0;
}

.hero-location a {
  display: inline-block;
  margin-top: 0.4rem;
  color: var(--lbc-gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.hero-location a:hover {
  color: #facc6b;
}

/* Hero - Tablet (min-width: 640px) */
@media (min-width: 640px) {
  .hero {
    padding: 6rem 0 5rem;
  }

  .hero-kicker {
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
  }
  
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }
  
  .hero .btn {
    width: auto;
  }
  
  .hero-card {
    padding: 2rem;
  }
}

/* Hero - Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
  .hero {
    padding: 10rem 0 8rem;
    min-height: 85vh;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    text-align: left;
    align-items: center;
  }
  
  .hero-left {
    max-width: 640px;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
  }
  
  .hero-scripture {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  
  .hero-scripture-main {
    font-size: 1.02rem;
    line-height: 1.7;
  }
  
  .hero-actions {
    justify-content: flex-start;
    margin-bottom: 1.5rem;
  }
  
  .hero .btn {
    padding: 0.9rem 2rem;
    font-size: 0.88rem;
  }
  
  .hero-supporting {
    font-size: 0.95rem;
  }
  
  .hero-right {
    justify-content: flex-end;
  }
  
  .hero-card {
    max-width: 380px;
    padding: 2.25rem;
  }
  
  .hero-card-title {
    font-size: 0.95rem;
    letter-spacing: 0.14em;
  }
  
  .hero-times-row span:first-child {
    font-size: 0.95rem;
  }
  
  .hero-times-row span:last-child {
    font-size: 0.95rem;
  }
}

/* ============================
   2. QUICK INFO BAR - Mobile First
   ============================ */
.quick-info {
  padding: 2rem 0;
  background: linear-gradient(135deg, #0b1021 0%, #0f1b36 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Mobile: Single column */
.quick-info-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quick-card {
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--lbc-gold);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quick-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 0.6rem;
  border-radius: 50%;
  background: rgba(208, 167, 95, 0.12);
  color: var(--lbc-gold);
}

@media (hover:hover) {
  .quick-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.10);
    border-color: rgba(208, 167, 95, 0.35);
    box-shadow: 0 16px 34px rgba(0,0,0,0.22);
  }
}

.quick-card:focus-within {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(208, 167, 95, 0.45);
}

.quick-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lbc-gold);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.quick-main {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.quick-extra {
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.9);
  line-height: 1.5;
}

/* Quick Info - Tablet: 2x2 Grid */
@media (min-width: 640px) {
  .quick-info {
    padding: 2.5rem 0;
  }
  
  .quick-info-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .quick-card {
    padding: 1.4rem 1.1rem;
  }
}

/* Quick Info - Desktop: 4 columns */
@media (min-width: 900px) {
  .quick-info {
    padding: 3rem 0;
  }
  
  .quick-info-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }

  .quick-card {
    padding: 1.5rem 1.15rem;
  }
  
  .quick-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
  
  .quick-main {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
  }
  
  .quick-extra {
    font-size: 0.88rem;
  }
}

/* ============================
   CENTERING GUARDS
   Ensures sections remain visually centered even if WP/global defaults add margins.
   ============================ */
.about .section-header,
.ministries-section .section-header,
.sermon-section .section-header {
  margin-left: auto;
  margin-right: auto;
}

.about-inner,
.sermon-grid,
.ministry-grid,
.visit-inner {
  margin-left: auto;
  margin-right: auto;
}

/* ============================
   3. ABOUT / WHO WE ARE - Mobile First
   ============================ */
.about {
  padding: 3.5rem 0;
  background: var(--lbc-cream);
}

.about .section-header {
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Mobile: Single column */
.about-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-lg);
  border: 3px solid var(--lbc-gold);
  box-shadow: 0 15px 35px rgba(11, 16, 33, 0.12);
}

.about-body p {
  color: var(--lbc-text-soft);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-emphasis {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(148,163,184,0.15);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  margin-top: 2rem;
  max-width: 1100px;
  margin-inline: auto;
}

.about-emphasis strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--lbc-navy);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.about-emphasis ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-emphasis ul li {
  color: var(--lbc-text-soft);
  line-height: 1.75;
  font-size: 0.9rem;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.35rem;
}

.about-emphasis ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--lbc-gold);
  font-weight: bold;
}

/* About - Tablet */
@media (min-width: 640px) {
  .about {
    padding: 4.5rem 0;
  }
  
  .about .section-header {
    margin-bottom: 2.5rem;
  }
  
  .about-body p {
    font-size: 1rem;
  }
  
  .about-emphasis {
    padding: 2rem;
  }
}

/* About - Desktop */
@media (min-width: 900px) {
  .about {
    padding: 5.5rem 0;
  }
  
  .about-inner {
    /* Prevent the grid from feeling "left heavy" on very wide screens */
    max-width: 1100px;
    margin-inline: auto;
  }

  .about-inner.has-photo {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
  }

  .about-emphasis ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem 2.5rem;
  }

  .about-body {
    max-width: 640px;
  }
  
  .about-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }
  
  .about-emphasis {
    padding: 2rem 2.25rem;
    font-size: 0.98rem;
    line-height: 1.8;
  }
  
  .about-emphasis strong {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

/* ============================
   4. MEET THE PASTOR - Featured Dark Section
   ============================ */
.pastor-feature {
  position: relative;
  padding: 3.5rem 0;
  background: var(--lbc-navy);
  color: #fff;
  overflow: hidden;
}

.pastor-feature-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0b1021 0%, #1a2744 50%, #0b1021 100%);
  opacity: 1;
}

.pastor-feature-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(208, 167, 95, 0.08) 0%, transparent 60%);
}

.pastor-feature .container {
  position: relative;
  z-index: 2;
}

/* Mobile: Single column, stacked */
.pastor-feature-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

/* Photo Column */
.pastor-photo-column {
  flex-shrink: 0;
}

.pastor-photo-frame {
  position: relative;
  width: 220px;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--lbc-gold);
  box-shadow:
    0 0 0 6px rgba(208, 167, 95, 0.15),
    0 20px 40px rgba(0, 0, 0, 0.4);
}

.pastor-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.pastor-photo-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #64748b;
}

.pastor-photo-placeholder span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Content Column */
.pastor-content-column {
  max-width: 500px;
}

.pastor-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lbc-gold);
  margin-bottom: 0.5rem;
}

.pastor-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

.pastor-bio {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #cbd5e1;
  margin: 0 0 1rem;
}

.pastor-bio:last-of-type {
  margin-bottom: 1.5rem;
}

.pastor-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.pastor-actions .btn {
  width: 100%;
  max-width: 220px;
}

.pastor-feature .btn-primary {
  background: linear-gradient(135deg, var(--lbc-gold), #facc6b);
  color: var(--lbc-navy);
}

.pastor-feature .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
}

.pastor-feature .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Video Column */
.pastor-video-column {
  width: 100%;
  max-width: 280px;
}

.pastor-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid rgba(208, 167, 95, 0.4);
  box-shadow: 
    0 0 0 6px rgba(208, 167, 95, 0.1),
    0 20px 40px rgba(0, 0, 0, 0.4);
}

.pastor-video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1a2744 0%, #0f172a 100%);
  text-align: center;
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-placeholder:hover {
  background: linear-gradient(180deg, #1e2d4d 0%, #131c2e 100%);
}

.play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(208, 167, 95, 0.25), rgba(208, 167, 95, 0.1));
  border: 2px solid var(--lbc-gold);
  color: var(--lbc-gold);
  transition: all 0.3s ease;
}

.video-placeholder:hover .play-icon {
  background: linear-gradient(135deg, rgba(208, 167, 95, 0.4), rgba(208, 167, 95, 0.2));
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(208, 167, 95, 0.3);
}

.play-icon svg {
  margin-left: 4px; /* Optical center for play triangle */
}

.video-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.video-coming {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lbc-gold);
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  background: rgba(208, 167, 95, 0.15);
  border-radius: 999px;
  border: 1px solid rgba(208, 167, 95, 0.3);
}

/* Pastor Feature - Tablet */
@media (min-width: 640px) {
  .pastor-feature {
    padding: 4.5rem 0;
  }

  .pastor-photo-frame {
    width: 260px;
    height: 350px;
  }

  .pastor-name {
    font-size: 2rem;
  }

  .pastor-bio {
    font-size: 1rem;
  }

  .pastor-actions {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .pastor-actions .btn {
    width: auto;
    max-width: none;
  }
}

/* Pastor Feature - Desktop: Two Columns (Photo + Content), Centered */
@media (min-width: 1024px) {
  .pastor-feature {
    padding: 5.5rem 0;
  }

  .pastor-feature-inner {
    display: grid;
    grid-template-columns: auto auto;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
  }

  .pastor-photo-frame {
    width: 300px;
    height: 400px;
  }

  .pastor-content-column {
    max-width: 480px;
  }

  .pastor-kicker {
    font-size: 0.85rem;
  }

  .pastor-name {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }

  .pastor-bio {
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .pastor-bio:last-of-type {
    margin-bottom: 2rem;
  }

  .pastor-actions {
    justify-content: flex-start;
  }
}

/* Pastor Feature - Large Desktop */
@media (min-width: 1200px) {
  .pastor-feature-inner {
    gap: 5rem;
    max-width: 1000px;
  }

  .pastor-photo-frame {
    width: 340px;
    height: 450px;
  }

  .pastor-content-column {
    max-width: 500px;
  }
}

/* ============================
   5. SERMON HIGHLIGHT - Mobile First
   ============================ */
.sermon-section {
  padding: 3.5rem 0;
  background: #f4ebe0;
}

/* Mobile: Single column */
.sermon-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.sermon-card {
  background: var(--lbc-navy);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(208, 167, 95, 0.25);
  box-shadow: 0 15px 35px rgba(11, 16, 33, 0.22);
}

.sermon-meta {
  font-size: 0.8rem;
  color: var(--lbc-gold);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.sermon-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0 0 0.6rem;
  color: var(--lbc-cream, #fdf8ee);
  line-height: 1.25;
}

.sermon-ref {
  font-style: italic;
  color: var(--lbc-gold);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.sermon-text {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.sermon-side-note {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sermon-side-note p {
  color: var(--lbc-text-soft);
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

/* Sermon - Tablet */
@media (min-width: 640px) {
  .sermon-section {
    padding: 4.5rem 0;
  }
  
  .sermon-grid {
    margin-top: 2.5rem;
  }
  
  .sermon-card {
    padding: 2rem;
  }
  
  .sermon-title {
    font-size: 1.5rem;
  }
}

/* Sermon - Desktop */
@media (min-width: 900px) {
  .sermon-section {
    padding: 5.5rem 0;
  }
  
  .sermon-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3.5rem;
    margin-top: 3rem;
    align-items: flex-start;
    max-width: 1100px;
    margin-inline: auto;
  }
  
  .sermon-card {
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  }
  
  .sermon-meta {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }
  
  .sermon-title {
    font-size: 1.75rem;
  }
  
  .sermon-ref {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
  }
  
  .sermon-text {
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 2rem;
  }
  
  .sermon-side-note {
    gap: 1.5rem;
    padding-top: 0.5rem;
  }
  
  .sermon-side-note p {
    line-height: 1.75;
  }
}

/* ============================
   6. MINISTRIES - Mobile First
   ============================ */
.ministries-section {
  padding: 3.5rem 0;
  background: var(--lbc-cream);
}

/* Mobile: Single column */
.ministry-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.min-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(148,163,184,0.15);
  text-align: center;
  transition: all 0.25s ease;
  overflow: hidden;
}

.min-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(11,16,33,0.08);
  border-color: var(--lbc-gold);
}

.min-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(208, 167, 95, 0.15), rgba(208, 167, 95, 0.05));
  border-radius: 50%;
  color: var(--lbc-gold);
  margin-bottom: 1rem;
}

/* Photo-top ministry cards: image bleeds to card edges, icon becomes a chip on the seam */
.min-photo {
  position: relative;
  margin: -1.5rem -1.5rem 2rem;
}

.min-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.min-photo .min-icon {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  margin: 0;
  background: var(--lbc-navy);
  border: 2px solid var(--lbc-gold);
  color: var(--lbc-gold);
}

.min-photo .min-icon svg {
  width: 18px;
  height: 18px;
}

.min-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lbc-gold);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.min-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.6rem;
  color: var(--lbc-navy);
}

.min-text {
  color: var(--lbc-text-soft);
  line-height: 1.6;
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.min-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lbc-gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.min-link:hover {
  color: var(--lbc-gold-hover);
}

/* Ministries - Tablet: 2 columns */
@media (min-width: 640px) {
  .ministries-section {
    padding: 4.5rem 0;
  }
  
  .ministry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  
  .min-card {
    padding: 1.75rem;
  }
  
  .min-label {
    font-size: 0.72rem;
  }
  
  .min-title {
    font-size: 1.1rem;
  }
}

/* Ministries - Desktop: 4 columns (for 4 ministry cards) */
@media (min-width: 900px) {
  .ministries-section {
    padding: 5.5rem 0;
  }

  .ministry-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin-inline: auto;
  }
  
  .min-card {
    padding: 2rem 1.75rem;
  }
  
  .min-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(11,16,33,0.1);
  }
  
  .min-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
  }
  
  .min-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
  }
  
  .min-text {
    font-size: 0.95rem;
  }
}

/* ============================
   7. PLAN YOUR VISIT - Mobile First
   ============================ */
.visit {
  padding: 3.5rem 0;
  background: #f4ebe0;
}

/* Mobile: Single column, stacked */
.visit-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.visit-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--lbc-navy);
}

.visit-text {
  color: var(--lbc-text-soft);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.visit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.visit-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--lbc-text);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.4;
}

.visit-list li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lbc-gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.visit-card {
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border: 1px solid rgba(148,163,184,0.15);
}

.visit-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--lbc-navy);
}

.visit-card p {
  color: var(--lbc-text-soft);
  line-height: 1.75;
  font-size: 0.95rem;
  margin: 0;
}

.visit-card .btn {
  margin-top: 1rem;
}

/* Visit - Tablet */
@media (min-width: 640px) {
  .visit {
    padding: 4.5rem 0;
  }
  
  .visit-title {
    font-size: 1.75rem;
  }
  
  .visit-card {
    padding: 2rem;
  }
  
  .visit-card strong {
    font-size: 1.15rem;
  }
}

/* Visit - Desktop */
@media (min-width: 900px) {
  .visit {
    padding: 5.5rem 0;
  }
  
  .visit-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .visit-title {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
  }
  
  .visit-text {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
  }
  
  .visit-list {
    gap: 0.85rem;
  }
  
  .visit-list li {
    gap: 0.85rem;
  }
  
  .visit-list li::before {
    width: 26px;
    height: 26px;
    font-size: 0.85rem;
  }
  
  .visit-card {
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  }
  
  .visit-card strong {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
/* ====================================================================
   FEATURED EVENTS SECTION - Homepage Display
   ==================================================================== */

.featured-events-section {
    padding: 4rem 0;
    background: var(--lbc-cream, #fdf8ee);
}

/* Section Header */
.featured-events-section .section-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.featured-events-section .section-kicker {
    display: inline-block;
    font-family: var(--font-heading, "Montserrat"), sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lbc-gold, #d0a75f);
    margin-bottom: 0.75rem;
}

.featured-events-section .section-title {
    font-family: var(--font-heading, "Montserrat"), sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--lbc-navy, #0b1021);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.featured-events-section .section-lead {
    font-size: 1.125rem;
    color: var(--lbc-text-soft, #4b5563);
    line-height: 1.6;
}

/* Featured Events Grid */
.featured-events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Event Card */
.featured-event-card {
    background: #ffffff;
    border-radius: var(--radius-lg, 1.25rem);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.featured-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Today's Event Special Styling */
.featured-event-card.event-today {
    border: 3px solid var(--lbc-gold, #d0a75f);
    box-shadow: 0 8px 24px rgba(208, 167, 95, 0.2);
}

/* Event Image */
.event-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--lbc-navy-soft, #1e293b);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--lbc-navy-soft, #1e293b);
    transition: transform 0.4s ease;
}

.featured-event-card:hover .event-image img {
    transform: scale(1.05);
}

/* Event Badge (Today, Soon) */
.event-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-family: var(--font-heading, "Montserrat"), sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 10;
}

.event-today-badge {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

.event-soon-badge {
    background: linear-gradient(135deg, var(--lbc-gold, #d0a75f), #b48e4d);
    color: var(--lbc-navy, #0b1021);
    box-shadow: 0 4px 12px rgba(208, 167, 95, 0.3);
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Event Content */
.event-content {
    padding: 1.5rem;
}

/* Event Meta (Date, Time, Location) */
.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--lbc-text-soft, #4b5563);
}

.event-meta-item svg {
    flex-shrink: 0;
    color: var(--lbc-gold, #d0a75f);
}

/* Event Title */
.event-title {
    font-family: var(--font-heading, "Montserrat"), sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.event-title a {
    color: var(--lbc-navy, #0b1021);
    text-decoration: none;
    transition: color 0.2s ease;
}

.event-title a:hover {
    color: var(--lbc-gold, #d0a75f);
}

/* Event Highlights */
.event-highlights,
.event-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--lbc-text, #1f2933);
    margin-bottom: 1.25rem;
}

.event-highlights ul,
.event-highlights ol {
    margin: 0;
    padding-left: 1.25rem;
}

.event-highlights li {
    margin-bottom: 0.5rem;
}

.event-highlights strong {
    color: var(--lbc-navy, #0b1021);
}

/* Event Details (Cost, RSVP) */
.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.event-cost {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    background: #f3f4f6;
    border-radius: 999px;
    font-family: var(--font-heading, "Montserrat"), sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lbc-navy, #0b1021);
}

.event-registration-required {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    background: rgba(208, 167, 95, 0.15);
    border-radius: 999px;
    font-family: var(--font-heading, "Montserrat"), sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lbc-gold, #d0a75f);
}

/* Event Actions */
.event-actions {
    display: flex;
    gap: 0.75rem;
}

.event-actions .btn {
    flex: 1;
    text-align: center;
}

/* Section Footer */
.section-footer {
    text-align: center;
}

.section-footer .btn {
    min-width: 200px;
}

/* Button Styles - Pill shape with gold gradient (matches Our History) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading, "Montserrat"), sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--lbc-gold, #d0a75f), #facc6b);
    color: var(--lbc-navy, #0b1021);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(208, 167, 95, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(208, 167, 95, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--lbc-navy, #0b1021);
    border-color: var(--lbc-navy, #0b1021);
}

.btn-outline:hover {
    background: var(--lbc-navy, #0b1021);
    color: #ffffff;
}

/* ====================================================================
   RESPONSIVE DESIGN
   ==================================================================== */

/* Tablet (640px+) */
@media (min-width: 640px) {
    .featured-events-section .section-title {
        font-size: 3rem;
    }
    
    .event-content {
        padding: 2rem;
    }
    
    .event-title {
        font-size: 1.75rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .featured-events-section {
        padding: 5rem 0;
    }
    
    /* 2-column grid for 2 events */
    .featured-events-grid:has(.featured-event-card:nth-child(2):last-child) {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    /* 3-column grid for 3 events */
    .featured-events-grid:has(.featured-event-card:nth-child(3)) {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .event-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .featured-events-grid {
        gap: 2.5rem;
    }
    
    .featured-events-section .section-header {
        margin-bottom: 4rem;
    }
}

/* =========================================================
   FAQ - Mobile Base
   ========================================================= */
.faq {
  padding: 3rem 0;
  background: var(--lbc-cream);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--lbc-white);
  border: 1px solid var(--lbc-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item[open] {
  border-color: var(--lbc-border-soft);
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 44px;
  padding: 1rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--lbc-navy);
  line-height: 1.4;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: "+";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--lbc-gold);
  transition: var(--transition-transform);
}

.faq-item[open] .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__question:focus-visible {
  outline: 2px solid var(--lbc-gold);
  outline-offset: -2px;
}

.faq-item__answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--lbc-text-soft);
  font-size: 0.95rem;
  line-height: var(--line-height-relaxed);
}

.faq-item__answer p {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__question::after {
    transition: none;
  }
}

/* FAQ - Tablet */
@media (min-width: 640px) {
  .faq {
    padding: 4.5rem 0;
  }

  .faq-item__question {
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
  }

  .faq-item__answer {
    padding: 0 1.5rem 1.5rem;
    font-size: 1rem;
  }
}

/* FAQ - Desktop */
@media (min-width: 900px) {
  .faq {
    padding: 5.5rem 0;
  }
}
