/* CSS Custom Properties (Variablen) */

:root {
  /* Breakpoints (für Media Queries) */
  --bp-mobile: 320px;
  --bp-tablet: 768px;
  --bp-desktop: 1024px;
  --bp-wide: 1440px;

  /* Spacing System */
  --space-xs: 0.5rem;    /* 8px */
  --space-sm: 1rem;      /* 16px */
  --space-md: 1.5rem;    /* 24px */
  --space-lg: 2rem;      /* 32px */
  --space-xl: 3rem;      /* 48px */
  --space-xxl: 4rem;     /* 64px */

  /* Colors - Neutral (Wireframe) */
  --color-bg: #ffffff;
  --color-bg-gray: #f5f5f5;
  --color-text: #000000;
  --color-text-light: #666666;
  --color-border: #cccccc;
  --color-border-light: #e0e0e0;

  /* Colors - BL Corporate Identity */
  --color-primary: #ff0000;        /* BL-Rot (PANTONE 1795 U) */
  --color-primary-hover: #cc0000;  /* BL-Rot dunkel */
  --color-black: #000000;          /* Schwarz */

  /* Colors - Functional */
  --color-success: #28a745;
  --color-warning: #ffc107;
  --color-danger: #ff0000;         /* BL-Rot für Fehler/Notfälle */
  --color-info: #ff0000;           /* BL-Rot für Info */

  /* Ampel-System (Status-Farben) */
  --status-green: #4caf50;
  --status-yellow: #fdd835;
  --status-orange: #ff9800;
  --status-red: #f44336;

  /* Typography */
  --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-md: 1.125rem;   /* 18px */
  --font-size-lg: 1.25rem;    /* 20px */
  --font-size-xl: 1.5rem;     /* 24px */
  --font-size-xxl: 2rem;      /* 32px */
  --font-size-xxxl: 2.5rem;   /* 40px */

  --line-height-base: 1.5;
  --line-height-heading: 1.2;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* Z-Index Layers */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
}
