/* Global theme helpers */
:root {
    --bg: #ffffff;
    --text: #333333;
    --accent: #6f2023;
}

body {
    background-color: var(--bg);
    color: var(--text);
}

/* Dark mode root overrides (when body has .dark) */
body.dark {
    --bg: #1a1a1a;
    --text: #f8f5f2;
    --accent: #6f2023;
}

.navbar-brand {
    font-weight: bold;
}
