/**
 * CockpitOS CM-Immo Theme - CSS Variables
 * 
 * Verantwortlichkeit: Zentrale Design-Tokens
 * Alle Farben, Abstände, Schriften an einem Ort
 * 
 * @package CockpitOS_Light_Theme
 * @version 1.0.0
 */

:root {
    /* ═══════════════════════════════════════════════════════════
       Colors - CM-Immo Branding (Dynamisch aus Theme-Optionen)
       Diese Werte werden durch class-dynamic-colors.php überschrieben
       Fallback-Werte für Entwicklung/Testing
       ═══════════════════════════════════════════════════════════ */
    --color-primary: #da2032;           /* CM-Immo Rot (wird dynamisch gesetzt) */
    --color-primary-light: #e04451;     /* CM-Immo Rot Hell */
    --color-primary-dark: #b11a29;      /* CM-Immo Rot Dunkel */
    
    --color-secondary: #F25363;         /* CM-Immo Rosa (wird dynamisch gesetzt) */
    --color-secondary-light: #f57685;   /* CM-Immo Rosa Light */
    --color-secondary-dark: #e03041;    /* CM-Immo Rosa Dark */
    
    /* Colors - Cookie Theme Accents (Fixed) */
    --color-accent-pink: #fce4ec;       /* Hellrosa */
    --color-accent-coral: #e85d75;      /* Coral */
    --color-accent-beige: #faf3e0;      /* Beige */
    --color-cream: #fdf6e9;             /* Cream */
    
    /* Colors - Neutral (Lesen von Background/Text) */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #0f172a;
    
    /* Colors - Status */
    --color-success: #22c55e;
    --color-success-dark: #16a34a;
    --color-success-bg: #d4edda;
    --color-success-text: #155724;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-error-dark: #dc2626;
    --color-error-bg: #f8d7da;
    --color-error-text: #721c24;
    --color-info: #3b82f6;
    --color-gold: #f59e0b;
    --color-gold-light: #fff7ed;
    
    /* Typography */
    --font-family-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-family-heading: 'Baloo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-mono: 'Courier New', monospace;
    
    /* Font Sizes */
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-lg: 1.125rem;   /* 18px */
    --font-size-xl: 1.25rem;    /* 20px */
    --font-size-2xl: 1.5rem;    /* 24px */
    --font-size-3xl: 1.875rem;  /* 30px */
    --font-size-4xl: 2.25rem;   /* 36px */
    --font-size-5xl: 3rem;      /* 48px */
    
    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Line Heights */
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    
    /* Spacing */
    --spacing-xs: 0.25rem;   /* 4px */
    --spacing-sm: 0.5rem;    /* 8px */
    --spacing-md: 1rem;      /* 16px */
    --spacing-lg: 1.5rem;    /* 24px */
    --spacing-xl: 2rem;      /* 32px */
    --spacing-2xl: 3rem;     /* 48px */
    --spacing-3xl: 4rem;     /* 64px */
    
    /* Border Radius - Cookie Theme: Sehr runde Ecken! */
    --radius-sm: 0.375rem;   /* 6px */
    --radius-md: 0.75rem;    /* 12px */
    --radius-lg: 1.25rem;    /* 20px */
    --radius-xl: 1.5rem;     /* 24px */
    --radius-2xl: 2rem;      /* 32px */
    --radius-3xl: 3rem;      /* 48px */
    --radius-full: 9999px;
    
    /* Shadows - Cookie Theme: Weiche, subtile Schatten */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
    --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 24px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px -8px rgba(0, 0, 0, 0.12);
    --shadow-2xl: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
    
    /* Shadows - Colored (Cookie Theme Style) */
    --shadow-primary: 0 8px 24px -4px rgba(74, 21, 64, 0.2);
    --shadow-secondary: 0 8px 24px -4px rgba(167, 216, 222, 0.3);
    --shadow-accent: 0 8px 24px -4px rgba(232, 93, 117, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    
    /* Z-Index */
    --z-index-dropdown: 1000;
    --z-index-sticky: 1020;
    --z-index-fixed: 1030;
    --z-index-modal-backdrop: 1040;
    --z-index-modal: 1050;
    --z-index-popover: 1060;
    --z-index-tooltip: 1070;
}

