/* styles.css - Minimalist Direction */

@layer utilities {
    .bg-brand-overlay {
        background-color: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(8px);
    }
}

/* Base resets */
html {
    scroll-behavior: smooth;
    font-family: 'Lexend', sans-serif;
}

body {
    background-color: #050505;
    color: #E2E8F0;
}

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

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

::-webkit-scrollbar-thumb {
    background: #1F1F1F;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #404040;
}

/* Text Selection - High Contrast */
::selection {
    background: #FFFFFF;
    color: #000000;
}

/* Input Auto-fill fix for dark mode */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill {
    -webkit-text-fill-color: white;
    -webkit-box-shadow: 0 0 0px 1000px #0A0A0A inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* Animations */
.animate-slide-up {
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}