/* ===== ZENTRALE CSS-VARIABLEN ===== */
/* Design System für Mercedes Fragen-App */
/* Telekom-Branding mit Dark Mode */

:root {
  /* ===== PRIMÄRE FARBEN (TELEKOM-BRANDING) ===== */
  --primary: #e20074;
  --primary-dark: #b8005e;
  --primary-hover: #c40064;
  --primary-light: #ff5eaa;
  --primary-transparent: rgba(226, 0, 116, 0.1);
  --primary-glow: rgba(226, 0, 116, 0.5);

  /* Legacy-Kompatibilität */
  --accent-color: #e20074;
  --accent-hover: #ff5eaa;

  /* ===== DARK MODE FARBSCHEMA ===== */
  --bg-main: #000000;
  --bg-dark: #000000;
  --bg-filter-bar: #E8E8E8;
  --bg-card: #0f0f0f;
  --bg-card-hover: #151515;
  --bg-element: #1a1a1a;
  --bg-element-hover: #222222;
  --bg-input: #222222;
  --bg-active: #2a2a2a;
  --bg-filter-hover: #3C3C3C;
  --bg-filter: #262626;

 

  /* ===== LIGHT MODE FARBSCHEMA ===== */
  --bg-light-main: #F8F8F8;

  /* ===== Badge FARBSCHEMA ===== */
  --bg-username-badge: #006ABC;

  /* Legacy-Kompatibilität */
  --primary-bg: #121212;
  --card-bg: #1e1e1e;

  /* ===== TEXT-FARBEN ===== */
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #999999;
  --text-disabled: #666666;
  --text-primary-dark: #333333;
  --text-default: #696969;

  /* ===== AKZENTFARBEN ===== */
  --success: #198025;
  --success-color: #4caf50;
  --warning: #E8BD00;
  --warning-color: #ffc107;
  --danger: #D92121;
  --error-color: #f44336;
  --info: #3498db;

  /* ===== BORDER UND LINIEN ===== */
  --border: #333333;
  --border-light: #444444;
  --border-color: #333333;

  /* ===== ABSTÄNDE (SPACING) ===== */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-mmd: 18px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;

  /* Alternative Namenskonvention */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;

  /* ===== BORDER RADIUS ===== */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Alternative Namenskonvention */
  --border-radius-sm: 6px;
  --border-radius-md: 10px;
  --border-radius-lg: 14px;
  --border-radius-full: 999px;
  --border-radius-pill: 50px;

  /* ===== SCHATTEN ===== */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.5);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.2);

  /* Card Shadows */
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  --modal-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);

  /* ===== TRANSITIONEN ===== */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Alternative für Kompatibilität */
  --transition-normal-alt: all 0.3s ease;

  /* ===== LAYOUT ===== */
  --container-max-width: 1200px;
  --container-large: 1600px;
  --navbar-height: 70px;
  --footer-height: 70px;
  --gap-y: 16px;

  /* ===== CHART-FARBEN ===== */
  --chart-color-1: var(--primary);
  --chart-color-2: #00b0f0;
  --chart-color-3: #7928ca;
  --chart-color-4: #ff4d4d;
  --chart-color-5: #1eb980;
  --chart-color-6: #ffaa00;
  --chart-color-7: #9775fa;
  --chart-color-8: #f06292;

  /* ===== Z-INDEX SKALA ===== */
  --z-dropdown: 1000;
  --z-navbar: 1000;
  --z-modal: 1100;
  --z-notification: 1200;
  --z-tooltip: 1300;

  /* ===== TYPOGRAFIE ===== */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* ===== RESPONSIVE BREAKPOINTS ===== */
  --breakpoint-sm: 480px; /* Mobile */
  --breakpoint-md: 768px; /* Tablet */
  --breakpoint-lg: 1024px; /* Desktop */
  --breakpoint-xl: 1200px; /* Large Desktop */
  --breakpoint-2xl: 1600px; /* Extra Large */

  /* ===== MODAL UND OVERLAY ===== */
  --modal-backdrop: rgba(0, 0, 0, 0.75);
  --overlay-light: rgba(255, 255, 255, 0.05);
  --overlay-medium: rgba(255, 255, 255, 0.1);
}

/* ===== DARK MODE KLASSE ===== */
.dark-mode {
  background-color: var(--bg-main);
  color: var(--text-primary);
}
