/*  css Reset */
*{
    margin: 0;
    padding: 0;

}
/* navigation bar */
#navbar{
         display: flex;
         align-items: center;
         position: relative;
         top: 0px;
}
/* navigation bar: logo and image */
#logo{
    margin: 10px 34px;
}

#logo img{
          height: 59px;
          margin: 3px 6px;
}

/* navigation bar: list styling */
#navbar ul{
    display: flex;
    font-family: 'baloo bhai',cursive;
}
#navbar::before{
    content: "";
    background-color: black;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.4;
}
#navbar ul li{
    list-style: none;
    font-size: 1.3rem;

}
#navbar ul li a{
    color: white;
   display: block;
   padding: 33px 44px;
   border-radius: 20px;
   text-decoration: none;
    
}
#navbar ul li a:hover{
    color: black;
    background-color: white;
}
/* home section*/
#home{
    display: flex;
    flex-direction: column;
    padding: 3px 200px;
    height: 480px;
    justify-content: center;
    align-items: center;
}
#home::before{
    content: "";
    background: url('food image/foodimage2.jpg') no-repeat center center/cover;
    position: absolute;
    height: 75%;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: -1;
    opacity: 0.89;

} 
#home h1{
    color: white;
    text-align: center;
    font-family: 'bree serif',serif;
}
#home p{
    color: white;
    text-align: center;
    font-size: 1.5ramS;
    font-family: 'bree serif',serif;
}
/*services section*/
#services{
    margin: 30px;
    display: flex;
}
#services .box{
    border: 2px solid brown;
    padding: 33px;
    margin: 3px 6px;
    border-radius: 28px;
    background-color: #ede7e7;
}
#services.box img{
    height: 160px;
    margin: auto;
    display: block;
}
   
img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 100px;
    width: 100px;
}
#services .box p{
    font-family: 'baloo bhai',cursive;
}
#services{}
#services{}


/* utility classes*/
.h-primery{
    font-family: 'baloo bhai',cursive;
    font-size: 2.8rem;
    padding: 12px;
}
.h-secondary{
    font-family: 'baloo bhai',cursive;
    font-size: 1 .3rem;
    padding: 12px;
}
.btn{
    padding: 6px 20px;
    border: 2px soild white;
    background-color: brown;
    color: white;
    margin: 17px;
    font-size: 1.5rem;
    border-radius: 10px;
    cursor: pointer;

}
.center{
    text-align: center;
}
/*clients section*/
#clients{
    display: flex;
    justify-content: center;
    align-items: center;    
}
.client-item{
    padding: 30px;
}
#client-section::before{
  content: "";
  position: absolute;
  background: url('food image/food2image.jpg');
  width: 100%;
  height: 50%;
  z-index: -1;
  opacity: 0.6;

}
/*contact section*/
#contact{
  position: relative;
}
#contact::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.7;
  background: url('logos/contact-us.webp') no-repeat center center/cover;
}
footer{
    background: black;
    color: #ede7e7;
    padding: 9px 20px;
}
#contact-box input,
#contact-box textarea{
    width:100%;
    padding: 0.3rem;
    border-radius: 9px;
    font-size: 1.1rem;

}   
#contact-box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 34px;

}
#contact-box from{
    width: 40%;
    font-family: 'baloo bhai',cursive;
}
#contact-box label{
    font-size: 1.3rem;
    margin: 4%;
}


