:root {
    --primary-color: #15212C;
    --font-family: 'Orbitron', sans-serif;
}

.nav-sticky-wrapper .art-nav {
    opacity: 1;
}

.hero-1 {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 500px;

    .container {
        z-index: 1;
    }

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.25);
        z-index: 1;
    }

    h1 {
        margin: 0;
    }

    .text-white {
        z-index: 2;
        background: #FFF;
        padding: 1rem;
        margin-bottom: 1rem;
        width: fit-content;

        h1 {
            font-size: 38px;
        }
    }

    .text-blue {
        z-index: 2;
        background: var(--primary-color);
        padding: 1rem;
        width: fit-content;

        h1 {
            font-size: 38px;
            color: #FFF;

            span {
                font-size: 42px;
                font-weight: bold;
            }
        }
    }
}

.menu-wrap {
    display: flex;
    align-items: flex-start; /* o center se vuoi centrare verticalmente il testo con il menu */
    gap: 16px;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid #FFF;
    height: 500px;
}

.vertical-text {
    writing-mode: sideways-lr;
    text-orientation: mixed;
    /*white-space: nowrap;*/
    font-weight: 600;
    line-height: 1.1;
    color: #FFF;
    font-size: 46px;
    /* opzionale: limita l’altezza per evitare overflow */
    /* max-height: 100%; */
}

.menu-box {
    height: 100%;
    min-width: 32px;
    flex: 1;
    ul {
        height: 100%;
        display: flex    ;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    .nav-item {
        min-height: 120px;
        a {
        color: #FFF;
        font-family: var(--font-family), sans-serif;
        text-transform: uppercase;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        padding: 8px 16px;
        display: block;
        }

        border-top: 1px solid rgba(255,255,255,0.55);
        &:first-child {
            border-top: 0;
        }

        &:last-child {
            border-bottom: 1px solid rgba(255,255,255,0.55);
        }
    }
}

.h-600 {
    min-height: 600px;
}

.h-700 {
    min-height: 700px;
}

/* Normalizza margini del menu (ul.mod-menu o div.mod-menu) */
.mod-menu {
    margin: 0;
    padding: 0;
}

.art-social-company-list a{
    color: #FFF;
}

.footer.mod-list.art-hmenu li a {
    font-size: 16px;
    text-transform: none;
    text-align: left;
    height: 16px;
    line-height: 1;
}

.footer-text {
    font-family: var(--font-family), sans-serif;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    background-color: #FFF;
}

/* Extra extra large devices (<1400px) */
@media (max-width: 1399.98px) {

}

/* Extra large devices (max-width 1199.98px) */
@media (max-width: 1199.98px) {

}


/* Large devices (max-width 991.98px): Desktops */
@media (max-width: 991.98px) {

}

/* Medium devices (max-width 767.98px): Tablets */
@media (max-width: 767.98px) {
    .art-hmenu.footer {
        margin-bottom: 1rem;
    }
    .footer.mod-list.art-hmenu li a {
        padding: 0;
    }
    .menu-wrap {
        height: auto;

        .vertical-text {
            h3 {
                font-size: 36px !important;
            }
        }
    }
    .mobile-menu {
        background: var(--primary-color) !important;
    }
    .mobile-menu .art-hmenu .metismenu-item a {
        font-size: 16px;
    }
    .menu-wrap {
        flex-direction: column;
        gap: 8px;
    }

    .vertical-text {
        writing-mode: horizontal-tb;
        text-orientation: initial;
    }
}


/* Small devices (max-width 575.98px): Mobile portrait */
@media (max-width: 575.98px) {


}
