/* ======================================================================= */
/* CARWEL - FONT DECLARATIONS */
/* Inter variable font primary + FE-Schrift specialty font */
/* ======================================================================= */

/* FE-Schrift Font - German license plate font for European plates */
@font-face {
    font-family: 'FE-Schrift';
    src: url('../fonts/FE-Schrift/FE.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Inter Variable Font - Primary font for all text */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
    font-named-instance: 'Regular';
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* Font Loading Optimization */
body {
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "cv05" 1;
    font-optical-sizing: auto;
}

/* Ensure smooth font rendering across browsers */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Font stack definitions */
.font-primary {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Arial', sans-serif;
}

.font-secondary {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Arial', sans-serif;
}

/* Tabular numerals for prices, stats, mileage, and numeric data */
.tabular-nums,
.vehicle-price,
.vehicle-price .price-current,
.vehicle-price .price-old,
.vehicle-price .vat-breakdown,
.vehicle-price .vat-info,
.stat-value,
.stat-number,
.stat-info h3,
.vehicle-stats-row,
.price-row,
.pricing-row,
.order-id,
.order-number,
.balance-amount,
.payment-amount,
.plate-stat-item .stat-value {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "tnum" 1, "cv05" 1;
}

/* Font weight utilities */
.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

/* Default font weight mapping */
body {
    font-weight: 400; /* Regular as default */
}

h1, h2, h3, h4, h5, h6, .font-bold {
    font-weight: 600; /* SemiBold for headings */
}

/* Button and form element font weights */
.btn, .form-label, .nav-link {
    font-weight: 500; /* Medium for interactive elements */
}

/* Secondary text font weight */
.text-secondary, .text-muted, p {
    font-weight: 400; /* Regular for body text */
}
