/*
 * ABS Hotel Cloud v4 tokens
 * Contract: variables only. No component selectors.
 */

:root {
    /* Locked brand/system colors */
    --abs-blue-dark: #004d6f;
    --abs-blue-main: #0d6efd;
    --abs-orange: #fa6800;
    --abs-green: #60a917;
    --abs-yellow: #fff000;
    --abs-purple: #aa00ff;
    --abs-red: #ce352c;
    --abs-dark: #2b2b2b;

    /* Core text */
    --text-main: #585b5d;
    --text-light: #bebebe;

    /* Locked status backgrounds */
    --status-housekeeping: #aa00ff;
    --status-checkedin: #fa6800;
    --status-checkedout: #00aff0;
    --status-available: #ffffff;

    /* Fixed readable foregrounds */
    --on-status-housekeeping: #ffffff;
    --on-status-checkedin: #2b2b2b;
    --on-status-checkedout: #2b2b2b;
    --on-status-available: #2b2b2b;

    /* Optional separation borders while preserving backgrounds */
    --status-border-housekeeping: rgba(255, 255, 255, 0.2);
    --status-border-checkedin: rgba(43, 43, 43, 0.24);
    --status-border-checkedout: rgba(43, 43, 43, 0.24);
    --status-border-available: rgba(43, 43, 43, 0.18);

    /* Typography */
    --font-family-base: 'Poppins', sans-serif;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-xxl: 24px;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;

    /* 4px grid */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-6: 24px;

    /* Shape */
    --radius-sm: 4px;
    --radius-md: 8px;

    /* Elevation */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);

    /* Motion */
    --duration-fast: 150ms;
    --duration-normal: 200ms;
}