/* MAIN CSS IMPORTS - LOUISMEDYA 2026 */
@import url('variables.css');
@import url('components.css');
@import url('landing.css');
@import url('dashboard.css');

/* GLOBAL RESET & BASICS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--bg-main);
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
}

.container-xl {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1024px) {
    .container-xl {
        padding: 0 40px;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

/* NOISE OVERLAY FOR LUXURY TEXTURE */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--glass-inner-border);
}
