.hero-section {
  background: var(--tk-blue);
  margin-top: 4rem;
  padding: 3rem 0;
}

.hero-section h1 {
  color: var(--white);
}

p {
  font-size: 1.2rem;
}
/* GAYA BARU UNTUK GALERI SLIDER */
.gallery-section {
  padding: 3rem 0;
  position: relative; /* Diperlukan untuk posisi panah */
}
.gallery-container {
  width: 90%; /* Memberi sedikit ruang di sisi untuk panah */
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.gallery-track {
  display: flex;
  transition: transform 0.5s ease-in-out; /* Animasi geser */
  will-change: transform;
}
.gallery-track img {
  height: 250px;
  width: auto;
  margin: 0 1rem;
  border-radius: 1rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
  flex-shrink: 0; /* Mencegah gambar menyusut */
}
.gallery-track img:hover {
  transform: scale(1.05);
}

/* GAYA UNTUK TOMBOL PANAH */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, color 0.3s;
}
.arrow:hover {
  background-color: white;
  color: black;
}
.prev-arrow {
  left: 2%; /* Posisi panah kiri */
}
.next-arrow {
  right: 2%; /* Posisi panah kanan */
}
.arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* GAYA MODAL (TIDAK BERUBAH) */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}
.image-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}
.modal-close:hover {
  color: #ff8c00; /* Ganti dengan var(--accent-orange) jika Anda punya */
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* RESPONSIVE (TIDAK BERUBAH) */
@media (max-width: 768px) {
  .gallery-track img {
    height: 200px;
    margin: 0 0.5rem;
  }
  .arrow {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
  .prev-arrow {
    left: 1%;
  }
  .next-arrow {
    right: 1%;
  }
}

.kutilang-fair .container,
.ekspresi-seni .container,
.buku-tahunan .container {
  max-width: 1080px;
}

/* Gaya Tombol Audio */
.audio-toggle {
  position: fixed; /* Membuat tombol tetap di posisi tertentu */
  bottom: 20px; /* Jarak dari bawah */
  right: 20px; /* Jarak dari kanan */
  z-index: 10000; /* Pastikan tombol di atas elemen lain */
  background-color: #00b4d8; /* Warna biru Bootstrap */
  color: white;
  border: none;
  border-radius: 50%; /* Bentuk bulat */
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.audio-toggle:hover {
  background-color: #00b4d8; /* Warna biru lebih gelap saat hover */
  transform: scale(1.05);
}

.audio-toggle:active {
  transform: scale(0.95);
}

/* Gaya ikon untuk mode pause/mute (opsional) */
.audio-toggle .fa-volume-mute {
  /* Contoh gaya jika ingin ikon mute terlihat berbeda */
  color: #ccc; /* Agak redup */
}
