/*
 * Chefsynk platform tokens — also the fallback brand for unknown hosts.
 *
 * Deliberately neutral: no customer's marks, no licensed font. Values here
 * mirror the safety defaults in app/globals.css so an unrecognised domain
 * still renders a coherent page.
 */

:root {
    /* Core identity */
    --brand-primary: #1f2937;
    --brand-on-primary: #ffffff;
    --font-primary: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

    /* Surfaces */
    --brand-surface: #f8fafc;
    --brand-surface-tint: rgba(31, 41, 55, 0.12);
    --brand-map-surface: #eef2f6;

    /* Decorative */
    --brand-kiosk-bg: linear-gradient(to bottom, #1f2937 0%, #0f172a 100%);
    --brand-footer-text: "ORDER TRACKING";
    --brand-footer-text-color: #ffffff;
}

.tenant-bg {
    min-height: 100vh;
}

.kiosk-bg {
    background: var(--brand-kiosk-bg);
}

.kiosk-footer-text {
    color: var(--brand-footer-text-color);
}

.kiosk-footer-text::after {
    content: var(--brand-footer-text);
}
