/* ==========================================
   Base Styles - Reset & Fundamentals
   ========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-primary);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--color-accent);
}

ul, ol {
    list-style: none;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

section, .page-section {
    padding: var(--space-section) 0;
}

.section-bg {
    background-color: var(--color-bg-alt);
}

.section-title {
    text-align: center;
    font-size: var(--font-size-3xl);
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--space-3xl);
    line-height: var(--line-height-tight);
}

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
