/* =========================
   MENU / NAVBAR GLOBALE
   ========================= */

.barra_menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 99999;

    background-color: #141F25;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 8px 22px rgba(0,0,0,0.55);

    overflow: visible !important;
    white-space: nowrap;
}

.barra_menu .container-xxl,
.barra_menu .row{
    height: 100%;
}

.barra_menu .row{
    align-items: center;
}

.barra_menu a{
    text-decoration: none;
    color: #B7B6B7;
}

.menu{
    display: grid;
    align-items: center;
}

/* spazio pagina sotto navbar fixed */
body{
    padding-top: 80px;
}

/* LOGO NAVBAR */
.barra_menu img.logo{
    width: 170px;
    max-width: 100%;
    height: auto;
    display: block;
    padding-top: 0;
}

/* ICONE */
.icona_menu,
.icona_lingua{
    width: 26px;
    height: 26px;
    display: block;
    object-fit: contain;
}

.icona_menu{
    display: none;
}

/* BOX LINGUE */
.lingua-box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-lingua,
.btn-mobile-menu{
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    width: 32px !important;
    height: 32px !important;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.btn-mobile-menu{
    margin-right: 8px;
}

/* DROPDOWN LINGUE ORIZZONTALE */
.dropdown-lingua{
    position: absolute;
    top: 38px;
    right: 0;

    display: flex;
    flex-direction: row;
    gap: 10px;

    background: #141F25;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);

    z-index: 999999;
}

.lingua-link{
    display: inline-block;
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 4px 6px;
    border-radius: 6px;
}

.lingua-link:hover{
    background: rgba(255,255,255,0.12);
}

.nascosto{
    display: none !important;
}

/* MENU MOBILE */
.mobile-menu-panel{
    display: none;
    position: fixed !important;
    top: 80px !important;
    left: 12px !important;
    right: 12px !important;
    z-index: 1000000 !important;

    flex-direction: column;
    gap: 10px;

    padding: 18px 12px;
    border-radius: 14px;

    background: #141F25 !important;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.mobile-menu-panel.mobile-menu-open{
    display: flex !important;
}

.mobile-menu-panel a{
    color: #fff !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    padding: 12px;
    text-align: center;
}

/* MOBILE */
@media (max-width: 767px){
    .barra_menu{
        height: 80px;
    }

    body{
        padding-top: 80px;
    }

    .barra_menu img.logo{
        width: 140px;
    }

    .icona_menu{
        display: block;
    }

    .dropdown-lingua{
        top: 38px;
    }
}

/* MOBILE LANDSCAPE */
@media (max-width: 767px) and (orientation: landscape){
    .barra_menu{
        height: 70px;
    }

    body{
        padding-top: 70px;
    }

    .mobile-menu-panel{
        top: 70px !important;
    }
}