:root {
  /* Farben */
  --color-primary: #021e43;
  --color-primary-dark: #01152f;
  --color-secondary: #9c0c0c;
  --color-secondary-dark: #780808;
  --color-accent: #d99512;
  --color-background: #f5f7fa;
  --color-surface: #ffffff;
  --color-text: #142238;
  --color-text-light: #5b6775;
  --color-text-muted: var(--color-text-light);
  --color-border: #d8dee6;
  --color-on-primary: #ffffff;
  --color-focus: var(--color-secondary);

  /* Schriftfamilien */
  --font-family-base:
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; 
  --font-family-reading: Georgia, "Times New Roman", Times, serif;

  /* Schriftgrößen */
  --font-size-sm: 0.875rem;  
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: clamp(2rem, 7vw, 3.75rem);

  /* Zeilenhöhen */
  --line-height-tight: 1.2;
  --line-height-base: 1.6;

  /* Abstände */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 5rem;

  /* Radien, Schatten und Layout */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --shadow-sm: 0 0.25rem 1rem rgb(2 30 67 / 8%);
  --content-width: 72rem;
  --text-width: 48rem;
  --transition-fast: 180ms ease;

}
