@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --brand-primary: #4f46e5;
    --brand-secondary: #7c3aed;
    --brand-accent: #10b981;
    --bg-mesh: radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 1) 0, transparent 50%);
}

html {
    overflow-y: scroll;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    animation: fadeInPage 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: 'Outfit', sans-serif;
}

/* Premium Gradients */
.bg-premium-gradient {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
}

.text-gradient {
    background: linear-gradient(to right, #4f46e5, #9333ea);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Airy Shadows */
.shadow-airy {
    box-shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.1), 0 20px 50px -20px rgba(0, 0, 0, 0.05);
}

.hover-airy:hover {
    box-shadow: 0 20px 40px -15px rgba(79, 70, 229, 0.15), 0 30px 60px -25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

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

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

.animate-reveal {
    animation: reveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes reveal {
    from {
        opacity: 0;
        clip-path: inset(100% 0 0 0);
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        clip-path: inset(0 0 0 0);
        transform: translateY(0);
    }
}

/* Glassmorphism Refined */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c7d2fe;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4f46e5;
}

.hover-lift {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px -8px rgba(79, 70, 229, 0.2);
}

/* Admin Panel Transition */
/* Mobile Menu States */
#mobile-menu.active {
    visibility: visible;
    opacity: 1;
}

#mobile-menu.active>div:last-child {
    transform: translateX(0);
}

/* Card Hover Lift */
.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}