/* ---------------------------------------------------------------------------
   Endspurt-Los: Grundlagen
   Schriften, Farben und das Verlaufs-Motiv von compresso.ch.
   Alle Dateien liegen lokal, es wird nichts nachgeladen.
   --------------------------------------------------------------------------- */

/* DM Sans ist eine Variable Font: eine Datei deckt 400, 500 und 600 ab. */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url('../fonts/dmsans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url('../fonts/dmsans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Alga: die Akzentschrift der Website, nur fuer einzelne grosse Woerter. */
@font-face {
  font-family: 'Alga';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url('../fonts/alga-italic-200.woff2') format('woff2');
}

:root {
  --schwarz: #000000;
  --text: #111111;
  --grau: #5F5F5F;
  --hell: #F9F9F9;
  --weiss: #FFFFFF;

  /* Das Markenzeichen: der Compresso-Verlauf. */
  --verlauf: linear-gradient(90deg, #7BC3D7 0%, #A0EBCA 53%, #CBF6AC 100%);
  --verlauf-2: linear-gradient(90deg, #CDC5D3 0%, #DCEFBD 37%, #F2F8A2 100%);

  --schrift: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --akzent-schrift: 'Alga', 'DM Sans', Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--schrift);
  font-weight: 400;
  color: var(--text);
  background: var(--hell);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
p {
  margin: 0;
}

/* Das Akzentwort, z.B. «Endspurt» im Titel oder der Name auf dem Beamer. */
.alga {
  font-family: var(--akzent-schrift);
  font-style: italic;
  font-weight: 200;
  letter-spacing: 0.01em;
}

/* Die Verlaufs-Pille von compresso.ch. */
.pille {
  display: block;
  border-radius: 999px;
  background-image: var(--verlauf);
}

/* Das Compresso-Zeichen. Faerbt sich ueber color. */
.zeichen {
  display: block;
  color: var(--schwarz);
}

button {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid #7BC3D7;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
