/* Theme Variables - Light (Pastel) */
:root {
    --bg-primary: #f5f0e8;
    --bg-secondary: #e8e0d4;
    --bg-accent: #d4c5b0;
    --text-primary: #3d3d3d;
    --text-secondary: #6b6b6b;
    --accent: #9a8c7c;
    --accent-light: #c9bfb0;
    --highlight: #b8a894;
    --card-bg: rgba(255, 255, 255, 0.6);
    --border: rgba(154, 140, 124, 0.3);
    --circle-color: rgba(154, 140, 124, 0.2);
}

/* Dark theme (Blueprint) - auto-detected by browser */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #1a2a3a;
        --bg-secondary: #0f1f2f;
        --bg-accent: #0a1520;
        --text-primary: #e8f4ff;
        --text-secondary: #a8c8e8;
        --accent: #4a9eff;
        --accent-light: #6bb3ff;
        --highlight: #2d7dd2;
        --card-bg: rgba(42, 72, 102, 0.5);
        --border: rgba(74, 158, 255, 0.3);
        --circle-color: rgba(74, 158, 255, 0.15);
    }
}
