:root {
    /* Color Scheme */
    --primary-color: #2E8B57;      /* Sea Green - main theme color */
    --primary-light: #3CAB6E;      /* Lighter shade of primary */
    --primary-dark: #256B42;       /* Darker shade of primary */
    
    --secondary-color: #F5F5F5;    /* Light background */
    --accent-color: #FFD700;       /* Gold for highlights */
    
    /* Text Colors */
    --text-primary: #333333;       /* Main text color */
    --text-secondary: #666666;     /* Secondary text color */
    --text-light: #FFFFFF;         /* Light text color */
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    
    /* Animation Durations */
    --animation-speed-fast: 200ms;
    --animation-speed-normal: 300ms;
    --animation-speed-slow: 500ms;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
} 