:root {
    /* Brand Colors */
    --color-primary: #2c5e4f; /* Forest Green */
    --color-primary-light: #4a8271;
    --color-secondary: #d4a373; /* Soft Brown/Tan */
    --color-accent: #e9c46a; /* Muted Gold */

    /* Neutral Colors */
    --color-bg: #fcfcfc;
    --color-bg-alt: #f3f4f6;
    --color-text: #1f2937;
    --color-text-muted: #6b7280;
    --color-border: #e5e7eb;

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

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

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.dark {
    --color-bg: #111827;
    --color-bg-alt: #1f2937;
    --color-text: #f9fafb;
    --color-text-muted: #9ca3af;
    --color-border: #374151;
    
    --color-primary: #4a8271;
    --color-primary-light: #2c5e4f;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
}
