@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: hsl(0, 0%, 15%);
}
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body {
    min-height: 100vh;
    overflow-x: hidden;
    background-color: white;
    display: flex;
    flex-direction: column;
}
* a {
    text-decoration: none;
}
.scroll-target, .flex-child {
    filter: blur(10px);
    transform: translateY(100px);
    opacity: 0;
    transition: 1s ease !important;
}
.starter {
    filter: blur(10px);
    transform: translateY(60px);
    opacity: 0;
    transition: 1s ease !important;
}
:root {
    --primary: #a6b187;
    --primarytxt: hsl(76, 21%, 51%);
    background-color: hsl(0, 0%, 10%);
    background-color: #1a1a1a;
}
.width {
    width: 1450px;
    max-width: calc(100% - 60px);
}




/*/////////////////////// HEADER ///////////////////////*/
.header {
    z-index: 2;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 0 50px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo {
    height: 55px;
    width: auto;
}
.header-nav {
    display: flex;
    gap: 50px;
}
.header-link {
    color: hsl(0, 0%, 15%);
    font-size: 15px;
    transition: 0.3s ease;
}
.header-link:hover {
    color: hsl(0, 0%, 0%);
}
.button {
    cursor: pointer;
    border-radius: 200px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: white;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: 0.2s ease;
}
.button:hover {
    background-color: hsl(76, 21%, 46%);
}
.button img {
    height: 11px;
    width: auto;
}
/*//////////////////////////////////////////////////////*/

/*/////////////////////// HERO ///////////////////////*/
.hero-img {
    z-index: 0;
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}
.hero-img img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: auto;
}
.hero-shadow {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 0%, 0.55);
}
.hero-container {
    padding-top: calc(90px + 100px);
    height: 100vh;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-title {
    text-align: center;
    font-family: "Playfair Display";
    font-size: 130px;
    color: white;
    line-height: 1;
    font-weight: 600;
}
.hero-circle {
    cursor: pointer;
    margin-top: 35px;
    aspect-ratio: 1 / 1;
    width: 180px;
    height: auto;
    position: relative;
    border-radius: 200px;
    overflow: hidden;
    transition: 0.3s ease;
}
.hero-circle:hover {
    transform: scale(0.9);
}
.hero-circle-img {
    width: 100%;
    height: auto;
    animation: spinCircle 15s linear infinite;
}
@keyframes spinCircle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.hero-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: invert(1);
    height: 28px;
    width: auto;
}
/*////////////////////////////////////////////////////*/

