/*
 * Per-tenant theme overrides
 * ─────────────────────────────────────────────────────────────────────────────
 * This file is NOT processed by the Tailwind CLI / Lightning CSS minifier so
 * [data-theme] attribute-selector blocks are guaranteed to survive in production.
 *
 * The tokens here override the @theme defaults defined in app.css.
 * Applied by App.razor writing data-theme="<tenantId>" on the <html> element.
 *
 * Adding a new tenant: add one new [data-theme="<slug>"] block below.
 * No Tailwind rebuild is needed — just re-deploy.
 */

/* default — sky / teal (AURAcrat) */
[data-theme="default"] {
    --color-brand-primary:  oklch(62% 0.19 215);
    --color-brand-accent:   oklch(72% 0.16 175);
    --color-brand-cta-from: oklch(80% 0.14 198);
    --color-brand-cta-to:   oklch(72% 0.16 175);
    --color-brand-glow:     oklch(62% 0.19 215);
    --color-brand-badge:    oklch(62% 0.19 215);
}

/* tranzin — gold / navy (from tranzin.com brand: --gold:#D4AF37, #B8921A deep gold, --royal:#0B3D91) */
[data-theme="tranzin"] {
    --color-brand-primary:  oklch(73% 0.134 83);   /* #D4AF37 Tranzin gold */
    --color-brand-accent:   oklch(62% 0.155 72);   /* #B8921A deep gold */
    --color-brand-cta-from: oklch(73% 0.134 83);   /* gold */
    --color-brand-cta-to:   oklch(62% 0.155 72);   /* deep gold */
    --color-brand-glow:     oklch(73% 0.134 83);   /* gold */
    --color-brand-badge:    oklch(73% 0.134 83);   /* gold */
}
