/* css reset  */
*{
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
/* body{
    background-color: rgb(60, 250, 225);
} */


/* css variables */
:root{
    --navbar-height:59px
}

#navbar{
    display: flex;
    align-items: center;
    position: sticky;
    top: 0px;
}

/* Navigation bar: logo and image  */
#logo{
    margin: 10px 6px;
}

#logo img{
    height: 59px;
    margin: 3px 6px;
}

/* Navigation bar: List Styling */


#navbar::before{
    content: "";
    background-color: black;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 90%;
    width: 100%;
    z-index: -1;
    opacity: 0.3;
}

#navbar ul{
    display: flex;
}

#navbar ul li{
    list-style: none;
    font-size: 1.3rem;
}
#navbar ul li a{
    color: white;
    display: block;
    padding: 5px 20px;
    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: 550px;
    justify-content: center;
    align-items: center;
}

#Home::before{
    content: "";
    background: url('../img/food-1932466.jpg') no-repeat center center/cover;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 642px;
    width: 100%;
    z-index: -1;
    opacity: 0.9;
}

#Home h1{
    color: white;
    text-align: center;
}
#Home p{
    color: white;
    text-align: center;
    font-size: 1.5rem;
}

/* services section  */

#services{
    /* background-color: cadetblue; */
    margin: 34px;
    display: flex;
}

#services .box{
    /* width: 300px; */
    border: 2px solid brown;
    padding: 18px;
    margin: 2px 16px;
    border-radius: 23px;
    background-color: rgb(201, 185, 185);
}
#services .box img{
    height: 160px;
    display: block;
    margin: auto;
}

/* client section  */

#client-section{
    position: relative;
}
#client-section::before{
    content: " ";
    position: absolute;
    background-color: rgb(224, 241, 224);
    width: 100%;
    height: 344px;
    z-index: -1;
    opacity: 0.4;
}

#clients{
    display: flex;
    justify-content: center;
    align-items: center;

}

.client-item{
    padding: 34px;
}
#clients img{
    height: 180px;
}


/* contact section  */

#contact{
    position: relative;
}

#contact::before{
    content: "";
    position: absolute;
    background: url('../img/raspberry-2023404_1920.jpg') no-repeat center center/cover;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
}

#contact-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 34px;
}

#contact-box input,#contact-box textarea{
    width: 100%;
    padding: 0.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
}

#contact-box form{
    width: 40%;
}
#contact-box label{
    font-size: 1.3rem;
}
/* footer section  */

footer{
    background: black;
    color: white;
    padding: 9px 20px;
}

/* utility classes  */

.h-primary{
    font-size: 3.8rem;
    padding: 12px;

}
.h-secondary{
    font-size: 1.8rem;
    padding: 12px;
}

.btn{
    padding: 6px 20px;
    border: 2px solid white;
    background-color:rgb(13, 14, 10);
    color: white;
    margin: 17px;
    font-size: 1.2rem;
    border-radius: 17px;
    cursor: pointer;
}
.btn:hover{
    background-color: rgb(34, 204, 43);
    /* color: black; */
}

.center{
    text-align: center;
}