@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Display:ital,wght@0,400;1,100&family=Nunito+Sans:ital,wght@0,200;0,400;1,200;1,400&family=Poppins:wght@300&display=swap');
:root{
    --green:#27ae60;
    --blue:#192a56;
    --light_color:#666;
    --box-shadow: 0 .2rem .2rem rgba(0,0,0,.1);
}
*{
    font-family: 'Noto Sans Display', sans-serif;
    margin:0 ;padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    outline: none !important;
    border: none !important;
    transition: all .2s linear;
}

html {
font-size: 62.5%;
overflow-x: hidden ;
scroll-padding-top: 5.5rem ;
scroll-behavior: smooth;
}
/* header css start here */
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: #fff;
    padding: 1rem 2%;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    z-index: 1004;
    box-shadow: var(--box-shadow);

}
header .logo {
    color: var(--blue);
    font-size:  2.5rem ;
    font-weight: bolder !important;
}
header .logo i{
    color: var(--green);
}

header .navbar a{
 
    font-size: 1.7rem;
    border-radius: .5rem;
    padding: .5em 2rem ;
    color: var(--light_color);
}
header .navbar a.active,
header .navbar a:hover{
    color: #fff;
    background: var(--green);

}
header .icons  i,
header .icons  a{
    cursor: pointer;
    margin-left: .5rem;
    height: 4.5rem;
    line-height: 4.5rem;
    width: 4.5rem;
    font-size: 1.7rem;
    text-align: center;
    color:var(--blue);
    border-radius:50%;
    background: #eee;
  
}
header .icons  i:hover,
header .icons  a:hover{
    color: #fff;
    background: var(--green);
    transform: rotate(360deg);
}
header .icons #menu-bars{
    display: none;
}




/* form search style start */
#search-form{
    display: none;
    position: fixed;
    top: 0%;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1004;
    background: rgba(0,0,0,.6);
    align-items: center;
    justify-content: center;
    padding:0 1rem;
}

#search-form #search-box{

    width: 50rem;
    border-bottom:.1rem solid #eee !important;
    padding: 1rem 0;
    color: #fff;
    font-size: 3rem;
    text-transform: none ;
    background:none;
}
#search-form #search-box:focus{
    border-bottom: 2rem solid #fff;
}
#search-form #search-box::placeholder{
    color: #eee;
}
#search-form #search-box::-webkit-search-cancel-button{
    -webkit-appearance: none;
}
#search-form label{
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
}
#search-form label:hover{
    color: var(--green);
}
#search-form #close{
    position:absolute;
    color: #fff;
    cursor: pointer;
    top:2rem;
    right: 3rem;
    font-size: 3rem;

}
#search-form #close:hover{
    color:red;
}
/* form style end here */

/* home section style start here */

section{
    padding:5rem 9% ;
   
}

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

    
}
.home .home-slider .slide.content {
    flex:1;
}
.home .home-slider .slide .image {
    flex:1;
}
.home .home-slider .slide .image img {
   width:80%;
   
}
.home .home-slider .slide .content span {
    text-transform: capitalize;
    color: var(--green);
    font-size: 2.5rem;
 

}

 .home .home-slider .slide .content h3 {
    text-transform: capitalize;
    color: var(--blue);
    font-size: 7rem;


}

