/* Video Background Styles for AI Super Hero Squad Website */

/* Full-width video background container */
.video-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

/* YouTube iframe styling */
.video-background-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none; /* Prevents clicks on the video */
}

/* For wider screens, ensure the video covers the entire width */
@media (min-aspect-ratio: 16/9) {
  .video-background-container iframe {
    height: 56.25vw; /* 16:9 aspect ratio (9/16 = 0.5625 or 56.25%) */
  }
}

/* For taller screens, ensure the video covers the entire height */
@media (max-aspect-ratio: 16/9) {
  .video-background-container iframe {
    width: 177.78vh; /* 16:9 aspect ratio (16/9 = 1.7778 or 177.78%) */
  }
}

/* Video overlay for better text readability */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: -1;
}

/* Mobile fallback background */
@media (max-width: 768px) {
  .mobile-fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a1a2e, #16213e, #0f3460);
    z-index: -2;
  }
}

/* Hero section positioning with video background */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  z-index: 1;
}

/* Ensure content is above video */
.hero-content {
  position: relative;
  z-index: 2;
}

/* Particle effects for additional visual interest */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
