/**
 * BASE.CSS
 * 
 * Purpose: Global resets, typography defaults, and element-level styles.
 * Scope:   Applies to HTML elements directly (body, h1-h6, a, p, etc.).
 * Status:  Active
 * 
 * Note: Does not contain class-based component styles.
 */

/* Base Styles & Typography */

body {
    background-color: var(--color-deep-base);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    margin-bottom: 0.75em;
    line-height: 1.2;
}

a {
    transition: color 0.2s ease, opacity 0.2s ease;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-deep-base);
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent-dark);
    border-radius: 5px;
    border: 1px solid var(--color-text-muted);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-lead-cyan);
}