.home .home-slider .slide .content p {
    color: var(--light_color);
    font-size: 2.3rem;
    padding: 4rem 0 ;
    width: 30rem;
    line-height:2rem;
    

} 
.btn{
  
    display: inline-block;
    font-size: 1.5rem;
    color: #fff;
    background: var(--blue);
    border-radius: .5rem;
    cursor: pointer;
    padding: .8rem 3rem;

}
.btn:hover{
    background: var(--green);
    letter-spacing:.1rem ;
}
/* dishes section style here */
.dishes{
    background: #eee;
}
.heading{
    text-align: center;
    color: var(--green);
    font-size: 2rem;
    padding-top: 1rem;
}
.sub-heading{
    text-align: center;
    color: var(--blue);
    font-size: 3rem;
    padding-bottom: 2rem;
    text-transform: uppercase;
}
.box-con{
    display: flex;
    column-gap: 1rem;
    flex-wrap: wrap;
    row-gap: 4rem;
    justify-content: center;
   
   
 
}
.box-con .dish-box{
padding: 1.5rem;
background-color: #fff;
border-radius: .5rem;
border: .1rem solid rgba(0,0,0,.2)!important;
box-shadow: var(--box-shadow);
overflow: hidden;
position: relative;
text-align: center;
}
.box-con .dish-box:hover{
    padding: 2.5rem;
    border-radius: 1rem;
    border: .1rem solid rgba(0,0,0,.5)!important;
}
.box-con .dish-box img:hover{
    padding: 2.5rem;
    border-radius: 1rem;
 
}
.dishes .box-con .dish-box .fa-heart {
    position: absolute;
    top: 1rem;
    background: #eee;
    border-radius: 50%;
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    font-size: 2rem;
    color: var(--blue);
}
.dishes .box-con .dish-box .fa-heart:hover{
    background: var(--green);
    color: #fff;
}
.dishes .box-con .dish-box img{
    height: 50%;
   margin-top: 3rem;
}
.dishes .box-con .dish-box h3{
    margin-top: 3rem;
    color: var(--blue);
    font-size: 2.5rem;
}
.dishes .box-con .dish-box .rating-stars{
    padding:1rem 0 ;
}
.dishes .box-con .dish-box .rating-stars i{
    font-size: 1.7rem;
    color: var(--green);
}
.dishes .box-con .dish-box span{
    color: var(--green);
    font-weight: bolder;
    margin-right: 1rem;
    font-size: 2.5rem;
}
/*dishes section ends here  */


/* about style start here */
.about .row{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
    align-items: center;
}
.about .heading{
    text-transform: capitalize;
    color: var(--green);
    font-size: 2rem;
    padding-top: 1rem;
    text-align: center;
}
.about .sub-heading{
    text-transform: uppercase;
    color: var(--blue);
    font-size: 5rem;
    padding-bottom: 2rem;
    text-align: center;

}
.about .row .image{
    flex:1;
}

.about .row .image img{ 
    width: 100%;
}

.about .row .content{
    flex:1;
}
.about .row .content h3{
    color: var(--blue);
    font-size: 4rem;
    padding: 3rem 0;
    text-transform: capitalize;
}
.about .row .content p{
    color: var(--light_color);
    font-size: 1.5rem;
    padding: 2rem 0;
    line-height: 2;
}
.about .row .content .btn{
 margin-top: 4rem;
}
.about .row .content .icons-container{
    display: flex; 
    gap: 1rem;
    padding: 1rem 0;
    margin-top: .5rem;


}
.about .row .content .icons-container .icons{
    display: flex; 
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex: 1 1;
    background: #eee;
    border-radius: .5rem;
    border: 1rem solid rgba(0,0,0,.2);
    padding: 1.5rem 1rem;
    

}
.about .row .content .icons-container .icons i{
    font-size: 2.5rem;
    color: var(--green);

}
.about .row .content .icons-container .icons span{
    font-size: 1.5rem;
    color: var(--blue);

}
/* and it ends here */

/* menu start here */
.menu{
    background: #eee;

}
.menu .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, 35rem);
    gap:1.5rem;
    justify-content: center;
 
    

}

.menu .box-container .box{
    background: #fff;
    border:.1rem solid rgba(0,0,0,.2);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);    
}
.menu .box-container .box:hover{
    padding: 2.5rem;
    border-radius: 1rem;
    border: .1rem solid rgba(0,0,0,.5)!important;
}


.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: 5rem;
    width: 5rem;
    line-height: 5rem;
    text-align: center;
    font-size: 2rem;
    background: #fff;
    border-radius: 50%;
    color:var(--blue);
}

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

