/* =====================================================================
   DREHMOMENT CSS-BUCKET 02: TYPOGRAPHY
   ===================================================================== */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);    /* Dynamische Anpassung von Mobile bis 4K */
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    position: relative;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Helpers */
.text-brand {
    color: var(--primary-brand);
}

.text-accent {
    color: var(--accent-red);
}

.text-center {
    text-align: center;
}

.uppercase {
    text-transform: uppercase;
}

.lead {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-muted);
}
