:root {
    /* Colors */
    --primary-color: #c41e3a;
    --primary-color-rgb: 196, 30, 58;
    --secondary-color: #fab700;
    --accent-color: #ffd700;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-color: #f4f4f4;
    
    /* Color Variations */
    --primary-light: #e63e5c;
    --primary-dark: #a41830;
    --secondary-light: #ffc830;
    --secondary-dark: #cc9200;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    
    /* Shadows */
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 5px 15px rgba(0, 0, 0, 0.2);
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 24px;
    
    /* Z-Index Layers */
    --z-index-base: 1;
    --z-index-header: 100;
    --z-index-modal: 1000;
    --z-index-overlay: 900;
    
    /* Typography */
    --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;
    --text-color-rgb: 34, 34, 34; /* RGB-Werte für rgba() */
    --text-light: #ffffff;
    --text-light-rgb: 255, 255, 255; /* RGB-Werte für rgba() */
    --text-muted: #555555; /* Dunkler für besseren Kontrast auf hellem Hintergrund */
    
    /* Borders */
    --border-color: rgba(212, 175, 55, 0.3); /* Gold-getönter Border */
    --border-light: rgba(0, 0, 0, 0.05);
    --border-medium: rgba(0, 0, 0, 0.1);
    --border-dark: rgba(0, 0, 0, 0.2);
    
    /* Status-Farben */
    --success-color: #4caf50;
    --success-color-rgb: 76, 175, 80; /* RGB-Werte für rgba() */
    --success-dark: #3d9140;
    --success-light: #a5d6a7;
    
    --warning-color: #ff9800;
    --warning-color-rgb: 255, 152, 0; /* RGB-Werte für rgba() */
    --warning-dark: #e68900;
    --warning-light: #ffcc80;
    
    --error-color: #f44336;
    --error-color-rgb: 244, 67, 54; /* RGB-Werte für rgba() */
    --error-dark: #d32f2f;
    --error-light: #ef9a9a;
    
    --info-color: #2196f3;
    --info-color-rgb: 33, 150, 243; /* RGB-Werte für rgba() */
    --info-dark: #1976d2;
    --info-light: #90caf9;
    
    /* Schatten - Verbesserte Tiefenwirkung */
    --box-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
    --box-shadow-pressed: 0 2px 10px rgba(0, 0, 0, 0.1);
    --gold-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
    --red-glow: 0 0 20px rgba(196, 18, 48, 0.2);
    --inset-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
    
    /* Übergänge - Optimiert für flüssige Animationen */
    --transition-fast: 0.15s;
    --transition-speed: 0.3s;
    --transition-slow: 0.5s;
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: cubic-bezier(0.4, 0.0, 0.2, 1);
    --transition-decelerate: cubic-bezier(0.0, 0.0, 0.2, 1);
    --transition-accelerate: cubic-bezier(0.4, 0.0, 1, 1);
    
    /* Rahmen */
    --gold-border: 1px solid rgba(233, 180, 76, 0.4);
    --section-border-radius: 12px;
    --border-radius-xs: 2px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-full: 9999px;
    
    /* Layout-Abstände - Konsistentes Spacing-System */
    --spacing-xxs: 0.25rem;  /* 4px */
    --spacing-xs: 0.5rem;    /* 8px */
    --spacing-sm: 1rem;      /* 16px */
    --spacing-md: 1.5rem;    /* 24px */
    --spacing-lg: 2rem;      /* 32px */
    --spacing-xl: 3rem;      /* 48px */
    --spacing-xxl: 4rem;     /* 64px */
    --spacing-xxxl: 6rem;    /* 96px */
    
    /* Container-Größen */
    --container-width: 1280px;
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    
    /* Header und Navigation */
    --header-height: 80px;
    --header-height-mobile: 60px;
    --z-index-dropdown: 100;
    --z-index-sticky: 200;
    --z-index-fixed: 500;
    --z-index-header: 1000;
    --z-index-modal: 2000;    --z-index-popover: 2500;
    --z-index-toast: 3000;
    --z-index-tooltip: 4000;
    --z-index-cookie: 9999999;
    
    /* Typografie-Skala */
    --font-size-xs: 0.75rem;   /* 12px */
    --font-size-sm: 0.875rem;  /* 14px */
    --font-size-base: 1rem;    /* 16px */
    --font-size-md: 1.125rem;  /* 18px */
    --font-size-lg: 1.25rem;   /* 20px */
    --font-size-xl: 1.5rem;    /* 24px */
    --font-size-2xl: 1.875rem; /* 30px */
    --font-size-3xl: 2.25rem;  /* 36px */
    --font-size-4xl: 3rem;     /* 48px */
    --font-size-5xl: 3.75rem;  /* 60px */
    
    /* Schriftgewichte */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Zeilenhöhen */
    --line-height-none: 1;
    --line-height-tight: 1.2;
    --line-height-snug: 1.375;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.7;
    --line-height-loose: 2;
    
    /* Barrierefreiheit - Verbesserte Fokus-Stile */
    --focus-ring-color: rgba(196, 18, 48, 0.6); /* Stärkerer Kontrast */
    --focus-ring-width: 3px; /* Breiter für bessere Sichtbarkeit */
    --focus-ring-offset: 2px;
    
    /* Animation */
    --animation-duration-fast: 150ms;
    --animation-duration-normal: 300ms;
    --animation-duration-slow: 500ms;
    --animation-timing-ease: ease;
    --animation-timing-ease-in: ease-in;
    --animation-timing-ease-out: ease-out;
    --animation-timing-ease-in-out: ease-in-out;
}
