/* CSS Reset and Normalize */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-family: var(--font-secondary);
    color: var(--color-text);
}

/* Typography Reset */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin: 0;
    padding: 0;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Remove default form styling */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Remove focus outline that some browsers add */
button:focus,
a:focus {
    outline: none;
}

/* Ensure proper overflow handling */
body {
    overflow-x: hidden;
}
