/* css/base.css */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

p {
    margin-bottom: 1rem;
}

strong {
    font-weight: 500;
}

/* Scroll Selection */
::selection {
    background-color: var(--color-accent-tint);
    color: var(--color-accent-dim);
}

/* Custom Cursor Placeholder - will be styled in components/js */
.custom-cursor-active {
    cursor: none;
}