.home-slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

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

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}

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

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 4;
  max-width: 800px;
  padding: 20px;
}

.slide-title {
  font-size: 3rem;
  margin: 0 0 15px;
  font-weight: 700;
}

.slide-text {
  font-size: 1.5rem;
  margin: 0;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.dot {
  width: 3rem;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  border-radius: 20px;
  transition: 0.3s;
}

.dot.active,
.dot:hover {
  background: white;
}

/* Adaptive */
@media (max-width: 768px) {
  .home-slider {
    height: 400px;
  }
  .slide-title {
    font-size: 2rem;
  }
  .slide-text {
    font-size: 1.2rem;
  }
}
