/* DSGVO-konforme lokale Schriften */
/* Verwendet System-Fonts statt Google Fonts */

/* System Font Stack - Optimiert für alle Betriebssysteme */
:root {
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Fallback auf System-Schriften */
body {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-display: swap; /* Schnelleres Laden */
}

/* Überschriften nutzen auch System-Fonts */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 600;
}

/* Spezifische Font-Weights mit System-Fonts */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Code/Mono Bereiche */
code, pre {
    font-family: var(--font-mono);
}

/* DSGVO-Hinweis für Entwickler */
/*
 * Diese Website verwendet ausschließlich System-Schriften.
 * Keine externen Font-Dienste wie Google Fonts werden geladen.
 * Dies gewährleistet DSGVO-Konformität und vermeidet Abmahnrisiken.
 *
 * Vorteile:
 * - 100% DSGVO-konform
 * - Schnellere Ladezeiten (keine externen Requests)
 * - Bessere Performance
 * - Keine Tracking-Probleme
 * - Respektiert Nutzer-Präferenzen für Schriften
 */