/**
 * Lokale Google Fonts
 * 
 * Font-Face-Definitionen für lokal gehostete Google Fonts
 * Verbessert Performance und reduziert externe Abhängigkeiten
 */

@font-face {
    font-family: 'Kindergarten';
    src: url('/assets/fonts/kindergarten.ttf'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }


      @font-face {
    font-family: 'Gory';
    src: url('/assets/fonts/GorriSans.ttf'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

/* Inter Font - Hauptschriftart */
/* inter-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-display: fallback;
    font-weight: 400;
    src: url('/assets/fonts/inter-v19-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* inter-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-display: fallback;
    font-weight: 700;
    src: url('/assets/fonts/inter-v19-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* inter-900 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-display: fallback;
    font-weight: 900;
    src: url('/assets/fonts/inter-v19-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }


  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Permanent Marker';
    font-style: normal;
    font-display: fallback;
    font-weight: 400;
    src: url('/assets/fonts/permanent-marker-v16-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

  /* libertinus-math-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Libertinus Math';
    font-style: normal;
    font-display: fallback;
    font-weight: 400;
    src: url('/assets/fonts/libertinus-math-v1-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }


/* Font Loading Optimierung */
.fonts-loaded {
    font-display: swap;
}

/* Fallback-Fonts für bessere Performance */
.fonts-loading {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

h1,h2,h3,.h1,.h2,.h3,h4,h5,h6, .h4,.h5,.h6
{
  font-family: "Gory";
  
}

h1,.h1 { font-size: 44px; }
h2,.h2 { font-size: 36px; }
h3,.h3 { font-size: 32px; }
h4,.h4 { font-size: 18px; }
h5,.h5 { font-size: 16px; line-height: 1.4;}
h6,.h6 { font-size: 11px; }

/* Font Loading Animation (optional) */
@keyframes fontFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fonts-loaded {
    animation: fontFadeIn 0.3s ease-in-out;
} 