@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --white-color: #fff;
    --black-color: #1d1d1d;
    --black-light-color: #1d1d1dad;
    --gray-color: #434343;
    --primary-color-1: #fff9ea;
    --primary-color-2: #ffe8b4;
    --primary-color-3: #ffe100;
    --primary-color-4: #ffcb45;
    --primary-color-5: #e9a209;
    --primary-color-6: #f8d477;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: var(--primary-color-1);
}

header {
    width: 100%;
    padding: 28px 8%;
    position: relative;
    position: sticky;
    top: 0;
    z-index: 3;
    background-color: var(--primary-color-1);
}

header.shadow_header {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

section {
    padding: 28px 8%;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color-4);
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all .3s ease;
}

.btn-default:hover {
    background-color: var(--primary-color-6);
}

#navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#nav_logo {
    font-size: 24px;
    color: var(--primary-color-5);
    text-decoration: none;
    cursor: pointer;
}

#nav_list {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-item a {
    text-decoration: none;
    color: var(--black-light-color);
    font-weight: 600;
    transition: all .3s ease;
}

.nav-item.active {
    color: var(--black-color);
    border-bottom: 3px solid var(--primary-color-3);
}

.nav-item a:hover {
    color: var(--primary-color-5);
}

#mobile_btn_open {
    display: none;
}

#mobile_menu {
    display: none;
}

#home {
    display: flex;
    min-height: calc(100vh - 91px);
    position: relative;
}

#cta {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 5%;
}

#cta .title {
    font-size: 4rem;
    color: var(--black-color);
}

#cta .title span {
    color: var(--primary-color-5);
}

#cta .description {
    font-size: 1.2rem;
}

#cta_buttons {
    display: flex;
    gap: 24px;
}

#cta_buttons a {
    text-decoration: none;
    color: var(--black-color);
}

#phone_button {
    display: flex;
    gap: 8px;
    align-items: center;
    background-color: var(--white-color);
    padding: 8px 14px;
    font-weight: 500;
    border-radius: 12px;
    box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.1);
}

#phone_button button {
    box-shadow: none;
}

.social-media-buttons {
    display: flex;
    gap: 18px;
}

.social-media-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    background-color: var(--white-color);
    font-size: 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--black-color);
    box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.1);
    transition: all .3s ease;
}

.social-media-buttons a:hover {
    box-shadow: 0 0 14px 8px rgba(0, 0, 0, 0.1);
    color: var(--primary-color-5);
}

#banner {
    display: flex;
    align-items: start;
    justify-content: end;
    width: 70%;
    z-index: 2;
}

#banner img {
    height: 100%;
    width: fit-content;
}

.shape {
    background-color: var(--primary-color-2);
    width: 50%;
    height: 100%;
    position: absolute;
    border-radius: 40% 30% 0 20%;
    top: 0;
    right: 0;
    z-index: 1;
}

#menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.section-title {
    color: var(--primary-color-5);
    font-size: 1.5rem;
}

.section-subtitle {
    font-size: 2rem;
}

#dishes {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.dish {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    gap: 18px;
    width: 25%;
    padding: 20px;
    background-color: var(--white-color);
    box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.dish-heart {
    position: absolute;
    background-color: var(--primary-color-5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color-1);
    width: 70px;
    height: 70px;
    top: -10px;
    right: -10px;
    border-radius: 0 37.5px 0 42.5px;
}

.dish-description {
    color: var(--gray-color);
    text-align: center;
}

.dish-rate {
    color: var(--primary-color-5);
}

.dish-price {
    display: flex;
    align-items: center;
    gap: 20px;
}

#testimonials {
    min-height: calc(100vh - 91px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

#testimonial_chef {
    width: 500px;
    height: auto;
}

#testimonials .section-subtitle {
    font-size: 3rem;
}

#testimonials_content {
    width: 50%;
}

#feedbacks {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0 40px 0;
}

.feedback {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--white-color);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.1);
}

.feedback-avatar {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    object-fit: cover;
}

.feedback-content p {
    display: flex;
    justify-content: space-between;
}

.feedback-content span {
    color: var(--primary-color-5);
}

footer {
    background-color: var(--primary-color-2);
}

#footer_items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
}

#copyright {
    color: var(--black-color);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
}

@media screen and (max-width: 1024px) {

    #nav_list,
    #navbar .btn-default {
        display: none;
    }

    #mobile_btn_open {
        display: block;
        border: none;
        background-color: transparent;
        font-size: 1.5rem;
        cursor: pointer;
    }

    #mobile_menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 8%;
        left: 8%;
        background-color: var(--white-color);
        padding: 24px 18px 18px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        z-index: 10;
    }

    #mobile_menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #mobile_nav_list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 12px 0;
        width: 100%;
    }

    #mobile_nav_list .nav-item {
        list-style: none;
        text-align: center;
        width: 100%;
    }

    #mobile_btn_close {
        position: absolute;
        top: 18px;
        right: 18px;
        border: none;
        background: transparent;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--black-light-color);
    }

    #home {
        min-height: 100%;
        padding-top: 0;
    }

    #banner,
    #banner img,
    .shape {
        display: none;
    }

    #cta {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    #dishes {
        flex-wrap: wrap;
        justify-content: center;
    }

    .dish {
        width: calc(50% - 12px);
    }

    #testimonials {
        flex-direction: column;
    }

    #testimonials .section-subtitle {
        text-align: center;
        font-size: 2.5rem;
    }

    #testimonial_chef {
        display: none;
    }

    #testimonials_content {
        width: 70%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media screen and (max-width: 426px) {
    .dish {
        width: 100%;
    }

    #menu .section-subtitle {
        text-align: center;
    }

    #testimonials_content {
        width: 100%;
    }

    #testimonials .section-subtitle {
        font-size: 2rem;
    }

    .feedback {
        flex-direction: column;
    }

    #footer_items {
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (max-width: 376px) {
    #phone_button button {
        display: none;
    }
}