* {
    margin: 0px;
    padding: 0px;
}

html {
    scroll-behavior: smooth;
}

:root {
    --navbar-height: 59px;
    background-color: white;
    font-size: 15px;
}

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

#navbar::before {
    content: "";
    background-color: rgb(38, 36, 36);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}

/* Navigation Bar: Logo Styling */
#logo {
    margin: 6px 7px;
}

#logo img {
    margin: 2px 6px;
    width: 60px;
    height: 60px;
}


/* Navigation bar: List Item Styling */
#navbar ul {
    display: flex;
    list-style: none;
    margin-left: 40px;
    font-family: "Oswald", sans-serif;
}

#navbar ul li{
    padding: 2px 2px;
    font-size: 1.3rem;
}

#navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    display: block;
    padding: 5px 10px;
}

#navbar ul li a:hover {
    color: black;
    background-color: white;
}

/* Home section */
#home {
    display: flex;
    flex-direction: column;
    padding: 0px 200px;
    margin: 0px auto -27px auto;
    align-items: center;
    height: 472px;
    justify-content: center;
}

#home::after {
    content: "";
    background:url('../img/food-desk-bg.jpg') no-repeat center center/cover;
    position: absolute;
    width: 100%;
    height: 500px;
    top:0px;
    z-index: -1;
    opacity: 0.79;
}

#home h1 {
    color: white;
    text-align: center;
    font-size: 3.5rem;
    font-family: "Oswald";
}

#home p {
    font-size: 1.5rem;
    font-family: "Rubik", sans-serif;
    color: white;
}


/* Services section */
#services {
    margin: 34px;
    display: flex;
    justify-content: space-evenly;
}

#services .box {
    border: 2px solid brown;
    margin: 0 15px;
    width: 450px;
    padding: 15px;
    border-radius: 28px;
    background-color: aliceblue;
    box-shadow: 2px 2px 7px 1px #808080ba;
}

#services .box img {
    height: 156px;
    display: block;
    margin: auto;
}

#services .box p {
    margin-top: 15px;
    font-size: 1.3rem;
    font-family: "Rubik", sans-serif;
}

/* Clients Section */
#client-section {
    padding: 30px 0;
    margin: 10px 0 50px 0;
}

#client-section::before {
    content: "";
    position: absolute;
    background: url('../img/foodie-bg-1.jpg');
    width: 100%;
    height: 300px;
    z-index: -1;
    opacity: 0.37;
}

#clients {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.client-item img {
    width: 110px;
    margin: 5px 35px;
}

/* Contact Section */
#contact{
    position: relative;
    margin: 70px 0px 10px 0px;
}

#contact::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
}

#contact-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
}

#contact-box form {
    width: 40%;
}

#contact-box label {
    font-size: 1.5 rem;
    font-family: "Rubik", sans-serif;
    font-weight: 400;
}

#contact-box input,
#contact-box textarea {
    width: 100%;
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid black;
}


#contact-box .btn-submit {
    display: block;
    width: 30%;
    height: 30px;
    margin: 5px auto;
}

.form-group {
    margin: 15px 0;
}



/* Footer */
footer {
    background: black;
    color: white;
    padding: 9px 20px;
    height: 300px;  
}

.footer-text {
    position: relative;
    top: 80%;
}



/* Utility class */
.h-primary {
    font-size: 2.8rem;
    padding: 12px;
    font-family: "Oswald", sans-serif;
}

.h-secondary {
    font-family: "Oswald", sans-serif;
    font-size: 2.3rem;
}

.btn {
    border: 2px solid white;
    background-color: rgba(136, 20, 20, 0.84);
    padding: 8px 22px;
    color: white;
    font-size: 18px;
    margin-top: 30px;
}

.btn:hover {
    border: 2px solid white;
    background-color: rgba(136, 20, 20, 0.44);
    padding: 8px 22px;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.center {
    text-align: center;
}