.menu .box-container .box .content{
    padding:2rem;
    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(--blue);
    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 .price{
    color:var(--green);
    margin-left: 1rem;
    font-size: 2.5rem;
}

/* ends here */

/* review style start here */
.review .slide{
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1rem solid rgba(0,0,0,.2);
    border-radius: .5rem;
    position: relative;
    background: #f9f9f9;
  

}
.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: 6rem;
    width: 6rem;
    border-radius: 50%;
    object-fit: contain;

}
.review .slide .user h3{
    color: var(--blue);
    font-size: 2rem;
    padding-bottom: .5rem;
}
.review .slide .user i{
    font-size:1.2rem;
    color: var(--green);
}
.review .slide p{
    font-size: 1.5rem;
    line-height: 1.8rem;
    color:var(--light_color)
}


/* review style ends here */


/* order form style start here  */
.order{
    background: #eee;
}
.order form{
    max-width:90rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    border:.1rem solid rgba(0,0,0,.2);
    background:#fff;
    padding:1.5rem;
    margin:0 auto;
    padding-top: 1rem;
}

.order form .inputBox{
    display: flex;
    gap: 1.5rem;
}

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

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

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


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

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

/*  order forms ends here*/




/* footer style css */

.footer{
    background:black;
}

.footer .box-container{

    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(25rem,1fr));
    gap: 2rem ;

}
.footer .box-container .box h3{
    font-size: 1.5rem;
    padding: .5rem 0;
    color: #eee;

}
.footer .box-container .box a{
    display: block;
    font-size: 1.5rem;
    padding: .5rem 0;
    color:#666;

}
.footer .box-container .box a:hover{
    color: #fff !important;
    text-decoration: underline !important;
}
  .footer .credit{
    text-align: center;
    border-top: 1rem solid rgba(0,0,0,.2);
    font-size: 1rem;
    color:#fff;
    margin-top: 2rem;
   
   
  
  }
  .footer .credit span{

    color: var(--green);
  }
/* footer ends here */
/* media queries */
/* headers queries stat */


@media (max-width:991px){

    html{
        font-size: 55%;
    }
    
    header{
        padding:1rem 2rem;
    }

    section{
        padding:2rem;
    }


}
@media (max-width:768px) {

    header .icons #menu-bars{
    display: inline-block;
}
    header .navbar{
        position: absolute;
        top:100%;left:0;right:0;
        background: #fff;
        border-top: .1rem solid rgba(0,0,0,.2);
        border-bottom: .1rem solid rgba(0,0,0,.2)!important;
        padding: 1rem;
        clip-path: polygon(0 0,100% 0,100% 0,0 0);

    }
    header .navbar.active{
        clip-path: polygon(0 0,100% 0,100% 100% ,0% 100%);
    }
    header .navbar a{
        display: block;
        padding: 1.5rem;
        margin: 1rem;
        font-size: 2rem;
        background: #eee;
    }
    /* search queries */
    #search-form #search-box{
        width: 90%;
        margin: 0 1rem;
    }
    /* end here */

    /* slideer queries of home section */
    .home .home-slider .slide .content h3 {
        font-size: 3rem;
      
    
    }
    .home .home-slider .slide .content p {
        color: var(--light_color);
        font-size: 2rem;
        width: 20rem;
        line-height:2rem;
    } 
   /* ends here */
   /* dishes query start here */
   .dishes .box-con .dish-box img{
    height: auto;
    width: 100%;
   }
   .box-con{
    display: flex;
    flex-direction: column;
   align-items: center;
   
    
 
}
/* order form */
.order form .inputBox{
    display: flex;
    flex-wrap: wrap;
}
}
@media (max-width:450px){
    html{
        font-size: 50%;
    }}
/* dishes query */
.dishes .box-con .dish-box img{
    height: auto;
    width: 100%;
}
/* ends it here */
    .order form .inputBox .input{
        width: 100%;
    }
    

    /* header queries end here */