:root {
    /* Colors */
    --color-primary: #1a472a; /* Deep Forest Green */
    --color-secondary: #c5a059; /* Gold/Bronze */
    --color-accent: #2c3e50; /* Dark Blue-Grey */
    --color-background: #fdfdfd; /* Off-white */
    --color-surface: #ffffff;
    --color-text-main: #333333;
    --color-text-light: #ffffff;
    --color-border: #e0e0e0;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
}
