#landing_page{
    background-size: cover;
    background-attachment: fixed;
    background-position: right;
    height: 100vh;
    display: flex;
}

#landing-page-spacer{
    height: 25vh;
}

#burger-image{
    position: fixed;
    top: 10px;
    right: 10px;
    width: 10vh;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    z-index: 101;
}

#burger-image:hover{
    transform: rotate(360deg);
}


#menu-container {
    z-index: 100;
    background-color: var(--main-color-darkest-opaque);
    color: var(--main-color);
    width: 100vw !important;
    height: calc(10vh + 20px);
    opacity: 0;
    transition: 0.3s ease-in-out;
    top: -20%;
    position: fixed;   
    pointer-events: none; /* Disable clicks when hidden */
}

#menu-container.show-menu {
    opacity: 1;
    top: 0px;
    pointer-events: auto; /* Re-enable clicks when visible */
}


#menu-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    margin: 0 10%;
}

#menu-container a{
    font-family: "Bebas Neue", sans-serif;
    color: white;
    text-decoration: none;
    font-size: 2em;
    margin: 0 10px;
}

@media screen and (max-width: 768px){
    #burger-image{
        right: 40px !important;
        top: 20px !important;
    }
    #menu-container{
        background-color: var(--main-color-darkest);
        height: 100vh;
        top: -120%;
        width: 100%;
    }
    #menu-inner{
        flex-direction: column;
        padding-bottom: 30px;
        height: 80%;
        justify-content: space-around;
    }
}