/* 
 * RAVØYA - Schriftarten
 * Optimiert für Cyberpunk/dystopischen Stil
 */

/* Inter Font als Variable Font für Fließtext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900; /* Unterstützt alle Gewichte */
    src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype-variations');
    font-display: swap; /* Verbessert die Ladezeit-Erfahrung */
  }
  
  /* Fallback für ältere Browser, die keine variablen Fonts unterstützen */
  @font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: 
      local('Inter Regular'), 
      local('Inter-Regular'),
      url('../fonts/Inter-Regular.ttf') format('truetype');
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: 
      local('Inter Bold'), 
      local('Inter-Bold'),
      url('../fonts/Inter-Bold.ttf') format('truetype');
    font-display: swap;
  }
  
  /* Orbitron Font für Überschriften und Logo-Text */
  @font-face {
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 600;
    src: 
      local('Orbitron SemiBold'), 
      local('Orbitron-SemiBold'),
      url('../fonts/Orbitron-SemiBold.ttf') format('truetype');
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 700;
    src: 
      local('Orbitron Bold'), 
      local('Orbitron-Bold'),
      url('../fonts/Orbitron-Bold.ttf') format('truetype');
    font-display: swap;
  }
  
  /* Globale Font-Variablen */
  :root {
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    --font-heading: 'Orbitron', 'Arial Black', Impact, sans-serif;
    --font-legal: Arial, Helvetica, sans-serif;
  }