/* === Slideshow Background === */
.bg-slideshow {
  background-size: cover;
  background-position: center;
  animation: slideshow 12s infinite;
}

@keyframes slideshow {
  0%,
  100% {
    background-image: url("https://raden.ciamiskab.go.id/storage/home/backgrounds/01K0BHFQBS55YQYJVRJ4APM5Q4.png");
  }
  50% {
    background-image: url("https://raden.ciamiskab.go.id/storage/home/backgrounds/01K0BHG7R28TB1N9VMWABA7CP9.jpg");
  }
  75% {
    background-image: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2bcc85s-OQY4shYOFm5bH-qxma7wNKtTgLilkCVJIvUOIXNxAW_t-q-8staSSPBQ5qVu5X_T11KByAe_pYam5o09kISf04atfDsLFX5KEp6bBrcNNkIa78XT9xBARC1K0oabTZlPg9BhpSo9xg83wKSAx2eo-2v4YhzOsPWllFTqYmiOa5BYhmgsXBbwx/s2048/mini%20ranch%20ciamis.jpeg");
  }
}

/* === Poster Fade (contoh tambahan) === */
.poster-fade {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.poster-fade.show {
  opacity: 1;
}

/* Scrollbar halus untuk agenda */
.custom-scroll::-webkit-scrollbar {
  width: 6px;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background-color: #9b5de5; /* warna ungu lilac-bush */
  border-radius: 9999px; /* biar bulat */
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #7a3fd0; /* lebih gelap saat hover */
}

.custom-scroll::-webkit-scrollbar-track {
  background: transparent;
}
