.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #101B2B;
    z-index: 1000;
    overflow: hidden;
    transition: height 0.4s ease;
}
.menu-overlay[aria-hidden="false"] {
    height: 100vh;
}
.menu-close-btn {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
    display: none;
}
.menu-overlay[aria-hidden="false"] .menu-close-btn {
    display: block;
}
.menu-close-btn:hover {
    transform: scale(1.1);
}
.menu-close-btn img {
    width: 40px;
    height: 40px;
}
.menu-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
}
.menu-overlay[aria-hidden="false"] .menu-content {
    opacity: 1;
    transform: translateY(0);
}
.menu-header {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 70px;
}
.menu-header a {
    display: inline-block;
    transition: transform 0.3s ease;
}
.menu-header a:hover {
    transform: scale(1.05);
}
.menu-logo {
    max-width: 175px;
    height: auto;
    cursor: pointer;
}
.menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.menu-nav li {
    margin: 1.5rem 0;
}
.menu-nav a {
    color: #E9D0A7;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}
.menu-nav a:hover {
    color: #fff;
}
.menu-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.decoration {
    position: absolute;
    opacity: 0.6;
}
.decoration.top-left {
    top: 1rem;
    left: 1rem;
    max-width: 100px;
}
.decoration.top-right {
    top: 1rem;
    right: 1rem;
    max-width: 100px;
}
.decoration.bottom-right {
    bottom: 1rem;
    right: 1rem;
    max-width: 150px;
}
.menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.menu-toggle img {
    width: 30px;
    height: 30px;
    display: block;
}
