@import url('https://fonts.googleapis.com/css2?family=Love+Light&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Love+Light&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');



@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Love+Light&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Rubik+Mono+One&display=swap');

:root {
    --main_color:  #9a75af;
    --text_color: #494949;
    --fm_text: #ffffff;
  }


.menu-container {
    max-width: 600px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    display: none;
    z-index: 1000;
}
.menu_section .menu-container {
    font-family: 'Georgia', serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
    max-width: 600px;
    margin: 50px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    display: none;
}
.menu_section .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.menu_section .close-btn::before, .close-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 3px;
    background-color:var(--main_color);
}
.menu_section .close-btn::before {
    transform: rotate(45deg);
}
.menu_section .close-btn::after {
    transform: rotate(-45deg);
}
/* .close-btn img {
    width: 40px;
    height: 40px;
} */
.menu_section h1 {
    font-size: 36px;
    color: var(--main_color);
    font-weight: normal;
}
.menu_section h2 {
    font-size: 28px;
    color: var(--main_color);
    margin-top: 30px;
    border-bottom: 2px solid #8da78a;
    padding-bottom: 5px;
    
    
}
.menu_section p {
    font-size: 18px;
    line-height: 1.6;
    margin: 10px 0;
}
.menu_section em {
    font-style: italic;
    color: #555;
}
.menu_section hr {
    border: 0;
    height: 1px;
    background: var(--main_color);
    margin: 20px 0;
}
.menu_section .signature {
    padding-top: 20px;
    font-size: 24px;
    font-weight: bold;
    color: var(--main_color);
    font-size: 2.2em;
    font-family: "Great Vibes", serif;
    font-weight: 400;
}
.menu_section .flower {
    margin-top: 20px;
    width: 180px;
    height: 150px;
    padding-bottom: 10px;
}
.menu_section .open-menu-btn {
    background-color: var(--main_color);
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 20px;
    border-style: none;

    
}

.menu_section .overlay {
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}