/**
 * Inter Schriftart - Kostenlose Alternative zu Theinhardt
 * 
 * Inter ist eine hochwertige, kostenlose Schriftart von Google Fonts
 * Sie ist modern, gut lesbar und ähnelt Theinhardt in vielen Aspekten
 * 
 * Mehr Informationen: https://fonts.google.com/specimen/Inter
 */

/* Import von Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Fallback für lokale Installation */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* Optimierte Schriftdarstellung */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Spezifische Gewichte für verschiedene Elemente */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

p, li {
    font-weight: 400;
}

strong, b {
    font-weight: 600;
}

/* Feinabstimmung für bessere Lesbarkeit */
body {
    letter-spacing: -0.011em;
    line-height: 1.5;
}

h1, h2, h3 {
    letter-spacing: -0.022em;
}

/* Inter Variable Font Support (falls Browser unterstützt) */
@supports (font-variation-settings: normal) {
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
    
    body {
        font-family: 'Inter var', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    }
}
