@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wdth,wght@0,6..12,75..125,200..1000;1,6..12,75..125,200..1000&display=swap');

:root{
    --green:#27ae60;
    --black:#192a56;
    --light-color:#666;
    --box-shadow:0 .5rem 1.5rem rgba(0,0,0,.1);
    --border:.1rem solid rgba(0,0,0,.1);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: white;
    /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
    color: black;
    text-decoration: none;
    outline: none;
    border: none;
    font-family: 'Nunito Sans', sans-serif;
    text-transform: capitalize;
    transition: all .2s linear
}

html{
    font-size: 62.5%;
    /* overflow-x: hidden; */
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

section{
    padding: 2rem 9%;
    min-height: 100vh;
}

section:nth-child(even){
    background: #eee;
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    font-size: 1.6rem;
    color: #fff;
    background: var(--black);
    border-radius: .5rem;
    cursor: pointer;
    padding: .8rem 3rem;

    &:hover{
        background: var(--green);
        letter-spacing: .1rem;
    }
}

/****************header style*********/
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 1.5rem 9%;
    z-index: 1000;
    box-shadow: var(--box-shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
   
    
}


/****************logo*********/
.logo{
    margin-right: 10px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 10px 10px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 15px;

    a{
        color: rgb(7, 206, 54);
        font-size: 15px;
        font-weight: bold;
    }

    img{
        height: 50px;
        width: 50px;
    }
}

/****************navbar*********/

.navbar a{
        color: black;
        font-size: 15px;
        font-weight: bold;
        padding: 10px 10px;
        margin-left: 10px;
        margin-right: 10px;
        

        &:hover{
            color: var(--green);
        }
    }



.icon {
     display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    margin-left: 10px;
    margin-right: 10px; 
}
.icon i{
    color: black;
    font-size: 17px;
    font-weight: bold;
    padding: 7px 7px;
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 40%;
    background-color: #eeeeeef8;

    &:hover{
        background-color: var(--green);
        transform: rotate(360deg);
    }
}


.icon a{
        color: black;
        font-size: 17px;
        font-weight: bold;
        padding: 7px 7px;
        margin-left: 10px;
        margin-right: 10px;
        cursor: pointer;
        border-radius: 40%;
        background-color: #eeeeeef8;

        &:hover{
            background-color: var(--green);
            transform: rotate(360deg);
        }
    }


.icon #bars{
    display: none;
}

/****************search form*********/
#search-form{
    position: fixed;
    top: -110%;left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1004;
    background-color: rgba(39, 39, 39, 0.8);
    padding: 0 1rem;
}

#search-form.active{
    top: 0;
}

#search-form #search-box{
    width: 50rem;
    border-bottom: .1rem solid #fff;
    padding: 1rem 0;
    color: #fff;
    font-size: 2rem;
    text-transform: none;
    background:none ;
}

#search-form #search-box::placeholder{
    color: #eee;
}
#search-form #search-box::-webkit-scrollbar-button{
    -webkit-appearance: none;
}

#search-form label{
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    background-color:  rgba(39, 39, 39, 0.8);
}

#search-form label:hover{
    color: var(--green);
}

#search-form #close{
    position: absolute;
    color: #fff;
    background-color:  rgba(39, 39, 39, 0.8);
    cursor: pointer;
    top: 2rem;right: 3rem;
    font-size: 4rem;
}




/***************************media queries***************************/

@media (max-width:968px){
    html{
        font-size: 55%;
    }
    header{
        padding: 1rem 2rem;
    }
    section{
        padding: 1.5rem ;
    }

}

@media (max-width:730px){
    .icon #bars{
        display:inline-block; ;
    }

     .navbar{
        position: absolute;
        top: 100%;left: 0;right: 0;
        background-color:#fff ;
        border-top: .1rem solid rgba(0,0,0,.1);
        padding: 1rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    .navbar.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .navbar a{
        display: block;
        margin: 1.5rem;
        padding: 1.5rem;
        font-size: 1.8rem;
        border: .2rem solid rgba(0,0,0,.1);
        border-left: .5rem solid var(--green); 
        background-color:#eee;
    }

    #search-form #search-box{
        width: 80%;
        margin: 0 1rem;
    }
    
}

@media (max-width:868px){
    html{
        font-size: 50%;
    }
   
}

/**************************home section starts******************/
.image img{
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    cursor: pointer;
    transition: .2s linear;
    object-position: center;

    /* &:hover{
        transform: scale(1.05);
    } */
}

.home .home-slider .slide{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap:2rem;
    padding-top: 9rem;
}

