/* CSS Reset - Modern Normalize */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
    font-size: inherit;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    font-size: 100%;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* Remove default styling from form elements */
input, textarea, select, button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Ensure body takes full height */
html, body {
    height: 100%;
}
