/* ===== ZMIENNE CSS - EARTH TONES ===== */
:root {
    /* KOLORY */
    --primary-color: #8B7355;
    --primary-hover: #706050;
    --primary-light: #F5F2ED;
    --primary-dark: #5C4E3F;
    
    --secondary-color: #A0826D;
    --secondary-hover: #8B7355;
    --secondary-light: #FAF8F5;
    
    --accent-color: #CD853F;
    --accent-hover: #B8732B;
    
    --success-color: #6B8E23;
    --success-light: #F0F8E8;
    --success-dark: #556B1F;
    
    --warning-color: #DAA520;
    --warning-light: #FFF8DC;
    --warning-dark: #B8860B;
    
    --danger-color: #B22222;
    --danger-light: #FFF0F0;
    --danger-dark: #8B1A1A;
    
    /* NEUTRALNE */
    --bg-color: #FFFEFA;
    --bg-secondary: #F8F6F2;
    --card-bg: #FFFFFF;
    --border-color: #E5DFD5;
    --border-light: #F0EDE8;
    --text-color: #2C2416;
    --text-muted: #6B5D54;
    --text-light: #8B7D6F;
    
    /* TYPOGRAFIA */
    --font-family-primary: Georgia, 'Times New Roman', serif;
    --font-family-secondary: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-mono: 'Courier New', Courier, monospace;
    
    /* WIELKOŚCI FONTÓW */
    --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 */
    
    /* LINE HEIGHT */
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;
    
    /* SPACING */
    --spacing-1: 0.25rem;   /* 4px */
    --spacing-2: 0.5rem;    /* 8px */
    --spacing-3: 0.75rem;   /* 12px */
    --spacing-4: 1rem;      /* 16px */
    --spacing-5: 1.25rem;   /* 20px */
    --spacing-6: 1.5rem;    /* 24px */
    --spacing-8: 2rem;      /* 32px */
    --spacing-10: 2.5rem;   /* 40px */
    --spacing-12: 3rem;     /* 48px */
    --spacing-16: 4rem;     /* 64px */
    --spacing-20: 5rem;     /* 80px */
    
    /* BORDER RADIUS */
    --radius-sm: 0.25rem;   /* 4px */
    --radius-base: 0.5rem;  /* 8px */
    --radius-lg: 0.75rem;   /* 12px */
    --radius-xl: 1rem;      /* 16px */
    
    /* SHADOWS */
    --shadow-sm: 0 1px 2px 0 rgba(44, 36, 22, 0.05);
    --shadow-base: 0 1px 3px 0 rgba(44, 36, 22, 0.1), 0 1px 2px 0 rgba(44, 36, 22, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(44, 36, 22, 0.1), 0 2px 4px -1px rgba(44, 36, 22, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(44, 36, 22, 0.1), 0 4px 6px -2px rgba(44, 36, 22, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(44, 36, 22, 0.1), 0 10px 10px -5px rgba(44, 36, 22, 0.04);
    
    /* TRANSITIONS */
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
    
    /* BREAKPOINTS */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
    
    /* Z-INDEX */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}
