/* Area slider penuh layar */
#slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Swiper container */
.swiper {
  width: 100%;
  height: 100%;
}

/* Setiap slide */
.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Gambar di dalam slide */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Caption untuk teks */
.caption {
  position: absolute;
  bottom: 5%;
  left: 5%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 1.2rem;
  border-radius: 10px;
  max-width: 90%;
  box-sizing: border-box;
}

.caption h3 {
  font-size: clamp(18px, 2.5vw, 32px);
  margin-bottom: 0.5rem;
}

.caption p {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.4;
}

/* Navigasi slider */
.swiper-button-next,
.swiper-button-prev {
  color: white;
}

/* Responsif tambahan untuk layar kecil */
@media (max-width: 480px) {
  .caption {
    padding: 1rem;
    bottom: 4%;
    left: 4%;
  }

  .caption h3 {
    font-size: 16px;
  }

  .caption p {
    font-size: 13px;
  }
}
