/* Venus Manager – Design-System */
:root {
  /* Primärfarbe & Varianten */
  --color-primary: #ba9043;
  --color-primary-light: #d4a84f;
  --color-primary-dark: #9a7838;
  --color-primary-subtle: rgba(186, 144, 67, 0.12);
  --color-primary-subtle-strong: rgba(186, 144, 67, 0.2);

  /* Neutrale */
  --color-bg: #fafaf9;
  --color-bg-alt: #f5f4f0;
  --color-surface: #ffffff;
  --color-dark: #1a1a1a;
  --color-dark-soft: #2d2d2d;
  --color-text: #1a1a1a;
  --color-text-muted: #5c5c5c;
  --color-border: #e8e6e1;

  /* Typography */
  --font-heading: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3rem;

  /* Spacing & Layout */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --container-max: 72rem;
  --container-narrow: 48rem;

  /* Radius & Shadow */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);

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