
/* HERO ROTATOR */
.hero-rotator {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-rotator .hero-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
  opacity: 0;
  z-index: 0;
}
.hero-rotator .hero-layer.visible { opacity: 1; }
.hero-rotator .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.25));
  z-index: 1;
}
.hero-rotator .hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 1.5rem;
}
.navbar, header.navbar { position: relative; z-index: 10; }
