/*
 * Local Font Loading - DSGVO konform
 * Fonts müssen manuell heruntergeladen und in diesem Verzeichnis abgelegt werden
 *
 * Playfair Display: https://fonts.google.com/specimen/Playfair+Display
 * Plus Jakarta Sans: https://fonts.google.com/specimen/Plus+Jakarta+Sans
 *
 * Für die volle DSGVO-Konformität müssen die Schriftdateien (woff2) in diesem Verzeichnis liegen.
 * Alternative: Nutzen Sie System-Fonts (siehe unten)
 */

/* OPTION 1: Lokale Custom Fonts (benötigt Download der Schriftdateien) */
/*
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('playfair-display-v30-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('playfair-display-v30-latin-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('playfair-display-v30-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('playfair-display-v30-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('plus-jakarta-sans-v8-latin-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('plus-jakarta-sans-v8-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('plus-jakarta-sans-v8-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('plus-jakarta-sans-v8-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('plus-jakarta-sans-v8-latin-700.woff2') format('woff2');
}
*/

/* OPTION 2: DSGVO-konforme System Font Stack (AKTIV) */
/* Diese Option nutzt bereits installierte System-Fonts und ist sofort DSGVO-konform */

:root {
  /* Serif Stack - Alternative zu Playfair Display */
  --font-serif: 'Georgia', 'Times New Roman', 'Garamond', serif;

  /* Sans-Serif Stack - Alternative zu Plus Jakarta Sans */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* Falls Sie die Custom Fonts verwenden möchten:
   1. Laden Sie die Fonts von google-webfonts-helper.herokuapp.com herunter
   2. Speichern Sie die .woff2 Dateien in diesem Verzeichnis
   3. Kommentieren Sie OPTION 1 oben ein
   4. Passen Sie die Tailwind Config in header.php entsprechend an
*/
