/* --- VARIABLES & BASE --- */
:root {
    --gold: #C5A880;
    --gold-hover: #b3956d;
    --dark: #0B132B;
    --dark-section: #111827;
}

/* Mengaktifkan Smooth Scrolling dan Scroll Padding agar Navbar Fixed tidak menutupi judul */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; 
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #374151;
    overflow-x: hidden;
}

.font-playfair { font-family: 'Playfair Display', serif; }
.text-gold { color: var(--gold) !important; }
.bg-gold { background-color: var(--gold) !important; }
.bg-dark-section { background-color: var(--dark-section) !important; }

.btn-gold {
    background-color: var(--gold);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: var(--gold-hover);
    color: #fff;
    transform: translateY(-2px);
}

.letter-spacing-1 { letter-spacing: 1.5px; }
.py-100 { padding-top: 100px; padding-bottom: 100px; }
.transition-all { transition: all 0.3s ease-in-out; }
.hover-gold:hover { color: var(--gold) !important; }

/* --- NAVBAR (HOVER & ACTIVE ANIMATION) --- */
.navbar {
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
    background-color: rgba(11, 19, 43, 0.95) !important;
    backdrop-filter: blur(10px);
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nav-link {
    color: #f3f4f6 !important;
    position: relative;
    padding: 8px 12px !important;
    margin: 0 5px;
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
}

/* Active State & Hover State */
.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--gold) !important;
}

/* Garis bawah animasi */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--gold);
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 80%;
}

/* --- HERO SECTION --- */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 6s ease;
}
.swiper-slide-active .hero-bg {
    transform: scale(1);
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(11,19,43,0.9) 0%, rgba(11,19,43,0.4) 100%);
}

/* Hero Slider Navigation */
.swiper-button-next, .swiper-button-prev { color: rgba(255,255,255,0.5) !important; transition: 0.3s; }
.swiper-button-next:hover, .swiper-button-prev:hover { color: var(--gold) !important; transform: scale(1.1); }
.swiper-pagination-bullet { background: #fff !important; opacity: 0.5; }
.swiper-pagination-bullet-active { background: var(--gold) !important; opacity: 1; width: 20px; border-radius: 10px; transition: width 0.3s ease; }

/* --- COMPONENTS --- */
.icon-circle { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }

.fasilitas-card {
    background: #fff; padding: 25px; border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05); height: 100%;
}
.fasilitas-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); border-color: var(--gold); }

.custom-table th { letter-spacing: 1px; }
.custom-table tr:hover td { background-color: rgba(197, 168, 128, 0.05); }

.promo-img-wrapper { position: relative; overflow: hidden; }
.promo-img-wrapper img { transition: transform 0.5s ease; }
.promo-card:hover .promo-img-wrapper img { transform: scale(1.1); }
.promo-tag { position: absolute; top: 15px; left: 15px; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }

.menu-card { cursor: pointer; }
.menu-card img { transition: transform 0.6s ease; }
.menu-card:hover img { transform: scale(1.1); }
.menu-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 100%); }

.overlay-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px; opacity: 0.5;
}

/* Ballroom Custom Pills */
.lya.font-playfair {
    color: #c5a880;
}

.custom-pills .nav-link {
    color: #9ca3af;
    border-radius: 50px;
    margin: 0 5px;
}
.custom-pills .nav-link.lya.active {
    background-color: var(--gold);
    color: #fff !important;
    font-weight: 600;
}
/* --- FLOATING BUTTONS --- */
.floating-menu { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 1050; }
.floating-btn { width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.3s ease; }
.floating-btn:hover { transform: scale(1.1); }
.top-btn { opacity: 0; visibility: hidden; transform: translateY(20px); }
.top-btn.show { opacity: 1; visibility: visible; transform: translateY(0); }

@media (max-width: 991px) {
    .navbar { background-color: rgba(11, 19, 43, 0.98) !important; padding-top: 10px !important; padding-bottom: 10px !important; }
    .hero-title { font-size: 2.5rem; }
}
