/* ============================================
   INDEX.CSS - Estilos específicos para index.html
   ============================================ */

/* Hero Section */
.hero-video-container {
  position: relative;
  overflow: hidden;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 17, 22, 0.85) 0%, rgba(14, 17, 22, 0.4) 100%);
  z-index: 1;
}

.hero-video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
  border: none;
}

@media (min-aspect-ratio: 16/9) {
  .hero-video-container iframe {
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
  }
}

@media (max-aspect-ratio: 16/9) {
  .hero-video-container iframe {
    width: 177.78vh; /* 16:9 aspect ratio */
    height: 100vh;
  }
}

.scroll-indicator {
  position: relative;
  display: inline-block;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width 0.4s ease;
}

.scroll-indicator:hover::after {
  width: 100%;
}
