@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');

*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    background-color: #ffbef6;
}

section{
    padding: 1.75rem 8%; 
}

header{
    width: 100%;
    padding: 0px 5%;
    position: sticky;
    background-color: #ffbef6;
    top: 0;
    z-index: 3;
}

#navbar{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: #1d1d1d 2px solid;
}

#nav-logo{
    width: 100px;
}

#nav-list{
    display: flex;
    list-style: none;
    gap: 3rem; 
}

.nav-item a{
    text-decoration: none;
    color: #1d1d1dad;
    font-size: 1.125rem;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-item a:hover{
    color: #000000;
    border-bottom: 3px #1d1d1dad solid;
    transform: scale(1.1); 
}

.btn-default{
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(82, 71, 71);
    border-radius: 0.75rem; 
    padding: 0.625rem 0.875rem; 
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
}

.btn-default:hover{
    background-color: rgb(112, 102, 102);
}

#mobile-btn{
    display: none;
}

#mobile-menu{
    display: none;
}

#home {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    min-height: calc(100vh - 91px);
    position: relative;
    gap: 2rem; 
}

#cta{
    width: 50%; 
    display: flex;
    flex-direction: column;
    gap: 1rem; 
}

#cta .title{
    font-size: clamp(2.5rem, 5vw, 4rem); 
    color: #1d1d1d;
}

#cta .title span{
    color: #a50000ad;
}

#cta .description{
    font-size: 1.1rem;
}

#cta-buttons{
    display: flex;
    gap: 1.5rem; 
}

#cta-buttons a {
    text-decoration: none;
    color: #ffffff;
}

#phone-button{
    display: flex;
    gap: 0.5rem; 
    color: #1d1d1d;
    align-items: center;
    background-color: #fff;
    padding: 0.5rem 0.875rem; 
    font-weight: 500;
    box-shadow: 0px 0px 12px 4px rgba(0,0,0,0.1);
    border-radius: 0.75rem; 
}

#phone-button button{
    box-shadow: none;
}

.social-media-buttons{
    display: flex;
    gap: 1.125rem; 
}

.social-media-buttons a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    background-color: #fff;
    font-size: 1.25rem; 
    border-radius: 0.625rem; 
    text-decoration: none;
    color: #1d1d1d;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow .3s ease;
}

.social-media-buttons a:hover{
    box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1);
}

#banner{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35%; 
    z-index: 2;
}

#banner img{
    max-width: 130%; 
    height: auto;   
    max-height: 500px; 
}

.shape{
    background-color: #1d1d1dad;
    width: 40%;
    height: 90%;
    position: absolute;
    border-radius: 40% 30% 0% 20%;
    top: 20px;
    right: 20px;
    z-index: 1;
}

@media screen and (max-width: 1170px){
    #nav-list,
    #navbar .btn-default{
        display: none;
    }

    #mobile-btn{
        display: block;
        border: none;
        background-color: transparent;
        font-size: 1.5rem;
        cursor: pointer;
    }

    #mobile-menu.active{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #mobile-nav-list{
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin: 0.75rem 0px;
    }

    #mobile-nav-list .nav-item{
        list-style: none;
        text-align: center;
    }
}


@media screen and (max-width: 992px) {
    #home{
        flex-direction: column; 
        min-height: auto;
        padding-top: 2rem;
    }

    #cta, #banner {
        width: 100%; 
        text-align: center;
        align-items: center;
    }

    .shape {
        display: none; 
    }
}


@media screen and (max-width: 1170px) {
    #banner {
        display: none; 
    }
}


@media screen and (max-width:450px){
    #cta-buttons {
        flex-direction: column; 
    }

    #phone-button button {
        display: none;
    }

    #phone-button {
        justify-content: center;
    }
}

#menu{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.section-title{
    color: #bf0808ad;
    font-size: 1.563rem;
}

.section-subtitle{
    font-size: 2.1875rem;
}

#dishes {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

#dishes img {
    width: 200px;
}

.dish{
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    gap: 18px;
    width: 25%;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
}

.dish-description{
    color: #1d1d1dad;
    text-align: center;
}

.dish-rate i{
    color: #bf0808ad;
}

.dish-price{
    display: flex;
    align-items: center;
    gap: 20px;
}

@media screen and (max-width: 1170px) {
    #dishes{
        flex-wrap: wrap;
        justify-content: center;
    }
    .dish{
        width: calc(50% - 12px);
    }
}

@media screen and (max-width: 600px){
    .dish{
        width: 100%
    }

    #menu .section-subtitle {
        text-align: center;
    }
}

#testimonials {
    min-height: calc(100vh - 91px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

#testimonial-cheff{
    width: 500px;
    height: auto;
}

#testimonias.section-subtitle{
    font-size: 3rem;
}

#testimonials-content{
    width: 50%;
}

#feedbacks{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feedback{
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0px 0px 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 p span{
    color: #bf0808ad;
}

@media screen and (max-width: 1170px){
    #testimonials{
        flex-direction: column;
    }

    #testimonials .section-subtitle{
        text-align: center;
        font-size: 2.5rem;
    }

    #testimonial-cheff{
        display: none;
    }

    #testimonials-content{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 600px){
     #testimonials .section-subtitle{
        font-size: 2.2rem;
     }
    .feedback{
        flex-direction: column;


    }
}

footer{
    background-color: #1d1d1dad;
}

#footer-items{
    display: flex;
    justify-content: space-between;
    padding: 0px 5% 24px 5%;
    align-items: center;
}

#copyright{
    color: #ffbef6;
    font-weight: 500;
}

@media screen and (max-width: 600px){
    #footer-items{
        flex-direction: column;
        gap: 20px;

    }
}