/* reset */
*{
    margin: 0;
    padding: 0;
}
html{

    scroll-behavior: smooth;
}
/* css variable */
:root{
    --navbar-height:59px
}
 /* navigation bar */
 #navbar{
    position: sticky;
      display: flex;
      align-items: center;
      top: 0px;
      
      
      
    }
    #navbar:before{
         content: "";
         background-color: black;
         position:absolute;
         top: 0px;
         left: 0px;
         height: 100%;
         width: 100%;
         z-index: -1;
         opacity: 0.4;
    }
 /* navigation bar : logo and image */
 #logo{
     margin: -37px -5px;;
    
 }
 #logo img{
    height: 75px;
    margin: 34px 19px;

 }

 /*navigation bar: list styling */
#navbar ul{
    display: flex;
    font-family: "DynaPuff", system-ui;
    
 }
 #navbar ul li{
    list-style: none;
    font-size: 1.5rem;
 }
 #navbar ul li a{
    color: white;
    display: block;
    padding: 3px 22px;
    border-radius: 20px;
    text-decoration: none;
    /* height: 37px; */
  
 }
#navbar ul li a:hover{
    color: black;
    background-color: white;
}
/*home section */
#home{
    display: flex;
    flex-direction: column;
    padding: 0px 200px;
    justify-content: center;
    align-items: center;
    height: 625px;
}
#home::before{
    content: "";
    background:url(food2.jpg) no-repeat center center/cover;
    position:absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.89;
}
#home h1{
    color: white;
    text-align: center;
    font-family: "DynaPuff", system-ui;
}
#home p{
    color: white;
    text-align: center;
    font-size: 1.1rem;
    font-family: "DynaPuff", system-ui;
}
/* service-container */
#services{
    margin: 4px;
    display: flex;
}
#services .box{
   border: 2px solid brown;
   padding: 34px;
   margin: 3px 6px;
   background-color: rgb(241 216 216 / 47%);
   border-radius: 23px;
}
#services .box img {
    height: 160px;
    display: block;
    margin: auto;
    /* filter: invert(100%); */
}
#services .box  p{
      font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
/* clients section */
#client-section{
    height: 550px;
    /* position: relative;
    top: 0px;
    left: 0px; */
  

}
.client-item{
    padding: 26px;
    
}
#client-section::before{
    content: "";
    position: absolute;
    background: url(food.png) no-repeat center center/cover;
    height: 79%;
    width: 100%;
    z-index: -2;
    opacity: 0.5;

}
#clients{
    display: flex;
    justify-content: center;
    align-items: center;
}
#clients img{
    height: 84px;
}
/* contact section */
#contact{
  position: relative;
  /* top: 0px;
  left: 0px;*/
} 
#contact-box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 34px;
}
#contact-box form{
     width: 40%;
}
#contact-box label{
     font-size: 1.3rem;
     font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

#contact::before{
    content: "";
    position:absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
    background: url(contact.jpg) no-repeat center center/cover;
}
#contact-box input, #contact-box textarea{
    width: 100%;
    padding: 0.5rem;
    border-radius: 10px;
    font-size: 1.2rem;
}

footer{
    background-color: black;
    color: white;
    padding: 7px;
}
/* utility classes */
.h-primary{
    font-size: 3.8rem;
    padding: 12px;
    font-family: "DynaPuff", system-ui;
}
/* .h-primary1{
    font-size: 3.8rem;
    padding: 12px;
} */
.h-secondary{
    font-size: 1.8rem;
    font-family: "DynaPuff", system-ui;
    padding: 12px;
}
.btn{
    cursor: pointer;
    padding: 5px 20px;
    border: 2px solid white;
    background-color: brown;
    color: white;
    font-size: 1.4rem;
    border-radius: 20px;
    margin: 16px;
}
.center{
    text-align: center;
}