.hero-intro-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  transition: opacity 0.8s ease;
}

.hero-intro-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.hero-intro-text {
  color: #fff;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-spinner {
  margin-top: 1.5rem;
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 2.8s linear infinite;
  margin-left: auto;
  margin-right: auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-intro-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
  transition: opacity 0.8s ease;
  min-height: 56.25vw;
  /*16: 9 aspect ratio fallback;*/
}