/*/////////////////////// ABOUT US ///////////////////////*/
.about-container {
    margin: 100px auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.about-left {
    width: 100%; 
    display: flex;
    flex-direction: column;
}
.eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 1;
    font-size: 18px;
    font-weight: 500;
    color: var(--primarytxt);
}
.eyebrow span {
    height: 1px;
    width: 80px;
    background-color: var(--primary);
}
.eyebrow-center {
    align-self: center;
}
.about-title {
    font-family: "Playfair Display";
    margin: 12px 0 30px;
    line-height: 1;
    font-size: 74px;
    font-weight: 600;
    color: hsl(0, 0%, 15%);
}
.about-para {
    width: 640px;
    max-width: 100%;
    font-size: 17px;
    line-height: 1.6;
    color: hsl(0, 0%, 25%);
}
.about-btn {
    margin-top: auto;
    align-self: flex-start;
}
.about-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 22px;
}
.about-img {
    box-shadow: 0 0 15px hsla(0, 0%, 0%, 0.2);
    height: 260px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 6px;
}
.aimg1 {
    width: 500px;
}
.aimg1 img {
    width: 100%;
    height: auto;
}
.aimg2 {
    width: 220px;
}
.aimg2 img {
    width: 100%;
    height: auto;
}
.about-right-flex {
    display: flex;
    gap: 25px;
}
.about-prod {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 260px;
    border-radius: 6px;
    background-color: white;
    box-shadow: 0 0 15px hsla(0, 0%, 0%, 0.2);
    padding: 8px;
}
.about-prod-img {
    aspect-ratio: 1 / 1.2;
    height: 100%;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    overflow: hidden;
    border-radius: 6px;
}
.about-prod-img img {
    height: 100%;
    width: auto;
}
.about-prod-content {
    padding: 8px;
    width: 200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.about-prod-txt {
    font-size: 15px;
    line-height: 1.5;
    color: hsl(0, 0%, 30%);
}
.about-prod-name {
    font-size: 17px;
    font-weight: 500;
    color: hsl(0, 0%, 15%);
}
.about-prod-low {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.about-prod-price {
    font-size: 15px;
    color: var(--primary);
}
.about-prod-arrow {
    width: 32px;
    height: 32px;
    border-radius: 200px;
    border: 1px solid hsl(0, 0%, 88%);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
}
.about-prod-arrow img {
    height: 10px;
    width: auto;
    filter: invert(0.8);
}
/*////////////////////////////////////////////////////////*/

/*/////////////////////// MENU ///////////////////////*/
.food-container {
    margin: 0 auto;
}
.food-top {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.food-title {
    font-family: "Playfair Display";
    margin-top: 12px;
    line-height: 1;
    font-size: 74px;
    font-weight: 600;
    color: hsl(0, 0%, 15%);
}
.food-flex {
    margin-top: 60px;
    height: 650px;
    width: 100%;
    display: flex;
    gap: 50px;
}
.food-left {
    flex-shrink: 0;
    height: 100%;
    width: 750px;
    display: flex;
    flex-direction: column;
    padding-right: 32px;
    overflow: auto;
}
.food-left::-webkit-scrollbar {
    width: 10px;
}
.food-left::-webkit-scrollbar-track {
    background-color: hsl(0, 0%, 92%);
    border-radius: 10px;
}
.food-left::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 10px;
}
.food-col {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.food-ul {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.food-head {
    line-height: 1;
    font-size: 36px;
    font-weight: 500;
    color: hsl(0, 0%, 15%);
    margin-bottom: 15px;
}
.food-li {
    cursor: pointer;
    width: 100%;
    display: flex;
    gap: 30px;
    border-radius: 8px;
    padding: 12px 0;
    transition: 0.3s ease;
}
.food-li:hover {
    background-color: var(--primary);
    padding: 12px;
}
.food-li:hover .food-name, .food-li:hover .food-txt, .food-li:hover .food-price {
    color: white;
}
.food-li-col {
    width: 100%;
}
.food-name {
    font-size: 18px;
    font-weight: 500;
    color: hsl(0, 0%, 15%);
    transition: 0.4s ease;
}
.food-txt {
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.55;
    color: hsl(0, 0%, 30%);
    width: 400px;
    max-width: 100%;
    transition: 0.4s ease;
}
.food-price {
    flex-shrink: 0;
    font-size: 18px;
    color: hsl(0, 0%, 30%);
    transition: 0.4s ease;
}
.food-right {
    position: relative;
    width: 100%;
    height: 100%;
}
.food-section {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
}
.visible {
    opacity: 1;
    pointer-events: auto;
}
.food-img {
    height: 100%;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 14px;
}
.food-img img {
    border-radius: 14px;
    height: 100%;
    width: auto;
}
.food-right-head {
    margin: 20px 0 12px;
    line-height: 1;
    font-size: 20px;
    font-weight: 500;
    color: hsl(0, 0%, 15%);
}
.food-right-para {
    width: 100%;
    font-size: 15px;
    color: hsl(0, 0%, 30%);
    line-height: 1.6;
}

.prod-container {
    margin: 210px auto 0;
    display: flex;
    align-items: center;
    gap: 60px;
}
.prod-img {
    flex-shrink: 0;
    width: 650px;
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}
.prod-img img {
    border-radius: 8px;
    height: 100%;
    width: auto;
}
.prod-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.prod-title {
    font-family: "Playfair Display";
    line-height: 1;
    font-size: 74px;
    font-weight: 600;
    color: hsl(0, 0%, 15%);
}
.prod-para {
    margin: 35px 0 30px;
    width: 100%;
    font-size: 17px;
    line-height: 1.6;
    color: hsl(0, 0%, 25%);
}
.prod-btn {
    align-self: flex-start;
}
/*////////////////////////////////////////////////////*/

/*/////////////////////// BOOKINGS ///////////////////////*/
.book-container {
    margin: 100px auto;
    display: flex;
    flex-direction: column;
}
.book-top {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.book-title {
    font-family: "Playfair Display";
    margin-top: 12px;
    line-height: 1;
    font-size: 74px;
    font-weight: 600;
    color: hsl(0, 0%, 15%);
}
.book-flex {
    margin-top: 50px;
    width: 100%;
    display: flex;
    gap: 60px;
}
.cal-wrapper {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    flex-shrink: 0;
    width: 650px;
    padding: 26px 5px 20px;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 0 15px hsla(0, 0%, 0%, 0.15);
}
.cal-nav {
    padding: 0 25px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cal-head {
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
    color: hsl(0, 0%, 15%);
}
.cal-chev {
    display: flex;
    gap: 25px;
}
.cal-chev i {
    cursor: pointer;
    font-size: 14px;
    color: hsl(0, 0%, 25%);
}
.cal-mon {
    margin: 40px 0 28px;
    width: 100%;
    display: flex;
    gap: 12px;
}
.cal-mon div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 20px;
    font-weight: 500;
    color: hsl(0, 0%, 15%);
    width: 100%;
}
.cal-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cal-flex {
    width: 100%;
    display: flex;
    gap: 12px;
}
.cal-box {
    width: 100%;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 500;
    color: hsl(0, 0%, 15%);
    cursor: pointer;
    transition: 0.3s ease;
}
.cal-box-active {
    background-color: var(--primary);
    color: white;
}
.cal-box:hover {
    background-color: hsl(0, 0%, 94%);
}
.cal-box-active:hover {
    background-color: var(--primary);
}
.book-right {
    max-width: 550px;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.book-right-title {
    line-height: 1;
    font-size: 24px;
    font-weight: 500;
    color: hsl(0, 0%, 15%);
    margin-bottom: 30px;
}
.book-right-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: 1px solid hsl(0, 0%, 88%);
    padding-bottom: 22px;
    margin-bottom: 28px;
}
.book-right-head {
    line-height: 1;
    font-size: 20px;
    font-weight: 500;
    color: hsl(0, 0%, 15%);
}
.book-right-txt {
    margin: 12px 0 18px;
    line-height: 1;
    font-size: 17px;
    color: hsl(0, 0%, 30%);
}
.book-right-flex {
    width: 100%;
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.book-right-time {
    cursor: pointer;
    border-radius: 6px;
    padding: 10px 0;
    width: 110px;
    font-size: 18px;
    background-color: hsl(0, 0%, 94%);
    color: hsl(0, 0%, 15%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: 0.2s ease;
}
.book-right-time:hover {
    background-color: hsl(0, 0%, 88%);
}
.book-time-active {
    background-color: var(--primary);
    color: white;
}
.book-time-active:hover {
    background-color: var(--primary);
}

.book-pop {
    z-index: 2;
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px hsla(0, 0%, 0%, 0.2);
    background-color: white;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    padding: 0 50px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s ease;
}
.book-pop-date {
    border-radius: 200px;
    padding: 12px 26px;
    font-size: 16px;
    border: 1px solid hsl(0, 0%, 88%);
    background-color: hsl(0, 0%, 94%);
    color: hsl(0, 0%, 15%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: 0.2s ease;
}
.book-pop-back {
    margin-left: auto;
    margin-right: 25px;
    font-size: 16px;
    color: hsl(0, 0%, 15%);
    cursor: pointer;
}
.book-pop-back:hover {
    color: hsl(0, 0%, 30%);
}
.book-pop-btn {
    cursor: pointer;
    border-radius: 200px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: white;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: 0.2s ease;
}

.book-modal {
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsla(0, 0%, 0%, 0.3);
    transition: 0.3s ease;
}
.book-modal-wrapper {
    max-width: calc(100% - 20px);
    width: 550px;
    border-radius: 15px;
    background-color: white;
    padding: 28px 22px;
    position: relative;
}
i.book-close {
    cursor: pointer;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -40px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 200px;
    background-color: white;
    color: hsl(0, 0%, 15%);
}
.book-modal-head {
    line-height: 1;
    font-size: 32px;
    font-weight: 500;
    color: hsl(0, 0%, 15%);
}
.book-modal-para {
    margin-top: 14px;
    color: hsl(0, 0%, 30%);
    font-size: 16px;
    margin-bottom: 30px;
}
.book-label {
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    color: hsl(0, 0%, 15%);
    margin-bottom: 8px;
}
.book-input {
    width: 100%;
    outline: 0;
    border: 1px solid hsl(0, 0%, 88%);
    border-radius: 5px;
    padding: 12px 18px;
    font-size: 16px;
    color: hsl(0, 0%, 15%);
    margin-bottom: 22px;
}
.book-area {
    width: 100%;
    outline: 0;
    border: 1px solid hsl(0, 0%, 88%);
    border-radius: 5px;
    padding: 12px 18px;
    font-size: 16px;
    color: hsl(0, 0%, 15%);
    margin-bottom: 22px;
    resize: none;
    height: 130px;
}
.book-btn {
    cursor: pointer;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 17px;
    font-weight: 500;
    color: hsl(0, 0%, 100%);
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: 0.2s ease;
}
/*////////////////////////////////////////////////////////*/

/*/////////////////////// CONTACT FORM /////////////////////////*/
.contact-container {
    margin: 0 auto;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.contact-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.contact-title {
    font-family: "Playfair Display", sans-serif;
    color: var(--text);
    line-height: 1;
    font-size: 84px;
    font-weight: 600;
}
.contact-para {
    margin-top: 16px;
    width: 550px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text);
}
.contact-box {
    width: 500px;
    margin-top: auto;
    border: 1px solid hsl(0, 0%, 80%);
    background-color: hsla(0, 0%, 100%, 0.75);
    border-radius: 12px;
    padding: 14px 18px;
}
.contact-head {
    color: hsl(0, 0%, 10%);
    font-weight: 600;
    font-size: 19px;
}
.contact-txt {
    color: hsl(0, 0%, 40%);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    margin-top: 6px;
}
.btn-contact {
    margin-top: 22px;
    border-radius: 8px;
    display: inline-block;
    cursor: pointer;
    background-color: var(--primary);
    color: white;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s ease;
}
.btn-contact i {
    margin-left: 12px;
    color: white;
    font-size: 12px;
}
.contact-form {
    max-width: 100%;
    width: 650px;
}
.form-label {
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 500;
    color: hsl(0, 0%, 40%);
}
.form-input {
    margin-bottom: 18px;
    width: 100%;
    border-radius: 8px;
    background-color: hsla(0, 0%, 100%, 0.5);
    border: 1px solid hsl(0, 0%, 80%);
    outline: 0;
    padding: 10px 15px;
    font-size: 16px;
}
.form-area {
    width: 100%;
    border-radius: 8px;
    background-color: hsla(0, 0%, 100%, 0.5);
    border: 1px solid hsl(0, 0%, 80%);
    outline: 0;
    padding: 10px 15px;
    font-size: 16px;
    resize: none;
    height: 150px;
}
.robot-flex {
    margin: 18px 0 4px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.robot-box {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    border: 1px solid hsl(0, 0%, 80%);
}
.robot-check {
    font-size: 14px;
    color: green;
    opacity: 0;
    transition: 0.1s ease;
}
.robot-txt {
    font-size: 16px;
    color: hsl(0, 0%, 10%);
    font-weight: 500;
}
/*/////////////////////////////////////////////////////////////////*/

/* ===== FOOTER SECTION ===== */
.foot-container {
    width: 100%;
    margin-top: 100px;
    padding: 0 0 34px;
}
.foot-flex {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 90px;
}
.foot-col-left {
    margin-right: auto;
}
.foot-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.foot-img {
    width: 120px;
    height: auto;
    align-self: flex-start;
}
.foot-para {
    width: 420px;
    margin-top: 10px;
    font-size: 15px;
    color: var(--text);
    line-height: 1.65;
}
.btn-foot {
    cursor: pointer;
    border-radius: 200px;
    padding: 12px 24px;
    font-size: 17px;
    font-weight: 500;
    align-self: flex-start;
    color: white;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: 0.2s ease;
}
.foot-label {
    font-size: 20px;
    font-weight: 500;
    color: hsl(0, 0%, 15%);
    margin-bottom: 12px;
}
.foot-link {
    -webkit-text-security: none;
    line-height: 1.4;
    font-size: 16px;
    color: hsl(0, 0%, 30%);
}
.foot-icon {
    position: relative;
    top: 4px;
    color: hsl(0, 0%, 25%);
    font-size: 18px;
}
.foot-copy {
    border-top: 1px solid hsl(0, 0%, 88%);
    margin: 50px auto 0;
    padding-top: 18px;
    color: hsl(0, 0%, 36%);
    font-size: 16px;
}
/* ========================== */

.header-burger {
    display: none;
}
.menu-container {
    display: none;
}
.about-prod-mobile {
    display: none;
}



@media only screen and (max-width: 1400px){
    .about-title {
        font-size: 60px;
    }
    .about-para {
        max-width: 520px;
        font-size: 16px;
    }
}
@media only screen and (max-width: 1300px){
    .hero-img img {
        height: 100%;
        min-width: 100%;
        width: auto;
    }

    .about-container {
        max-width: 700px;
    }
    .about-right {
        display: none;
    }
    .about-prod-mobile {
        margin: 20px 0;
        display: flex;
        align-self: flex-start;
    }

    .food-flex {
        flex-direction: column;
        height: auto;
    }
    .food-left {
        height: 600px;
        max-width: 100%;
    }
    .food-right {
        position: relative;
        width: 750px;
        max-width: 100%;
        height: 600px;
    }
    .food-section {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        pointer-events: none;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        transition: 0.3s ease;
    }
    .visible {
        opacity: 1;
        pointer-events: none;
    }
    .food-img {
        aspect-ratio: 1 / 1;
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 14px;
    }
    .food-img img {
        border-radius: 14px;
        height: 100%;
        width: auto;
    }
    .food-right-head {
        margin: 20px 0 12px;
        line-height: 1;
        font-size: 20px;
        font-weight: 500;
        color: hsl(0, 0%, 15%);
    }
    .food-right-para {
        width: 100%;
        font-size: 15px;
        color: hsl(0, 0%, 30%);
        line-height: 1.6;
    }

    .book-flex {
        width: 650px;
        max-width: 100%;
        flex-direction: column;
    }
    .cal-wrapper {
        max-width: 100%;
    }
    .book-right {
        width: 100%;
        max-width: 100%;
    }

    .prod-container {
        margin-top: 160px;
        flex-direction: column;
        width: 650px;
        gap: 40px;
    }
    .prod-img {
        aspect-ratio: 1 / 1.2;
        width: 100%;
        height: auto;
    }
    .prod-title {
        font-size: 36px;
    }
    .prod-para {
        margin: 25px 0 25px;
    }

    .contact-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .contact-content {
        max-width: 100%;
    }
    .contact-title {
        font-size: 42px;
    }
    .contact-para {
        font-size: 14px;
        max-width: 100%;
    }
    .contact-para2 {
        display: none;
    }
    .contact-box {
        display: none;
    }
}
@media only screen and (max-width: 1100px){
    .menu-container {
        z-index: 999;
        background-color: var(--bg);
        position: fixed;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        padding: 120px 15px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        opacity: 0;
        pointer-events: none;
        transition: 0.3s ease;
    }
    .menu-link {
        color: var(--text);
        font-size: 20px;
    }
    .header-link, .header-hr {
        display: none;
    }
    .header {
        z-index: 9999;
        justify-content: space-between;
        padding: 0 35px;
    }
    .header-logo {
        width: auto;
    }
    .header-burger {
        z-index: 9999;
        position: relative;
        height: 28px;
        width: 35px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .header-line {
        position: relative;
        width: 100%;
        height: 2px;
        background-color: hsl(0, 0%, 30%);
        transition: 0.3s ease;
    }

    .hero-img img {
        min-width: auto;
    }
    .hero-container {
        padding-top: 190px;
    }
    .hero-title {
        font-size: 80px;
    }
    .hero-circle {
        width: 140px;
        height: 140px;
    }
    .hero-arrow {
        height: 24px;
    }

    .foot-container {
        margin-top: 140px;
        padding: 60px 0 34px;
    }
    .foot-flex {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 40px;
    }
    .foot-col {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .foot-para {
        padding-right: 0;
        width: 380px;
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.65;
    }
    .foot-label {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 12px;
    }
    .foot-link {
        line-height: 1.4;
        max-width: 214px;
        font-size: 14px;
    }
    a.foot-link:hover {
        text-decoration: underline;
    }
    .foot-link span {
        font-weight: 500;
    }
    .foot-cont {
        margin-bottom: 2px;
        display: flex;
        gap: 16px;
    }
    .foot-icon {
        position: relative;
        color: hsl(0, 0%, 25%);
        font-size: 18px;
    }
    .foot-hr {
        display: none;
        margin: 42px auto 16px;
        width: 700px;
        height: 1px;
    }
    .foot-copy {
        margin: 42px auto 0;
        padding-top: 16px;
        width: 900px;
        font-size: 14px;
    }
}
@media only screen and (max-width: 700px){
    .width {
        max-width: calc(100% - 20px);
    }

    .header {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }
    .header-logo {
        height: 40px;
    }
    .button {
        font-size: 14px;
    }
    .button img {
        height: 10px;
    }
    .hero-title {
        font-size: 46px;
        line-height: 1.15;
    }

    .eyebrow {
        font-size: 15px;
        gap: 12px;    
    }
    .eyebrow span {
        width: 68px;
        height: 1px;
    }
    .about-container {
        margin: 60px auto;
    }
    .about-title {
        font-size: 40px;
        line-height: 1.15;
        margin-bottom: 16px;
    }
    .about-para {
        font-size: 14px;
        width: 100%;
    }
    .about-prod-mobile {
        max-width: 100%;
        height: 200px;
        gap: 10px;
    }
    .about-prod-txt {
        font-size: 14px;
    }

    .food-title {
        font-size: 46px;
    }
    .food-flex {
        gap: 30px;
        margin-top: 40px;
    }
    .food-left {
        height: 355px;
        padding-right: 20px;
    }
    .food-head {
        font-size: 32px;
    }
    .food-txt {
        font-size: 13px;
        width: 100%;
    }

    .book-container {
        margin: 0px auto 30px;
    }
    .book-title {
        font-size: 44px;
    }
    .book-flex {
        margin-top: 30px;
        gap: 40px;
    }
    .cal-wrapper {
        padding: 26px 12px 15px;
    }
    .cal-nav {
        padding: 0 5px;
    }
    .cal-head {
        font-size: 20px;
    }
    .cal-mon div {
        font-size: 16px;
    }
    .cal-flex {
        gap: 8px;
    }
    .cal-box {
        font-size: 16px;
        padding: 6px 0;
    }
    .book-right-title {
        display: none;
    }
    .book-right-flex {
        gap: 10px;
        margin-bottom: 10px;
    }
    .book-right-time {
        width: 81px;
        font-size: 14px;
    }
    .book-right-txt {
        font-size: 15px;
    }
    .book-pop {
        max-width: 100%;
        width: 100%;
        padding: 0 18px;
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
    }
    .book-pop-date {
        padding: 10px 18px;
        font-size: 12px;
    }
    .book-pop-back {
        margin-right: 18px;
        font-size: 14px;
    }
    .book-modal {
        top: auto;
        bottom: 0;
        align-items: flex-end;
        padding-bottom: 20px;
    }

    .prod-container {
        margin-bottom: -120px;
    }

    .foot-col-left {
        width: 100%;
    }
    .foot-para {
        max-width: 100%;
    }
}