:root {
    /* Colors */
    --primary-color: #A2B568;
    --primary-dark: #697431;
    --primary-darker: #475D2E;
    --secondary-color: #15282F;
    --secondary-light: #114643;
    --accent-color: #068176;
    --white: #FFFFFF;
    
    /* Text Colors */
    --text-primary: #15282F;
    --text-secondary: #475D2E;
    --text-light: #A2B568;
    --text-white: #FFFFFF;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F7F2;
    --bg-dark: #15282F;
    --bg-accent: #A2B568;
    
    /* Border Colors */
    --border-light: #A2B568;
    --border-dark: #475D2E;
    
    /* Hover States */
    --hover-primary: #697431;
    --hover-secondary: #114643;
    --hover-accent: #068176;
    
    /* Overlay Colors */
    --overlay-dark: rgba(21, 40, 47, 0.8);
    --overlay-light: rgba(162, 181, 104, 0.1);
    
    /* Shadow Colors */
    --shadow-color: rgba(21, 40, 47, 0.1);
    
    /* Fonts */
    --font-primary: 'Merriweather', serif;
    --font-secondary: 'Source Sans Pro', sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
} 