/* ============================================================
   MODULE: Hero Section
   Greater Tshwane Area — Church Website
   ============================================================ */

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--deep-brown) 0%, var(--warm-brown) 55%, #5C3D25 100%);
  overflow: hidden;
  position: relative;
}

/* Subtle dot-pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Warm glow orb */
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; width: 100%; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: center;
  padding: 80px 0;
}

/* ── Left column ── */
.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  color: var(--soft-gold);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: white;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.2;
}
.hero h1 em {
  color: var(--soft-gold);
  font-style: normal;
}
.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--soft-gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 5px;
}

/* ── Right column — Church map card ── */
.hero-map-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(10px);
}
.hero-map-title {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 20px;
}
.map-pin {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.map-pin:last-of-type { border-bottom: none; }
.map-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--soft-gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(212,168,83,0.2);
}
.map-dot.green    { background: var(--sage);       box-shadow: 0 0 0 4px rgba(122,139,111,0.2); }
.map-dot.terra    { background: var(--terracotta); box-shadow: 0 0 0 4px rgba(193,123,74,0.2); }
.map-pin-church   { font-size: 0.88rem; font-weight: 500; color: white; }
.map-pin-pastor   { font-size: 0.72rem; color: rgba(255,255,255,0.42); margin-top: 2px; }
.hero-map-footer  { font-size: 0.62rem; color: rgba(255,255,255,0.25); text-align: center; margin-top: 14px; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; padding: 60px 0; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-map-card { max-width: 360px; margin: 0 auto; text-align: left; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 20px; }
}
