@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

:root {
    --bg-dark: #0f1115;
    --card-dark: #1a1d24;
    --gold-premium: #d4af37;
    --gold-hover: #b5952f;
    --text-muted: #a0aab2;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: #ffffff;
}

/* Custom Navbar */
.navbar-custom {
    background-color: rgba(15, 17, 21, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* Hero Section Premium */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(15, 17, 21, 0.8), rgba(15, 17, 21, 0.9)), 
                url('https://images.unsplash.com/photo-1599580661448-64448557a2df?q=80&w=1200&auto=format&fit=crop') center/cover no-repeat;
    padding: 100px 20px;
    border-radius: 0 0 30px 30px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.text-gold {
    color: var(--gold-premium) !important;
}

/* Premium Buttons */
.btn-gold {
    background-color: var(--gold-premium);
    color: #000;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Kartu Meja Eksklusif */
.card-meja {
    background-color: var(--card-dark);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
}

.card-meja:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

/* Status Badges */
.badge-tersedia { background-color: rgba(46, 204, 113, 0.2); color: #2ecc71; border: 1px solid #2ecc71; }
.badge-dibooking { background-color: rgba(231, 76, 60, 0.2); color: #e74c3c; border: 1px solid #e74c3c; }

/* Fitur Trust (Fasilitas) */
.fitur-box {
    text-align: center;
    padding: 30px 20px;
    background: var(--card-dark);
    border-radius: 15px;
    border-bottom: 3px solid var(--gold-premium);
}
.fitur-box i {
    font-size: 2.5rem;
    color: var(--gold-premium);
    margin-bottom: 15px;
}