/* ============================================================================
   PROYECTO: Portfolio Nico Falcón
   ARCHIVO: assets/css/base.css
   PROPÓSITO: Estilos globales base y tipografía.
   ============================================================================ */

html {
    scroll-behavior: smooth;
    /* CERO overflow aquí para evitar la doble barra */
}

body {
    background-color: var(--ink);
    color: var(--bone);
    font-family: var(--font-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- SCROLLBAR GLOBAL --- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: var(--ink-3);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--muted);
}