/* =========================================================
   FARB- & DESIGN-KONFIGURATION
   Hier alle Farben zentral anpassen. Wird von style.css genutzt.
   Theme: Dunkel & Orange
   ========================================================= */
:root {
  /* Grundfarben */
  --color-bg: #14161a;              /* Haupt-Hintergrund (dunkel) */
  --color-bg-alt: #1c1f25;          /* Alternativer Sektions-Hintergrund */
  --color-surface: #22262e;         /* Karten / Boxen */
  --color-surface-alt: #2a2f38;     /* Hover-Zustand für Karten */

  /* Akzentfarbe */
  --color-accent: #ff7a1a;          /* Orange - Hauptakzent */
  --color-accent-hover: #ff9142;    /* Orange hell - Hover */
  --color-accent-dark: #cc5f0f;     /* Orange dunkel - aktiv/gedrückt */

  /* Text */
  --color-text: #f3f4f6;            /* Haupttext hell */
  --color-text-muted: #a7adb8;      /* Sekundärtext */
  --color-text-on-accent: #14161a;  /* Text auf orangem Hintergrund */

  /* Rahmen / Linien */
  --color-border: #33383f;

  /* Status */
  --color-success: #3ecf6e;
  --color-error: #ef4444;

  /* Schriftarten */
  --font-heading: 'Montserrat', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Abstände */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Schatten */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
}
