/* ============================================
   BUNTE VÖGEL COLOR SYSTEM
   Design System based on the lettermark logo
   ============================================ */

:root {
    /* Primary Colors - From Logo */
    --color-primary-blue: #0051BA;
    --color-accent-red: #E31E24;
    
    /* Pastel Bird Colors */
    --color-bird-pink: #F5B6D1;
    --color-bird-green: #B3F5A3;
    --color-bird-yellow: #FFE680;
    --color-bird-purple: #D4B3F5;
    --color-bird-orange: #FFD9A3;
    
    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-light: #F9F8F6;
    --color-dark: #2C2C2C;
    --color-gray: #757575;
    --color-gray-light: #ECECEC;
    --color-gray-medium: #D4D4D4;
    
    /* Semantic Colors */
    --color-success: #27AE60;
    --color-error: #E74C3C;
    --color-warning: #F39C12;
    --color-info: #3498DB;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary-blue), var(--color-info));
    --gradient-warm: linear-gradient(135deg, var(--color-bird-orange), var(--color-bird-yellow));
    --gradient-soft: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 248, 246, 0.95));
    
    /* Shadows */
    --shadow-light: 0 2px 8px rgba(44, 44, 44, 0.08);
    --shadow-medium: 0 4px 16px rgba(44, 44, 44, 0.12);
    --shadow-card: 0 6px 20px rgba(44, 44, 44, 0.1);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Lora', serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
}
