
#hero-video-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}
.video-container {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
}
#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.video-overlay-text {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  z-index: 2;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
