
/*
Hero section styles
*/

.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: black;
  overflow: hidden;
}

.video-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

#video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0,0,0,0.3);
  left: 0;
  top: 0;
  position: absolute;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-logo {
  width: 100%;
  max-width: 90vw;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .hero-logo {
    max-width: 70vw;
  }
}
