/* ==========================================================================
   CSS VARIABLES - Global Theme Variables
   ========================================================================== */

:root {
    /* Colors */
    --color-primary: #2a5b55;
    --color-primary-hover: #1f4640;
    --color-secondary: #a35a63;
    --color-secondary-hover: #8f4d55;
    --color-button-primary: #97C7CB;
    --color-button-primary-hover: #85b5b9;
    
    /* Background Colors */
    --color-bg-light: #f5f5f0;
    --color-bg-white: #ffffff;
    --color-bg-beige: #f5f5f0;
    --bg-color: #F4EDE5;
    --white: #ffffff;
    
    /* Text Colors */
    --color-text: #2a2a2a;
    --color-text-dark: #343434;
    --color-text-light: #ffffff;
    --color-text-muted: #999999;
    --color-text-gray: #BDBDBD;
    --color-text-secondary: #666666;
    --color-text-semi-transparent: rgba(255, 255, 255, 0.9);
    --color-text-very-light: rgba(255, 255, 255, 0.7);
    --color-text-dark-semi: rgba(52, 52, 52, 0.9);
    
    /* Accent Colors */
    --color-accent: #97C7CB;
    
    /* Border Colors */
    --color-border: #e1e1e1;
    --color-border-light: rgba(255, 255, 255, 0.3);
    --color-border-gray: #D8DAD9;
    
    /* Shadow Colors */
    --shadow-primary: rgba(42, 91, 85, 0.25);
    --shadow-secondary: rgba(163, 90, 99, 0.3);
    --shadow-light: rgba(0, 0, 0, 0.08);
    
    /* Typography */
    --font-family-primary: 'Montserrat', sans-serif;
    --font-size-small: 13px;
    --font-size-normal: 14px;
    --font-size-medium: 16px;
    --font-size-large: 18px;
    --font-size-xl: 24px;
    --font-size-xxl: 28px;
    --font-size-xxxl: 32px;
    
    /* Font sizes for header components */
    --font-xs: 12px;
    --font-sm: 14px;
    --font-md: 16px;
    --font-lg: 18px;
    --font-xl: 20px;
    
    /* Font weights */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 20px;
    --spacing-xl: 24px;
    --spacing-xxl: 32px;
    --spacing-xxxl: 48px;
    
    /* Extended spacing for header/menu components */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 12px;
    --space-lg: 16px;
    --space-xl: 20px;
    --space-2xl: 24px;
    --space-3xl: 32px;
    --space-4xl: 48px;
    --space-5xl: 64px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 22px;
    --radius-xxl: 24px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Header/Layout specific */
    --color-header-bg: #ffffff;
    --color-light-gray: #f8f8f8;
    --color-bg: #ffffff;
    --container-max: 1200px;
    --section-vertical: 48px;
    --radius-pill: 50px;
    
    /* Z-index */
    --z-index-dropdown: 10;
    --z-index-sticky: 20;
    --z-index-modal: 100;
    --z-index-tooltip: 200;
    --z-header: 50;
}

/* Dark mode variables (if needed in future) */
@media (prefers-color-scheme: dark) {
    :root {
        --color-bg-white: #1a1a1a;
        --color-bg-light: #2a2a2a;
        --color-text: #ffffff;
        --color-text-muted: #cccccc;
        --color-border: #404040;
    }
}
