/* css reset */
* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* CSS Variables */
:root {
    --navbar-height: 59px;
}

/* navigation bar */
#navbar {
    display: flex;
    align-items: center;
    position: sticky;
    top: 0px;
}

/* logo and image */
#logo {
    margin: 3px 25x;
}

#logo img {
    height: 50px;
    width: 50px;
    margin: 3px 39px;
    border-radius: 35px;
}

/* navigation bar: list styling */
#navbar ul {
    display: flex;
    font-family: 'Bitter', serif;
}

#navbar::before {
    content: "";
    background-color: black;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 95%;
    width: 100%;
    z-index: -1;
    opacity: 0.50;
}

#navbar ul li {
    list-style: none;
    font-size: 1.3rem;
}

#navbar ul li a {
    color: white;
    display: block;
    padding: 3px 30px;
    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;
    justify-content: center;
    height: 550px;
    align-items: center;
}

#home::before {
    content: "";
    background: url("../img/spaghetti-1932466.jpg") no-repeat center center/cover;
    position: absolute;
    height: 95%;
    width: 100%;
    z-index: -1;
    opacity: 4.0;
}

#home h1 {
    color: white;
    text-align: center;
    font-family: 'Bree Serif', serif;
}

#home p {
    color: white;
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Bree Serif', serif;
}

/* services Section */
#services {
    margin: 34px;
    display: flex;

}

#services .box {
    border: 2px solid brown;
    margin: 20px 50px;
    padding: 25px;
    border-radius: 21px;
    background-color: #f2f2f2;
    margin-bottom: 20px;
}

#services .box img {
    height: 160px;
    display: block;
    margin: auto;
}

#services .box p {
    font-family: 'Bree Serif', serif;
}

#services {}

/* clients section */
#client-section {
    position: relative;
}

#client-section::before {
    content: "";
    position: absolute;
    background: url("../img/pexels-lukas-616401.jpg");
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}


#clients {
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-item {
    padding: 34px;
}

#clients img {
    height: 124px;
}

/* contact section */
#contact {
    position: relative;
}

#contact::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
    background: url("../img/contact-us-hand-businessman-holding-mobile-smartphone-with-mail-phone-email-icon_52701-38.avif") no-repeat center center/cover;

}

#contact-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 34px;
}

#contact-box input,
#contact-box textarea {
    width: 100%;
    padding: 0.5rem;
    border-radius: 9px;
    font-size: 1.1 rem;
}

#contact-box form {
    width: 40%;
}

#contact-box label {
    font-size: 1.3rem;
    font-family: 'Bree Serif', serif;
}

footer {
    background: black;
    color: white;
    padding: 9px 20px;
}

/* utility classes */
.h-primary {
    font-size: 3.8rem;
    padding: 12px;
    font-family: 'Bree Serif', serif;

}

.h-secondary {
    font-size: 2.3rem;
    padding: 12px;
    font-family: 'Bree Serif', serif;

}


.btn {
    padding: 6px 20px;
    radius: 2px solid white;
    background-color: brown;
    color: white;
    margin: 17px;
    font-size: 1.5rem;
    border-radius: 10px;
    cursor: pointer;
}

.center {
    text-align: center;
}