/* =====================
   Hero / Splash Section
   ===================== */

.hero-fullscreen {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 3rem 1.5rem;
}

.hero-fullscreen .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/header-bg.jpg"); /* adjust if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 4vw, 4rem);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 auto 2rem;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
