/* CSS Variables - Color Palette and Design Tokens */

:root {
    /* Colors */
    --navy: #0a1628;
    --deep-blue: #1a2842;
    --accent-gold: #d4af37;
    --warm-white: #faf8f3;
    --muted-gold: #8b7355;
    --light-gray: #e8e6e0;
    --border-subtle: rgba(212, 175, 55, 0.2);
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-mono: 'IBM Plex Mono', monospace;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 2px;
    --radius-md: 3px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.05);
    --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.08);
    --shadow-lg: 0 12px 32px rgba(10, 22, 40, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-index layers */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 1000;
    --z-tooltip: 1100;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-serif);
    background: var(--warm-white);
    color: var(--navy);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 18px;
}
