/* ==========================
   Outfit Font – All Weights
   ========================== */
@font-face {
    font-family: 'Outfit';
    src: url('/Content/fonts/Outfit-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('/Content/fonts/Outfit-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('/Content/fonts/Outfit-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('/Content/fonts/Outfit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('/Content/fonts/Outfit-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('/Content/fonts/Outfit-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('/Content/fonts/Outfit-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('/Content/fonts/Outfit-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('/Content/fonts/Outfit-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* ==========================
   Design Tokens (Variables)
   ========================== */
:root {
    --font-family: 'Outfit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --base-font-size: 15px;
    --accent: #C3125B;
    --accent-strong: #a10f48;
    --accent-green: #74B543;
    --muted: #C8C8C8;
    --bg: #fbfbfb;
    --radius: 0.5rem;
    --gap: 0.75rem;
}

/* ==========================
   Base & Font Consistency
   ========================== */
html, body {
    height: 100%;
    margin: 0;
    font-family: var(--font-family);
    font-size: var(--base-font-size);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure Outfit is used everywhere in DevExpress Metropolis */
[class*='_Metropolis'],
.dx {
    font-family: var(--font-family) !important;
    font-size: 14px;
}
