@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

body {
    font-family: 'Alexandria', sans-serif;
    background-color: #fff8f0;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* Custom Scrollbars */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 10px;
}

/* Luxury Card Shadow & Hover */
.luxury-card {
    background: #ffffff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}
.luxury-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 10px 30px rgba(115, 92, 0, 0.08);
    border-color: #d0c5af;
}

/* Gradients */
.gold-gradient-text {
    background: linear-gradient(135deg, #735c00 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gold-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #735c00 100%);
}

/* RTL Helpers */
.rtl-flip {
    transform: scaleX(-1);
}

/* Glass panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Active tab underlines */
.settings-tab-active {
    border-bottom: 2px solid #735c00;
    color: #735c00;
}

/* Sidebar Responsive Styles */
@media (max-width: 768px) {
    aside {
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    aside.open {
        transform: translateX(0);
    }
}
