/* ─────────────────────────────────────────────── */
/* ✅ FONT: Concielian Bold Italic (aka BMWBadge)  */
/* ─────────────────────────────────────────────── */
@font-face {
    font-family: 'BMWBadge';
    src: url('../fonts/ConcielianBoldItalic.woff2') format('woff2'),
         url('../fonts/ConcielianBoldItalic.woff') format('woff'),
         url('../fonts/ConcielianBoldItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* ─────────────────────────────────────────────── */
/* ✅ UNIVERSAL BMW BADGE STYLE                    */
/* Use this class anywhere you want the font       */
/* ─────────────────────────────────────────────── */
.bmw-badge {
    font-family: 'BMWBadge', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: normal;
    letter-spacing: 1px;
    color: #0056a6;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─────────────────────────────────────────────── */
/* ✅ GRID CONTAINER FOR SUBMODEL TILES            */
/* ─────────────────────────────────────────────── */
.model-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

/* ─────────────────────────────────────────────── */
/* ✅ TILE: Single Submodel Button/Badge           */
/* ─────────────────────────────────────────────── */
.model-tile {
    width: 160px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'BMWBadge', sans-serif;
    font-size: 28px;
    color: #0056a6;
    background-color: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.model-tile:hover {
    border-color: orange;
    box-shadow: 0 0 10px orange;
    transform: translateY(-2px);
    cursor: pointer;
}

/* ─────────────────────────────────────────────── */
/* ✅ RESPONSIVE ADJUSTMENTS FOR MOBILE            */
/* ─────────────────────────────────────────────── */
@media screen and (max-width: 480px) {
    .model-tile {
        width: 130px;
        height: 80px;
        font-size: 22px;
    }
}
