/* ─── LUXE AURA — Custom Stylesheet ─── */

/* Glass morphism panel */
.glass-panel {
    background: rgba(229, 226, 225, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Gold cinematic glow */
.cinematic-shadow {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.12);
}

/* Material Symbols font-variation */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
.fill-icon {
    font-variation-settings: 'FILL' 1, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* ─── Component classes ─── */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #f2ca50;
    color: #3c2f00;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}
.btn-primary:hover { transform: scale(1.05); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 1px solid #f2ca50;
    color: #f2ca50;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: background 0.3s ease;
}
.btn-outline:hover { background: rgba(242, 202, 80, 0.1); }

.nav-link {
    color: #d0c5af;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    text-decoration: none;
}
.nav-link:hover { color: #f2ca50; }

.nav-link-active {
    color: #f2ca50;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-bottom: 1px solid #f2ca50;
    padding-bottom: 4px;
    text-decoration: none;
}

.input-luxury {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(229, 226, 225, 0.3);
    color: #e5e2e1;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    width: 100%;
    padding: 0.5rem 0;
    outline: none;
    transition: border-color 0.3s ease;
}
.input-luxury::placeholder { color: rgba(208, 197, 175, 0.5); }
.input-luxury:focus { border-bottom-color: #f2ca50; }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: #e5e2e1;
    line-height: 1.3;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #f2ca50;
    display: block;
    margin-bottom: 1rem;
}

.badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #f2ca50;
    color: #3c2f00;
    font-size: 10px;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    transition: transform .2s cubic-bezier(.34,1.56,.64,1);
    justify-content: center;
    font-weight: 700;
}

/* Admin sidebar links */
.admin-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #d0c5af;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}
.admin-sidebar-link:hover {
    background: #201f1f;
    color: #f2ca50;
}
.admin-sidebar-link-active {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(242, 202, 80, 0.1);
    color: #f2ca50;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 0.5rem;
    text-decoration: none;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #131313; }
::-webkit-scrollbar-thumb { background: #4d4635; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #f2ca50; }

/* Selection */
::selection { background: rgba(242, 202, 80, 0.25); color: #e5e2e1; }
