/* ============================================
   DESIGN TOKENS — CarAngel Modernization
   ============================================ */

:root {
    /* --- FARBEN (Premium Dark Mode) --- */
    --color-primary: #C58F59; /* Bronze/Gold */
    --color-primary-hover: #A6784A;
    --color-primary-light: rgba(197, 143, 89, 0.15);
    
    --color-secondary: #D4A97E;
    --color-secondary-hover: #C58F59;

    --color-bg: #0A0A0A; /* Deep Black */
    --color-bg-alt: #141414; /* Charcoal */
    --color-bg-dark: #000000;
    
    --color-text: #F5F5F5; /* Off White */
    --color-text-light: #A0A0A0; /* Grey */
    --color-text-muted: #666666;
    --color-text-inverted: #0A0A0A;
    
    --color-border: #2A2A2A;
    --color-border-light: #333333;
    
    --color-accent: #C58F59;

    /* Status-Farben */
    --color-success: #16a34a;
    --color-warning: #eab308;
    --color-error: #dc2626;

    /* --- TYPOGRAFIE --- */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-family-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Schriftgrößen */
    --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: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3.5rem;

    /* Schriftstärken */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Zeilenhöhen */
    --leading-tight: 1.2;
    --leading-normal: 1.6;
    --leading-relaxed: 1.8;

    /* --- ABSTÄNDE (Spacing) --- */
    --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;

    /* --- ECKEN (Border Radius) --- */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* --- SCHATTEN --- */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.5);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.5);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.7);
    
    /* Glasmorphismus */
    --glass-bg: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(12px);

    /* --- ÜBERGÄNGE --- */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms ease;

    /* --- LAYOUT --- */
    --container-max: 1200px;
    --container-padding: var(--space-lg);
}
