/**
    2025-12: New location for all styling related to the menu. There are still artefacts stored in
    main.css, mais the main menu styling is now here.
 */
.menu.menu-wrapper {
    --menu-padding: min(25px, (25 / 1280) * 100vw) min(50px, (50 / 1280) * 100vw);

    .menu__center li.active {
        text-decoration: underline;
        text-underline-offset: .5rem;
        color: var(--color-gold);
    }

    &.menu--desktop {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: white;
        padding: var(--menu-padding);

        @media (max-width: 1024px) {
            display: none !important;
        }

        .menu__left {}
        .menu__center {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            padding: 0 4rem;

            /* separator before the last Symphonia SOL menu item */
            li.symphonia-pop {
                padding-left: 2rem;
                border-left: 1px solid rgb(var(--color-white));
            }
        }
        .menu__right {
            .lang {
                color: rgb(var(--color-white));
                font-size: 24px;
                line-height: 1em;
                font-weight: 600;
                text-transform: uppercase;
            }
        }
    }

    &.menu--mobile {
        display: none;
        justify-content: space-between;
        color: white;
        padding: var(--menu-padding);

        @media (max-width: 1024px) {
            display: flex !important;
        }

        .menu__left {
            .ico {
                cursor: pointer;
                pointer-events: auto;
            }
        }
        .menu__center {
            li.home {
                margin-bottom: 3rem;
            }
            li.symphonia-pop {
                margin-top: 1.5rem;
            }
        }
        .menu__right {
            .lang {
                color: rgb(var(--color-white));
                font-size: 24px;
                line-height: 1em;
                font-weight: 600;
                text-transform: uppercase;
            }
        }
    }
}