/* --- TYPOGRAPHY ENGINE --- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

:root {
    --font-main: 'Inter', sans-serif;
}

body {
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
}

/* --- TYPE: Typography & Shadows --- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

:root {
    --font-main: 'Inter', sans-serif;
}

body { font-family: var(--font-main); color: #fff; }

h1 {
    font-size: 64px;
    line-height: 1.05;
    margin-bottom: 30px;
    font-weight: 800;
}

h2 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 800;
}

h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 800;
}

p {
    font-size: 15px;
    opacity: .9;
    line-height: 1.5;
}

/* Footer Typography */
footer h4 { margin-bottom: 15px; font-weight: 800; }
footer p, footer a {
    font-size: 15px;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
}

/* Fließtext */
p {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

footer h4 { margin-bottom: 15px; font-weight: 800; text-transform: uppercase; }
footer p, footer a { font-size: 15px; color: #ddd; }
