/* 
 * Erlebt Event - CSS Variables
 * Basierend auf dem Markenkompass (Stand: Juli 2026)
 */

:root {
  /* Farben */
  --color-royal: #111e6b;
  --color-yellow: #f5ee9e;
  --color-light-blue: #b6b8d6;
  --color-white: #ffffff;
  --color-black: #080a12;

  /* Typografie - Schriften */
  /* Nave ist die finale Headline-Schrift, Fraunces dient als lokaler Prototyp-Fallback */
  --font-heading: "Nave", "Fraunces Prototype", Georgia, serif;
  --font-body: "Gotham", "Helvetica Neue", Arial, sans-serif;

  /* Typografie - Größen (Mobile First, responsive über clamp/media queries) */
  --text-xs: 0.875rem;   /* 14px */
  --text-sm: 1rem;       /* 16px */
  --text-base: 1.125rem; /* 18px */
  --text-lg: 1.25rem;    /* 20px */
  --text-xl: 1.5rem;     /* 24px */
  --text-2xl: 2rem;      /* 32px */
  --text-3xl: 2.5rem;    /* 40px */
  --text-4xl: 3rem;      /* 48px */
  --text-5xl: 4rem;      /* 64px */

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radien für organische Flächen */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
  --radius-organic: 40px 120px 40px 120px; /* Asymmetrisch für organische Flächenformen */

  /* Schatten */
  --shadow-sm: 0 1px 2px rgba(8, 10, 18, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(8, 10, 18, 0.1), 0 2px 4px -1px rgba(8, 10, 18, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(8, 10, 18, 0.1), 0 4px 6px -2px rgba(8, 10, 18, 0.05);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 400ms ease-in-out;
}
