/* ===============================================
   CSS VARIABLEN - Zentrale Definition für v0.01.30
   ===============================================
   
   Alle CSS-Variablen an EINEM Ort für:
   - Konsistenz
   - Einfache Wartung
   - Performance
   
   =============================================== */

:root {
  /* ============ FARBEN - HINTERGRUND ============ */
  --bg-primary: #1a1a1a;
  --bg-secondary: #2d2d2d;
  --bg-elevated: #333333;
  --bg-hover: #404040;
  --bg-overlay: rgba(0, 0, 0, 0.7);

  /* ============ FARBEN - TEXT ============ */
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #999999;
  --text-light: #e0e0e0;
  --text-color: #ffffff; /* Alias für text-primary */

  /* ============ FARBEN - AKZENTE ============ */
  --primary-color: #e57373;
  --primary-hover: #d46666;
  --secondary-color: #4a9eff;
  --accent-color: #e57373; /* Alias für primary-color */

  /* ============ FARBEN - STATUS ============ */
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --error-color: #f44336;
  --info-color: #2196f3;

  --accent-red: #e57373;
  --accent-blue: #4a9eff;
  --accent-green: #4caf50;
  --accent-yellow: #ff9800;

  /* ============ FARBEN - RAHMEN ============ */
  --border-color: #555555;
  --border-subtle: #444444;
  --border-color-dark: #333333;

  /* ============ ABSTÄNDE ============ */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;

  /* ============ BORDER RADIUS ============ */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;

  /* ============ SCHATTEN ============ */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);

  /* ============ ÜBERGÄNGE ============ */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* ============ TYPOGRAFIE ============ */
  --font-family: 'MM Headline Pro WebTT Regular', Arial, sans-serif;
  --font-family-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-monospace: 'Courier New', monospace;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 15px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-xxl: 20px;

  /* ============ Z-INDEX LAYERS ============ */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 1000;
  --z-modal: 1001;
  --z-popover: 1002;
  --z-tooltip: 1003;
  --z-notification: 10000;

  /* ============ INPUTS ============ */
  --input-bg: #333333;
  --input-border: #555555;
  --input-focus: #4a9eff;

  /* ============ SCROLLBARS ============ */
  --scrollbar-track: #2d2d2d;
  --scrollbar-thumb: #555555;
  --scrollbar-thumb-hover: #666666;

  /* ============ SPEZIFISCHE KOMPONENTEN ============ */

  /* Thumbnails */
  --thumbnail-height: 140px;
  --thumbnail-width: 99px; /* A4-Proportionen: 140px / 1.414 ≈ 99px */
  --thumbnail-active-scale: 1.4;
  --thumbnail-container-padding: 20px;
  --thumbnail-hover-scale: 1.02;

  /* UVP (Unverbindliche Preisempfehlung) */
  --uvp-color: #000000;
  --uvp-dark-mode: #000000;
  --uvp-font-size-desktop: 52px;
  --uvp-font-size-a4: 52px;
  --uvp-top-desktop: 620px; /* Höher positioniert */
  --uvp-top-print: 150mm;
  --uvp-line-height: 1.2;
  --uvp-letter-spacing: 0;

  /* Notizen */
  --notiz-hue: 45;
  --notiz-saturation: 100%;
  --notiz-lightness: 70%;

  /* Tape-Effekt */
  --tape-rotation: -2deg;
  --rotation: 2deg;

  /* Background Yellow */
  --background-yellow: #ffeb3b;
  --background-color: #ffffff;
}

/* ===============================================
   FERTIG!
   Alle CSS-Variablen an EINEM Ort
   Bereit für Verwendung in allen Dateien
   =============================================== */
