/* Pastikan aspek rasio gambar tetap kotak (1:1) seperti referensi sebelumnya */
.event-img-wrapper {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}

.event-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  color: white;
  padding: 20px;
}

.overlay-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}

/* Navigasi kustom agar tidak menutupi gambar */
.custom-nav-btn {
  width: 5%;
}

.nav-icon-circle {
  background: none; /* Rose Gold */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- SLICK SLIDER CARD STYLES --- */
.menu-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f5f5f5;
  outline: none; /* Menghilangkan border biru saat diklik */
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}

.card-img-wrapper {
  width: 100%;
  height: 250px; /* Anda bisa mengubah tingginya sesuai selera (misal 200px atau 300px) */
  overflow: hidden;
}

.menu-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Gambar akan di-crop otomatis agar pas bingkai */
  object-position: center; /* Fokus crop selalu di tengah gambar */
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-photo {
  transform: scale(1.05);
}

.menu-card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #333333;
  font-size: 1.3rem;
}

.menu-card-desc {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
  height: 3em; /* Menjaga tinggi deskripsi tetap sama */
  overflow: hidden;
}

.menu-card-price.color-gold {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #D4AF37; /* Classic Muted Gold */
}

/* Modifikasi Warna Navigasi Slick (Rose Gold) */
.slick-prev:before, .slick-next:before {
  color: #D4AF37 !important; /* Warna panah */
  font-size: 30px;
}

.slick-dots li.slick-active button:before {
  color: #D4AF37 !important; /* Warna titik aktif */
}

.slick-dots li button:before {
  color: #333; /* Warna titik tidak aktif */
}

/* --- SLICK SLIDER EVENT CUSTOMIZATION --- */


/* Efek angkat (Hover) pada kartu event */
.event-card {
  min-height: 600px;
  max-height: 600px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card-content {
  min-height: 200px;
  max-height: 200px;
  padding: 1vh;
}
.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

@media (max-width: 768px) {
  .carousel-control-prev.custom-out-nav { left: -10px; }
  .carousel-control-next.custom-out-nav { right: -10px; }
}

/* Responsive: Di mobile, panah agak ke luar atau ke tengah */
@media (max-width: 768px) {
  .carousel-control-prev { left: -20px; }
  .carousel-control-next { right: -20px; }
}