/* =========================================
   HERO SECTIONS (REUSABLE)
========================================= */

.live-hero,
.about-hero,
.donate-hero,
.contact-hero,
.sermon-hero,
.governance-hero,
.testimonies-hero {
  width: 100%;
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  overflow: hidden;
}

/* Specific Hero Backgrounds */
.live-hero { background-image: url('../images/edward-cisneros-QSa-uv4WJ0k-unsplash.jpg'); }
.sermon-hero { background-image: url('../images/sermon.jpg'); }
.testimonies-hero { background-image: url('../images/testimonies.jpg'); }
.contact-hero { background-image: url('../images/hero-contact.jpg'); }
.governance-hero { background-image: url('../images/governance.webp'); }

/* Hero Overlay + Text */
.hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  box-sizing: border-box;
}

.hero-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
  font-family: 'Prata', serif;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =========================================
   LIVE / EVENTS SECTION
========================================= */

.live-section {
  padding: 60px 20px;
  text-align: center;
  background: var(--light);
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  color: var(--dark);
}

.section-header p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto;
}

.iframe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.iframe-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.iframe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.iframe-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.iframe-card h3 {
  color: var(--dark);
  font-size: 1.2rem;
  margin: 15px;
}

.iframe-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 15px 20px;
}

.live-cta {
  margin-top: 50px;
}

.live-cta .btn {
  background: var(--dark);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.live-cta .btn:hover {
  background: var(--accent);
}

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

@media (max-width: 1024px) {
  .hero-text h1 { font-size: 2.4rem; }
}

@media (max-width: 768px) {
  .hero-text h1 { font-size: 2rem; }
  .hero-text p { font-size: 1rem; padding: 0 10px; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.7rem; }
}
