/* ═══════════════════════════════════════════════════════════
   RIS - Rezept Index System
   CSS Custom Properties (Design Tokens)
   Von: tobi & olli
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Farben - Hintergründe */
  --bg-base: #0a0a0a;
  --bg-surface: #111111;
  --bg-elevated: #1a1a1a;
  --bg-border: #2a2a2a;
  
  /* Farben - Accent (Grün) */
  --accent: #22c55e;
  --accent-dim: #16a34a;
  --accent-glow: rgba(34, 197, 94, 0.12);
  --accent-hover: #26d466;
  
  /* Farben - Text */
  --text-primary: #f0f0f0;
  --text-secondary: #888888;
  --text-muted: #555555;
  
  /* Farben - Status */
  --status-ok: #22c55e;
  --status-warn: #f59e0b;
  --status-error: #ef4444;
  --status-info: #3b82f6;
  
  /* Spacing System */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 20px;
  --space-2xl: 24px;
  --space-3xl: 32px;
  --space-4xl: 48px;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
  
  /* Z-Index Hierarchie */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-sidebar: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-toast: 600;
  
  /* Layout */
  --sidebar-width: 240px;
  --sidebar-collapsed: 64px;
  --content-max-width: 1200px;
  
  /* Typografie */
  --font-base: 14px;
  --font-sm: 12px;
  --font-lg: 15px;
  --font-xl: 18px;
  --font-2xl: 24px;
  --font-3xl: 32px;
  
  --line-height-tight: 1.4;
  --line-height-base: 1.6;
  --line-height-relaxed: 1.8;
  
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}
