/* CSS Variables for The Reckoning Takes Flight */
:root {
    /* Colors - Corporate Dark Theme */
    --primary-dark: #1a1a2e;
    --primary-blue: #16213e;
    --accent-gold: #d4af37;
    --accent-blue: #0f3460;
    --text-light: #ffffff;
    --text-secondary: #b8b8b8;
    --text-dark: #2c2c2c;
    
    /* Background Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a2e;
    --bg-card: #16213e;
    --bg-section: #0f1419;
    --bg-gradient: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    --bg-hero-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    
    /* Border & Shadow */
    --border-color: #2a2a3e;
    --border-light: #3a3a5e;
    --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-large: 0 8px 32px rgba(0, 0, 0, 0.5);
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;
    
    /* Font Sizes */
    --font-xs: 0.75rem;    /* 12px */
    --font-sm: 0.875rem;   /* 14px */
    --font-base: 1rem;     /* 16px */
    --font-md: 1.125rem;   /* 18px */
    --font-lg: 1.25rem;    /* 20px */
    --font-xl: 1.5rem;     /* 24px */
    --font-2xl: 1.875rem;  /* 30px */
    --font-3xl: 2.25rem;   /* 36px */
    --font-4xl: 3rem;      /* 48px */
    --font-5xl: 3.75rem;   /* 60px */
    
    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-black: 900;
    
    /* Spacing */
    --space-1: 0.25rem;    /* 4px */
    --space-2: 0.5rem;     /* 8px */
    --space-3: 0.75rem;    /* 12px */
    --space-4: 1rem;       /* 16px */
    --space-5: 1.25rem;    /* 20px */
    --space-6: 1.5rem;     /* 24px */
    --space-8: 2rem;       /* 32px */
    --space-10: 2.5rem;    /* 40px */
    --space-12: 3rem;      /* 48px */
    --space-16: 4rem;      /* 64px */
    --space-20: 5rem;      /* 80px */
    --space-24: 6rem;      /* 96px */
    --space-32: 8rem;      /* 128px */
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-popover: 1050;
    --z-tooltip: 1060;
    
    /* Container */
    --container-max-width: 1200px;
    --container-padding: var(--space-4);
    
    /* Grid */
    --grid-gap: var(--space-6);
    
    /* Button Colors */
    --btn-primary-bg: var(--accent-gold);
    --btn-primary-text: var(--primary-dark);
    --btn-primary-hover: #e6c547;
    --btn-secondary-bg: transparent;
    --btn-secondary-border: var(--accent-gold);
    --btn-secondary-text: var(--accent-gold);
    --btn-secondary-hover: var(--accent-gold);
} 