:root {
    /* Colors */
    --color-primary: #C41E3A;
    --color-primary-dark: #a01830;
    --color-hero-bg: #8B7355;
    --color-hero-bg-dark: #6d5a44;
    --color-footer-bg: #1a1a2e;
    --color-dark-section: #1e1e2e;
    --color-white: #ffffff;
    --color-light-gray: #f5f5f5;
    --color-gray: #e8e8e8;
    --color-dark: #333333;
    --color-text: #666666;
    --color-text-light: #999999;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', 'Open Sans', sans-serif;
    
    /* Font Sizes */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 2rem;
    --fs-4xl: 2.5rem;
    --fs-5xl: 3rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}
