#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 999;
    background: rgba(2, 0, 0, 0.4);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

#overlay.visible {
    opacity: 1;
    visibility: visible;
}

#slidingMenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 30%;
    min-width: 300px;
    height: 100%;
    transition: right 0.5s ease;
    z-index: 1000;
    padding: 20px;
    background: rgba(2, 0, 0, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

#slidingMenu.open {
    right: 0;
}

#slidingMenu.closing {
    right: -100%;
}

#closeMenuButton {
    position: absolute;
    background: transparent;
    color: white;
    border: none;
    cursor: pointer;
    right: 10%;
    opacity: 0;
    transition: top 0.5s ease, opacity 0.5s ease;
}

#closeMenuButton.animate-in {
    top: 50px;
    opacity: 1;
}

#closeMenuButton.animate-out {
    top: -50px;
    opacity: 0;
}

.NavigationBespokeText, .NavigationOurStoryText {
    opacity: 0;
    transform: translateY(200px);
    transition: transform 0.5s ease, opacity 0.5s ease, color 0.9s ease;
}

.NavigationBespokeText.animate-in, .NavigationOurStoryText.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.NavigationBespokeText.animate-out, .NavigationOurStoryText.animate-out {
    transform: translateY(200px);
    opacity: 0;
}

.NavigationBespokeText {
    margin-top: 150px;
    font-family: Josefin Sans;
    font-size: 30px;
    font-weight: 400;
    line-height: 32px;
    color: #F5F5F5;
    position: relative;
    border: none;
    background: none;
    margin-left: 30px;
    cursor: pointer;
}

.NavigationOurStoryText {
    margin-top: 70px;
    font-family: Josefin Sans;
    font-size: 30px;
    font-weight: 400;
    line-height: 32px;
    color: #F5F5F5;
    position: relative;
    border: none;
    background: none;
    margin-left: 30px;
    cursor: pointer;
}

.NavigationOurStoryText:hover, .NavigationBespokeText:hover{
    color: #C08882;
}
