/* ================================================================
   RESET.CSS - Normalize and Reset Browser Defaults
   ================================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

/* ===== HEADINGS ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }
h5 { font-size: var(--font-size-base); }
h6 { font-size: var(--font-size-sm); }

/* ===== PARAGRAPHS ===== */
p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

/* ===== LINKS ===== */
a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-green-light);
}

/* ===== LISTS ===== */
ul, ol {
    list-style: none;
}

/* ===== FORM ELEMENTS ===== */
button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ===== IMAGES ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== TABLES ===== */
table {
    border-collapse: collapse;
}
