/**
 * CSS Variables for Timber and Hue Theme
 * This creates a consistent design system across the theme
 */

:root {
    /* Color Palette */
    --color-navy: #002244;
    --color-teal: #3ea9b8;
    --color-teal-dark: #2e8a98;
    --color-orange: #FFA500;
    --color-white: #ffffff;
    --color-black: #1a1a1a;
    --color-gray-light: #f8f9fa;
    --color-gray: #6b7280;
    --color-gray-dark: #4b5563;
    --color-gray-darker: #333333;
    
    /* Brand Colors */
    --color-primary: var(--color-teal);
    --color-primary-hover: var(--color-teal-dark);
    --color-secondary: var(--color-navy);
    --color-accent: var(--color-orange);
    
    /* Text Colors */
    --color-text-primary: var(--color-gray-darker);
    --color-text-secondary: var(--color-gray);
    --color-text-light: var(--color-gray-dark);
    --color-text-heading: var(--color-black);
    
    /* Background Colors */
    --color-bg-primary: var(--color-white);
    --color-bg-secondary: var(--color-gray-light);
    --color-bg-dark: var(--color-black);
    
    /* Typography */
    --font-family-primary: 'Poppins', sans-serif;
    --font-family-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    
    /* Font Sizes */
    --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: 2rem;      /* 32px */
    --font-size-3xl: 2.25rem;   /* 36px */
    --font-size-4xl: 3rem;      /* 48px */
    --font-size-5xl: 3.25rem;   /* 52px */
    
    /* Font Weights */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-base: 1.6;
    --line-height-relaxed: 1.8;
    
    /* Spacing Scale */
    --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: 2.5rem;   /* 40px */
    --spacing-3xl: 3rem;     /* 48px */
    --spacing-4xl: 4rem;     /* 64px */
    --spacing-5xl: 5rem;     /* 80px */
    
    /* Border Radius */
    --radius-sm: 0.25rem;    /* 4px */
    --radius-md: 0.5rem;     /* 8px */
    --radius-lg: 0.625rem;   /* 10px */
    --radius-xl: 1rem;       /* 16px */
    --radius-2xl: 1.5rem;    /* 24px */
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 20px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Container */
    --container-max-width: 1200px;
    --container-padding: var(--spacing-lg);
    
    /* Header */
    --header-height: 100px;
    --header-height-mobile: 80px;
    
    /* Z-index Scale */
    --z-index-dropdown: 10;
    --z-index-sticky: 50;
    --z-index-fixed: 100;
    --z-index-modal-backdrop: 200;
    --z-index-modal: 210;
    --z-index-popover: 300;
    --z-index-tooltip: 400;
}

/* Dark mode support (future enhancement) */
@media (prefers-color-scheme: dark) {
    :root {
        /* Dark mode color overrides can be added here */
    }
}

/* Responsive font sizes */
@media (max-width: 768px) {
    :root {
        --font-size-3xl: 1.875rem;  /* 30px */
        --font-size-4xl: 2.25rem;   /* 36px */
        --font-size-5xl: 2.5rem;    /* 40px */
    }
}