/* variables.css */
:root {
    /* Color Palette */
    --color-primary: #1B3A5C;      /* Navy Blue */
    --color-primary-light: #2c5a8e;
    --color-primary-dark: #0F2744;
    
    --color-secondary: #C9A84C;    /* Elegant Gold */
    --color-secondary-hover: #b5943b;
    
    --color-accent: #2E8B6E;       /* Emerald Green */
    
    --color-bg-light: #F8F6F1;     /* Cream */
    --color-bg-white: #FFFFFF;
    
    --color-text-main: #1A1A2E;    /* Dark Charcoal */
    --color-text-muted: #5A6275;   /* Gray */
    --color-text-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --container-max: 1200px;
    --container-padding: 1.5rem;
    
    /* Borders & Shadows */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    --shadow-sm: 0 2px 4px rgba(27, 58, 92, 0.05);
    --shadow-md: 0 4px 12px rgba(27, 58, 92, 0.1);
    --shadow-lg: 0 12px 24px rgba(27, 58, 92, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}
