/* ============================================================
   Pure Massage — Homepage Hero
   Image slideshow or video background, visual-only (no heading/
   content). A bit taller than the inner-page banner
   (page-banner.css: clamp(280px, 30vw, 400px)).
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(400px, 40vw, 560px);
  overflow: hidden;
}

/* No slide/video configured yet — don't reserve the hero's height
   for nothing, it would just push the footer down for no reason. */
.hero--empty {
  min-height: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

/* Disabled by default (no text to protect) — available if a future
   design pass wants a subtle brand tint over the photos/video. */
.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--color-primary);
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}