.home .home-slider .slide .content{
    flex:1 1 45rem;
}

.home .home-slider .slide .image{
    flex:1 1 45rem;
}

.home .home-slider .slide .image img{
    width: 100%;
    border-radius: 10%;
}

.home .home-slider .slide .content span{
    color: var(--green);
    font-size: 2.5rem;

}
.home .home-slider .slide .content h3{
    color: var(--black);
    font-size: 5rem;

}
.home .home-slider .slide .content p{
    color: var(--light-color);
    font-size: 2rem;
    padding: 1rem 0;
    /* line-height: 1.5rem; */

}

.swiper-pagination{
    background-color: transparent;
    bottom: 0;
}
.swiper-pagination-bullet-active{
    background: var(--green);

}
.box img{
    width: 200px;
    height: 200px;
    /* object-fit: cover; */
    border-radius: 10px;
}

/* ****************dishes*********** */

.sub-heading{
    text-align: center;
    color: var(--green);
    font-size: 2rem;
    padding-top: 1rem;
}

.heading{
    text-align: center;
    color: var(--black);
    font-size: 3rem;
    padding-bottom: 2rem;
    text-transform: uppercase;
}
.dishes .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap:1.5rem;
}

.dishes .box-container .box{
    padding:2rem;
    background-color: #fff;
    border-radius: .5rem;
    border: .1rem solid rgba(0,0,0,.2);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.dishes .box-container .box .fa-heart,
.dishes .box-container .box .fa-eye{
    position: absolute;
    top:1.5rem;
    background-color: #fff;
    border-radius: 50%;
    height: 4.3rem;
    width: 4.3rem;
    line-height: 5rem;
    font-size: 2rem;
    color:var(--black);
}

.dishes .box-container .box .fa-heart:hover,
.dishes .box-container .box .fa-eye:hover{
    background-color: var(--green);
    color:red;
}

.dishes .box-container .box .fa-heart{
    right:-15rem;
}
.dishes .box-container .box .fa-eye{
    left: -15rem;
}

.dishes .box-container .box:hover .fa-heart{
    right:1.5rem;
}
.dishes .box-container .box:hover .fa-eye{
    left: 1.5rem;
}

.dishes .box-container .box img{
    height: 20rem;
    margin:1rem 0;

    /* &:hover{
        transform: scale(1.04);
    } */
}

.dishes .box-container .box h3{
    color: var(--black);
    font-size: 2rem;
}

.dishes .box-container .box .stars{ 
    padding: 1rem 0;
}

.dishes .box-container .box .stars i{
    font-size: 1.4rem;
    color: var(--green);
    cursor: pointer;
}

.dishes .box-container .box span{
    color: var(--green);
    font-weight: bolder;
    margin-right: 1rem;
    font-size: 2rem;
}

.dishes .box-container .box img{
    height: 22rem;
    width: 100%;
}

.btn1{
    margin-top: 1rem;
    display: inline-block;
    font-size: 1.6rem;
    color: #fff;
    background: var(--black);
    border-radius: .5rem;
    cursor: pointer;
    padding: .8rem 2.4rem;

    &:hover{
        background : var(--green);
        letter-spacing: .1rem;
    }
}

/***************About*********************/

.about .row{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
    align-items: center;
}

.image1 img{
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    /* border-radius: 50%; */
    border: 5px solid #fff;
    box-shadow: 2px 5px 10px rgba(0,0,0,.1);
    cursor: pointer;
    transition: .2s linear;
    object-position: center;

    &:hover{
        transform: scale(1.05);
    }
}

.about .row .image{
    flex:1 1 45rem;
}
.about .row .image img{
    width: 60%;
}
.about .row .content{
    flex:1 1 45rem;
}

.about .row .content h3{
    color: var(--black);
    /* text-align: center; */
    font-size: 4rem;
    padding: .5rem 0;
}
.about .row .content p{
    color: var(--light-color);
     font-size: 1.5rem;
    padding: .5rem 0;
    line-height: 1.5;
}
.about .row .content .icons-container{
    display: flex;
    gap:1rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    margin-top: .5rem;
}
.about .row .content .icons-container .icons{
    background-color: #eee;
    border-radius: .5rem;
    border: .1rem solid rgba(0,0,0,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap:1rem;
    flex:1 1 17rem;
    padding:1rem 0.6rem;
    cursor: pointer;
}

.about .row .content .icons-container .icons i{
    font-size: 2.5rem;
    color:var(--green);
    background-color: #eee;
}
.about .row .content .icons-container .icons span{
    font-size: 1.5rem;
    color:var(--black);
    background-color: #eee;
}

/***************Menu section*********************/

.menu .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}
.menu .box-container .box {
    background-color: #fff;
    border: .1rem solid rgba(0,0,0,.2);
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    padding: 1rem;
}

.menu .box-container .box .image{
    height: 25rem;
    width: 100%;
    padding: 1.5rem;
    overflow: hidden;
    position: relative;
}

.menu .box-container .box .image img{
    height: 100%;
    width: 100%;
    border-radius: .5rem;
    object-fit: cover;
}

.menu .box-container .box .image .fa-heart{
    position: absolute;
    top: 2.5rem; right: 2.5rem;
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    text-align: center;
    font-size: 1.8rem;
    background-color: #fff;
    border-radius: 50%;
    color: var(--black);
}

.menu .box-container .box .image .fa-heart:hover{
    background-color: var(--green);
    color: #ea0707;
}

.menu .box-container .box .content{
    padding: 1rem;
    padding-top: 0;
}

.menu .box-container .box .content .stars{
    padding-bottom: 1rem;
}
.menu .box-container .box .content .stars i{
    font-size: 1.7rem;
    color: var(--green);
}

.menu .box-container .box .content h3{
    color: var(--black);
    font-size: 2.5rem;
}

.menu .box-container .box .content p{
    color: var(--light-color);
    font-size: 1.6rem;
    padding: .5rem 0;
    line-height: 1.5;
}

.menu .box-container .box .content span{
    color: var(--green);
    font-size: 2rem;
    font-weight: bolder;
    margin-right: 1rem;
}

/***************review section*********************/


.review .slide{
    padding: 2rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    border: .1rem solid rgba(0,0,0,.2);
    border-radius: .5rem;
    position: relative;
   
}

.review .slide .fa-quote-right{
    position: absolute;
    top: 2rem; right: 2rem;
    font-size: 6rem;
    color: #ccc;
}

.review .slide .user{
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding-bottom: 1.5rem;
}

.review .slide .user img{
    height: 8rem;
    width: 8rem;
    border-radius: 50%;
    object-fit: cover;
}

.review .slide .user h3{
    color: var(--black);
    font-size: 2rem;
    padding-bottom: .5rem;
}

.review .slide .user i{
    font-size: 1.3rem;
    color: var(--green);
}

.review .slide p{
    font-size: 1.5rem;
    line-height: 1.3;
    color: var(--light-color);
}

/***************order section*********************/

.order form{
    max-width: 90rem;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    border: .1rem solid rgba(0,0,0,.2);
    background-color:#fff ;
    padding: 1.5rem;
    margin: 0 auto;
   
}

.order form .inputBox{
    /* display: flex; */
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;


}

/* .order form .inputBox .input{
    width: 49%;
} */

.order form .inputBox .input span{
    display: block;
    padding: .5rem 0;
    font-size: 1.7rem;
    color: var(--light-color);
}

.order form .inputBox .input input,
.order form .inputBox .input textarea{
    background-color: #eee;
    border-radius: .5rem;
    padding: 1rem;
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
    margin-bottom: 1rem;
    width: 100%;
}

.order form .inputBox .input textarea{
    height: 20rem;
    resize: none;
}

.order form .inputBox .input input:focus,
.order form .inputBox .input textarea:focus{
    border: .1rem solid var(--green);
}

.order form .inputBox .input input:focus::placeholder,
.order form .inputBox .input textarea:focus::placeholder{
    color: var(--green);
}

.order form .btn{
    margin-top: 0;
   
}

@media (max-width:440px){

    html{
        font-size: 55%;
    }

    /* .home .home-slider .slide .content h3{
        font-size: 4rem;
    } */
   
    .dishes .box-container .box img{
        height: auto;
        width: 100%;
    }
    .order form .inputBox .input{
        width: 100%;
    }
   

}
 
/***************footer section*********************/

.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem
}

.footer .box-container .box{
    padding: 2rem 0;
    font-size: 2rem;
    color: var(--black);
}

.footer .box-container .box h3{
    font-size: 2.5rem;
    color: var(--green);
    padding: 1rem 0;
}

.footer .box-container .box a{
    display: block;
    font-size: 1.8rem;
    color: var(--black);
    padding: .4rem 0;
}

.footer .box-container .box a:hover{
    color: var(--green);
    text-decoration: underline;
}

.footer .credit{
    text-align: center;
    border-top: .1rem solid rgba(0,0,0,.1);
    font-size: 2rem;
    color: var(--black);
    padding: .5rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.footer .credit span{
    color: var(--green);
    font-weight: 700;
}
