/* 
 * variables.css
 * Purpose: Defines CSS custom properties (variables) for colors, typography, spacing, etc. 
 */
:root {
    /* Colors */
    --clr-black: #050505;
    --clr-black-light: #121212;
    --clr-white: #ffffff;
    --clr-white-muted: #e0e0e0;
    --clr-red-deep: #8B0000;
    --clr-red-deep-hover: #a50000;
    --clr-gold: #D4AF37;
    --clr-gold-light: #F3E5AB;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 3.75rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-pill: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-Index */
    --z-header: 100;
    --z-dropdown: 90;
    --z-overlay: 80;
    --z-normal: 1;
}

.theme-dark {
    --bg-color: var(--clr-black);
    --text-color: var(--clr-white);
    --text-muted: var(--clr-white-muted);
    --border-color: rgba(255, 255, 255, 0.1);
}
