/**
 * typography.css
 * Base typography — headings, body text, links, and utility classes.
 * Pure CSS with custom properties — no frameworks.
 */

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
}

h1 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-lg);
}

h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
}

h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
}

h5 {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-sm);
}

h6 {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

a:hover {
    text-decoration: underline;
    color: var(--color-primary-hover);
}

.page-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

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