/**
 * Inter — self-hosted variable only (giảm FOUT / số request font khi F5).
 * LICENSE: see ../vendor/fonts/inter/LICENSE.txt
 *
 * Bản cũ khai 2 khối variable + 18 khối tĩnh cùng family Inter.
 * Trình duyệt hiện đại vẫn tải thêm file tĩnh (Light/Medium/Bold…).
 * Chỉ giữ 2 file variable; tĩnh nằm trong @supports not (...) làm đường lùi.
 */

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../vendor/fonts/inter/InterVariable.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 100 900;
    font-display: optional;
    src: url('../vendor/fonts/inter/InterVariable-Italic.woff2') format('woff2');
}

@supports not (font-variation-settings: normal) {
    @font-face {
        font-family: 'Inter';
        font-style: normal;
        font-weight: 400;
        font-display: swap;
        src: url('../vendor/fonts/inter/Inter-Regular.woff2') format('woff2');
    }

    @font-face {
        font-family: 'Inter';
        font-style: normal;
        font-weight: 600;
        font-display: swap;
        src: url('../vendor/fonts/inter/Inter-SemiBold.woff2') format('woff2');
    }

    @font-face {
        font-family: 'Inter';
        font-style: normal;
        font-weight: 700;
        font-display: swap;
        src: url('../vendor/fonts/inter/Inter-Bold.woff2') format('woff2');
    }
}

:root {
    --ola-font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
    font-family: var(--ola-font-sans);
}

body,
#OLA,
#OLA .navbar,
#OLA .nav-link,
#OLA .dropdown-menu,
#OLA .dropdown-item,
#OLA .breadcrumb,
#OLA .card,
#OLA .btn,
#OLA .form-control,
#OLA .form-select,
#OLA .input-group-text,
#OLA textarea,
#OLA label,
#OLA .table,
#OLA .modal,
#OLA .modal-title,
#OLA .pagination,
#OLA .page-link,
#OLA .alert,
#OLA .badge,
#OLA .tooltip,
#OLA .accordion,
#OLA .nav-tabs,
#OLA .tab-content,
#OLA .toast,
#OLA footer,
#OLA .top-bar,
#OLA h1, #OLA h2, #OLA h3, #OLA h4, #OLA h5, #OLA h6,
#OLA p, #OLA span, #OLA a, #OLA li, #OLA td, #OLA th {
    font-family: var(--ola-font-sans);
}
