/* ---- THEME GLOBAL TMS MALTA (LIGHT MODE PRO) ---- */
@font-face {
    font-family: 'Asap';
    src: url('../fonts/asap-variable.ttf') format('truetype-variations'),
         url('../fonts/asap-variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
body {
    font-family: 'Asap', sans-serif !important;
    background-color: #fbfaf6; /* Fond crème/beige d'origine */
    color: #4a4a4a;
}

/* Éléments de navigation */
.nav-item {
    color: #2d2b54; /* Bleu nuit/violet des captures */
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.nav-item:hover {
    color: #8cbd24; /* Vert pomme d'origine */
}

/* ---- INTERFACE DU MENU BURGER MOBILE ---- */
.desktop-nav {
    display: flex;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    z-index: 60;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #2d2b54;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Changement d'état en croix */
.burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.burger-menu.active span:nth-child(2) {
    opacity: 0;
}
.burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1240px) {
    .desktop-nav {
        display: none;
    }
    .burger-menu {
        display: flex;
    }
}