/* Explain: Theme design tokens with gold and deep green primary colors. - */
:root {
    --primary-color: #ca8a04; /* Gold */
    --primary-hover: #a16207;
    --secondary-color: #064e3b; /* Deep Green */
    --secondary-hover: #043c2d;
    --accent-color: #ea580c; /* Spicy Accent */
    --background-color: #fdfbf7; /* Cream */
    --surface-color: #ffffff;
    --text-color: #1c1917;
    --text-muted: #57534e;
    --border-color: #e7e5e4;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Outfit', sans-serif;
}