@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --bg-dark-primary: #0a0f1d;
    --gold-primary: #c5a880;
    --gold-subtle: rgba(197, 168, 128, 0.2);
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f6f9;
    color: #1e293b;
}

.font-serif {
    font-family: 'Poppins','Playfair Display', serif;
}

/* SIDEBAR LEFT (ELEGANT DARK BLUE & GOLD) */
.sidebar-left {
    background: linear-gradient(160deg, #112318 0%, #084129 100%);
    border-right: 1px solid var(--gold-subtle);
}

.logo-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-primary), #8a6f47);
    color: #0a0f1d;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.brand-title {
    font-family: 'Poppins','Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-light);
}

.brand-subtitle {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-primary);
}

/* EVENT CARD */
.event-card-luxury {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--gold-subtle);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.card-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gold-subtle);
    color: var(--gold-primary);
    font-size: 0.75rem;
    border-radius: 20px;
}

.event-title {
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
}

.info-item {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.icon-gold, .text-gold {
    color: var(--gold-primary) !important;
}

.border-gold-subtle {
    border-color: var(--gold-subtle) !important;
}

/* NAV PILLS */
.custom-nav-luxury .nav-link {
    background: rgba(71, 71, 71, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.custom-nav-luxury .nav-link.active {
    background: linear-gradient(135deg, rgba(113, 12, 38, 0.9), rgba(137, 12, 12, 0.9));
    border: 1px solid var(--gold-primary);
    box-shadow: 0 4px 20px rgba(197, 168, 128, 0.15);
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.text-title { color: var(--text-light); }
.text-desc { color: var(--text-muted); }

/* MAIN PANEL */
.main-panel { background-color: #f8fafc; }
.max-w-lg { max-width: 650px; }

.card-luxury {
    border: none;
    border-radius: 20px;
    background: #ffffff;
}

.card-header-luxury {
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
}

.form-control-luxury {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.form-control-luxury:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 0.25rem var(--gold-subtle);
}

.hotel-card-option {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fafbfc;
    transition: all 0.3s ease;
}

.hotel-card-option:hover {
    border-color: var(--gold-primary);
    background: #ffffff;
}

.bg-gold { background-color: var(--gold-primary) !important; }

.upload-box {
    border: 2px dashed #cbd5e1;
    border-radius: 14px;
    background-color: #f8fafc;
}

/* BUTTONS */
.btn-luxury-primary {
    background: linear-gradient(135deg, #0a0f1d, #1e293b);
    color: var(--text-light);
    border: 1px solid var(--gold-primary);
    border-radius: 10px;
}
/* Mencegah klik pada tab yang ter-disabled */
.nav-link.disabled,
.nav-link[aria-disabled="true"] {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.6;
}
.btn-luxury-primary:hover {
    background: linear-gradient(135deg, var(--gold-primary), #a3845b);
    color: #0a0f1d;
}
.btn-luxury-primary:disabled {
    
    color: var(--text-light);
}

.btn-luxury-outline {
    border: 1px solid #cbd5e1;
    color: #475569;
    border-radius: 10px;
}

.btn-luxury-submit {
    background: linear-gradient(135deg, var(--gold-primary), #8a6f47);
    color: #0a0f1d;
    border: none;
    border-radius: 10px;
    font-weight: 600;
}
/* RESPONSIVE FIX UNTUK MOBILE VIEW */
@media (min-width: 992px) {
    .vh-lg-100 {
        height: 100vh !important;
    }
    .h-lg-100 {
        height: 100% !important;
    }
    .overflow-lg-auto {
        overflow-y: auto !important;
    }
}

@media (max-width: 991.98px) {
    body {
        overflow-y: auto !important;
    }
    .sidebar-left {
        min-height: auto;
    }
    .sidebar-bottom {
        margin-top: 2rem !important;
    }
}