.slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

video.video-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
  pointer-events: none;
}

video.video-slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 2;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 3;
}

.text-overlay h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 10px #ffffff;
}

@media (max-width: 768px) {
  .text-overlay h1 {
    font-size: 2rem;
  }
}
