/* Fonts removed */

:root {
    --gold: #D4AF37;
    --gold-light: #f1d279;
    --gold-dim: rgba(212, 175, 55, 0.4);
    --desert: #E3D5CA;
    --dark: #0a0a0b;
    --dark-surface: #121214;
    --dark-card: rgba(255, 255, 255, 0.04);
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #aaaaaa;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
    --shadow-lux: 0 20px 50px rgba(0, 0, 0, 0.6);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    background-color: var(--dark);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    /* Base size */
}

h1,
h2,
h3,
.serif {
    font-family: 'Playfair Display', serif;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Clarity Utilities */
.text-readable {
    color: var(--text-secondary);
    line-height: 1.6;
}

.admin-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2.5rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.admin-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-dim);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-gold {
    color: var(--gold);
}

.text-desert {
    color: var(--desert);
}

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

/* Luxury Middle Eastern Aura Background */
.aura-bg {
    background-color: var(--dark);
    background-image: radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.15), transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(212, 175, 55, 0.1), transparent 60%);
    background-attachment: fixed;
}

.pattern-overlay {
    background-image: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M20 0l2 18 18 2-18 2-2 18-2-18-18-2 18-2z" fill="%23D4AF37" fill-opacity="0.05"/></svg>');
    background-repeat: repeat;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: fadeInUp 0.8s ease-out forwards;
}

.bento-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-dim);
    background: rgba(255, 255, 255, 0.05);
}

/* Forms */
.premium-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    color: white;
    outline: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.premium-input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.luxury-button {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.luxury-button:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.luxury-button:active {
    transform: translateY(0);
}

/* Mobile Priority Styles */
@media (max-width: 768px) {
    .admin-card {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }

    .text-6xl {
        font-size: 2.5rem;
    }

    .text-7xl {
        font-size: 3rem;
    }
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 1rem;
    z-index: 100;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.bottom-nav-item.active {
    color: var(--gold);
}

.bottom-nav-item i {
    font-size: 20px;
}

/* Scroll Hide on Desktop */
@media (min-width: 769px) {
    .bottom-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    aside.sidebar-imperial {
        display: none !important;
    }

    main {
        padding: 1rem !important;
        padding-bottom: 5rem !important;
    }

    .desktop-only {
        display: none !important;
    }
}

.mobile-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

/* Presentation Mode */
.presentation-mode .sensitive-data {
    filter: blur(12px) grayscale(100%);
    opacity: 0.3;
    pointer-events: none;
    transition: all 0.5s ease;
}

.presentation-mode .sensitive-data:hover {
    filter: blur(0px);
    opacity: 1;
}

.sensitive-data {
    /* No transition all here to avoid fighting with GSAP */
    transition: filter 0.5s ease;
}