/* Mandala LMS — global brand token overrides.
 *
 * Linked immediately after main.min.css in base.html.twig and home.html.twig.
 * It exists because main.min.css is a compiled artifact with no build source in
 * this tree, so forma's baked-in defaults are overridden here rather than by
 * editing minified output. (Do not fold this into static/main.css — that name
 * is reserved by the template convention for the unminified build of main.min.css.)
 *
 * Scope: login, admin and legacy surfaces. The learner/LMS shell drives its own
 * palette from --mandala-* in style/mandala-learner.css — keep the two in step.
 *
 * Only custom properties are redefined here. Nothing is restyled directly, so
 * these overrides reach exactly the rules that already consume the tokens and
 * cannot introduce layout or specificity regressions.
 *
 * Palette: Deep Indigo #18105F carries structure; Orange #F58220 marks the
 * action or the focus — never both at once. Gold #E8A33D is certification only.
 */

:root {
    /* Structure */
    --color-primary: #18105f;
    --color-primary-text: #ffffff;
    --color-heading: #18105f;

    /* Action / focus */
    --color-secondary: #f58220;
    --color-secondary-text: #ffffff;

    /* States */
    --color-error: #d14343;
    --color-warning: #e8a33d;
}
