/* CSS Variables */
:root {
    /* Colors */
    --primary-color: #479dcb;
    --secondary-color: #253d5d;
    --accent-color: #3498db;
    --text-light: #ecf0f1;
    --text-dark: #2c3e50;
    --text-muted: #7f8c8d;
    --background-dark: #1a1a1a;
    --background-light: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;

    /* Typography */
    --font-primary: 'Proxima Nova Regular', Arial, sans-serif;
    --font-bold: 'Proxima Nova Semibold', Arial, sans-serif;
    --font-heading: 'LTC Bodoni 175 Pro', Georgia, serif;
    --font-size-xs: 0.75rem;
    /* 12px */
    --font-size-sm: 0.875rem;
    /* 14px */
    --font-size-base: 1rem;
    /* 16px */
    --font-size-lg: 18px;
    /* 18px */
    --font-size-xl: 20px;
    /* 20px */
    --font-size-2xl: 22px;
    --font-size-26: 26px;
    --font-size-30: 30px;
    /* 24px */
    --font-size-3xl: 41px;
    /* 30px */
    --font-size-50: 50px;
    --font-size-4xl: 85px;
    /* 36px */
    --font-size-5xl: 3rem;
    /* 48px */
    --font-size-6xl: 3.75rem;
    /* 60px */

    /* Font Weights */
    --font-weight-light: 300;
    /* Proxima Nova Light */
    --font-weight-normal: 400;
    /* Proxima Nova Regular */
    --font-weight-medium: 500;
    /* Proxima Nova Medium */
    --font-weight-semibold: 600;
    /* Proxima Nova Semibold */
    --font-weight-bold: 600;
    /* Use Semibold as Bold */

    /* Line Heights */
    --line-height-one: 1;
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;

    /* Spacing */
    --spacing-xs: 4px;
    /* 4px */
    --spacing-sm: 8px;
    /* 8px */
    --spacing-md: 16px;
    /* 16px */
    --spacing-lg: 24px;
    /* 24px */
    --spacing-xl: 32px;
    /* 32px */
    --spacing-2xl: 40px;
    /* 40px */
    --spacing-3xl: 48px;
    /* 48px */
    --spacing-4xl: 64px;
    /* 64px */
    --spacing-5xl: 80px;
    /* 80px */
    --spacing-6xl: 96px;
    /* 96px */

    /* Border */
    --border-radius-sm: 4px;
    /* 4px */
    --border-radius-md: 6px;
    /* 6px */
    --border-radius-lg: 8px;
    /* 8px */
    --border-radius-xl: 0.75rem;
    /* 12px */
    --border-radius-2xl: 12px;
    /* 16px */
    --border-radius-full: 16px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition-fast: 0.15s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;
    --transition-ease: cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;

    /* Container Max Widths */
    --container-sm: 540px;
    --container-md: 720px;
    --container-lg: 960px;
    --container-xl: 1140px;
    --container-xxl: 1320px;

    /* Breakpoints */
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1400px;
}

/* Dark mode variables */
@media (prefers-color-scheme: dark) {
    :root {
        --background-light: #1a1a1a;
        --background-dark: #ffffff;
        --text-light: #2c3e50;
        --text-dark: #ecf0f1;
        --border-color: #404040;
    }
}

/* Custom properties for specific components */
:root {
    /* Header */
    --header-height: 80px;
    --header-bg: var(--background-dark);
    --navbar-brand-font-size: var(--font-size-lg);

    /* Footer */
    --footer-bg: var(--background-dark);
    --footer-text: var(--text-light);

    /* Buttons */
    --btn-primary-bg: var(--accent-color);
    --btn-primary-hover: #2980b9;
    --btn-secondary-bg: transparent;
    --btn-secondary-border: var(--text-light);

    /* Forms */
    --input-bg: var(--background-light);
    --input-border: var(--border-color);
    --input-focus-border: var(--accent-color);
    --input-focus-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}