/* Explain: Theme design tokens with updated colors from the logo. - */
:root {
    --earthy-green: #144933;
    --earthy-green-hover: #0e3524;
    --warm-beige: #FFF8EE;
    --dark-charcoal: #2F3538;
    --subtle-gold: #ECA31E;
    --pure-white: #FFFFFF;
    --off-white: #FAFAFA;

    --primary-color: var(--earthy-green);
    --primary-hover: var(--earthy-green-hover);
    --secondary-color: var(--subtle-gold);
    --accent-color: #D32724;
    --background-color: var(--off-white);
    --surface-color: var(--pure-white);
    --text-color: var(--dark-charcoal);
    --text-muted: #5c666b;
    --border-color: #d1d5db;
    
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Lato', sans-serif;
}