/* =============================================
   ALVI Dochádzka — Reset & Base Typography v2
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--al-bg);
    color: var(--al-text);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    line-height: 1.6;
}

a { color: var(--al-primary); text-decoration: none; transition: var(--al-transition); }
a:hover { color: var(--al-primary-hover); }

code {
    background: var(--al-card-bg-alt);
    padding: 3px 8px;
    border-radius: var(--al-radius-xs);
    font-size: 12px;
    border: 1px solid var(--al-border-light);
    color: var(--al-primary);
    font-weight: 500;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

/* Selection */
::selection {
    background: var(--al-primary);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: var(--al-border);
    border-radius: 10px;
    transition: background 0.2s;
}
::-webkit-scrollbar-thumb:hover { background: var(--al-text-muted); }
