/*
 * QueueHawk brand tokens - kanonische Quelle für Markenfarben/Typografie auf allen
 * nicht-MudBlazor-Oberflächen (Landingpage, roher HTML/CSS-Code). Das MudTheme-Objekt
 * (src/QueueHawk.Dashboard/Theme/QueueHawkTheme.cs) dupliziert dieselben Hex-Werte für
 * MudBlazor-Komponenten (MudTheme ist ein C#-Objekt, kein CSS-Custom-Property-Konsument) -
 * bei Palette-Änderungen beide Dateien bewusst gemeinsam anfassen.
 */
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/inter-400-latin.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/inter-600-latin.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/inter-700-latin.woff2") format("woff2");
}

:root {
    --qh-ink: #0F172A;
    --qh-primary: #D97706;
    --qh-primary-dark: #F59E0B;
    --qh-accent: #0EA5E9;
    --qh-success: #16A34A;
    --qh-warning: #F59E0B;
    --qh-error: #DC2626;
    --qh-bg: #F8FAFC;
    --qh-surface: #FFFFFF;
    --qh-border: #E2E8F0;
    --qh-text: #0F172A;
    --qh-text-muted: #64748B;

    --qh-radius-md: 8px;
    --qh-radius-lg: 16px;

    --qh-font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --qh-font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
}
