/* ====== MENU BUTTON ====== */

.menu-button-container{
    position: fixed;
    z-index: 2100;
    right: 40px;
    top: 40px;
    width: 80px;
    height: 80px;
    transform: scale(0);
}

.menu-button{
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    text-align: center;
    align-content: center;
    color: #000;
    border-radius: 50%;    
}

.menu-button.fill-button::before{
    background-color: var(--primary-color-dark);
}

.menu-button div{
    width: 100%;
    height: 100%;
    align-content: center;
}

/* ====== OVERLAY MENU ====== */
.overlay-menu{
    position:fixed;
    display: flex;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2000;
    background: linear-gradient(to bottom, #000, #ffffff00);
    color:#fff;
    font-family: "Urbanist";
    font-size: 50px;
    align-items: center;
    padding-bottom: 50px;
    justify-content: center;
    gap:50px;
    opacity: 0;
    pointer-events: none;   
    transition: opacity 0.5s ease;
    overflow: scroll;
}

@media (orientation: portrait) or (max-width:1000px){
    .overlay-menu{
        flex-direction: column;
    }
}


@media (orientation: landscape) and (min-width:1000px){
    .overlay-menu{
        flex-direction: row;
    }
}

.overlay-menu.active {
  opacity: 1;
  pointer-events: all;   
}

.overlay-menu a{
    font-weight: 600;
}