/**
 * MAKLERTOOLS Platform - CSS Variables (Design Tokens)
 * Dark Mode Theme: Anthrazit + Beige
 */

:root {
    /* Primary Colors */
    --color-primary: #C4A484;
    --color-primary-hover: #B39474;          /* Dunkler - für Buttons mit schwarzer Schrift */
    --color-primary-hover-light: #D4B494;    /* Heller - für Buttons mit weißem Icon */
    --color-primary-dark: #A48A6A;
    --color-primary-light: rgba(196, 164, 132, 0.1);
    --color-primary-rgb: 196, 164, 132;

    /* Background Colors */
    --color-bg: #1A1A1A;
    --color-bg-secondary: #242424;
    --color-bg-tertiary: #2D2D2D;
    --color-bg-elevated: #333333;

    /* Text Colors */
    --color-text: #F5F5F5;
    --color-text-secondary: #E0E0E0;
    --color-text-muted: #CCCCCC;
    --color-text-inverse: #1A1A1A;

    /* Border Colors */
    --color-border: #404040;
    --color-border-light: #333333;
    --color-border-focus: var(--color-primary);

    /* Status Colors */
    --color-success: #4CAF50;
    --color-success-bg: rgba(76, 175, 80, 0.1);
    --color-error: #E74C3C;
    --color-error-bg: rgba(231, 76, 60, 0.1);
    --color-warning: #F39C12;
    --color-warning-bg: rgba(243, 156, 18, 0.1);
    --color-info: #3498DB;
    --color-info-bg: rgba(52, 152, 219, 0.1);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Font Sizes */
    --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;

    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Line Heights */
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.75;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.5);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;

    /* Z-Index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;

    /* Sidebar */
    --sidebar-width: 260px;
    --sidebar-collapsed: 70px;
    --header-height: 60px;
}
