/*
 * Lokale Schriftarten für DSGVO-Konformität
 * Ersetzt Google Fonts durch lokal gehostete Versionen
 * Mit professionellen Fallback-Schriften für bessere UX während des Ladens
 */

/* CSS Custom Properties für Font Stacks */
:root {
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-serif: 'Crimson Text', 'Times New Roman', Georgia, Times, serif;
    --font-decorative: 'Italianno', 'Brush Script MT', 'Lucida Handwriting', cursive;
}

/* Inter - Variable Font (empfohlen für bessere Performance) */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

/* Inter - Statische Fallbacks für spezifische Gewichte */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/static/Inter_18pt-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/static/Inter_18pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/static/Inter_18pt-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/static/Inter_18pt-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}

/* Crimson Text - für Testimonials */
@font-face {
    font-family: 'Crimson Text';
    src: url('../fonts/Crimson_Text/CrimsonText-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Crimson Text';
    src: url('../fonts/Crimson_Text/CrimsonText-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

/* Italianno - dekorative Schrift */
@font-face {
    font-family: 'Italianno';
    src: url('../fonts/Italianno/Italianno-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}