/* CSS Reset */
* {
  margin: 0;
  padding: 0;
}

html{
  scroll-behavior: smooth;
}

:root{
  --dark : brown;
  --light : sandybrown;
}

/* Navigation Bar */

#navbar {
  display: flex;
  position: fixed;
  top: 0;
  width: 100%;
  align-items: center;
  z-index: 999;
  background-color: rgba(35, 19, 19, 0.5);
}

/* Navigation Bar : Logo */

#logo {
  margin: 10px 30px;
}

#logo img {
  margin: 5px 5px;
  height: 50px;
  border-radius: 5px;
}

/* Navigation Bar : List */

#navbar ul {
  display: flex;
  font-family: 'Ubuntu', sans-serif;
  font-weight: bold;
}

#navbar ul li {
  list-style: none;
  /* padding: 10px; */
}

#navbar ul li a {
  color: white;
  display: block;
  padding: 3px 22px;
  text-decoration: none;
  border-radius: 20px;
}
#navbar ul li a:hover {
  color: black;
  /* padding: 0 10px; */
  background-color: white;
}

/* Home Section */

#home{
    display: flex;
    flex-direction: column;
    padding: 5px 0px;
    height: 500px;
    position: relative;
    /* margin-top: -9%; */
    align-items: center;
    justify-content: center;
    background: url(../Image/spaghetti-g75255763a_1920.jpg) no-repeat center center/cover;
    object-fit: cover;
    width: 100%;
}

#home h1{
    text-align: center;
    color: white;
    font-family: 'Ubuntu', sans-serif;
}

#home p{
    text-align: center;
    color: white;
    font-size: 1.25rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: bold;
    margin: 0 25px;
}

/* Services Section */

#services{
    position: relative;
    margin: 30px;
    display: flex;
    margin: 0 10px;
    border-radius: 25px ;
}
#services .box{
    border: 2px solid var(--dark);
    background-color: var(--dark);
    color: sandybrown;
    margin: 5px;
    padding: 40px 10px;
    border-radius: 25px;
    /* background-color: rgb(219, 205, 205); */
}
#services .box img{
    height: 150px;
    border-radius: 5px;
    display: block;
    margin: auto;
}

#services .box p{
  font-family: 'ubuntu';
}

/* Clients Section */

#client-section{
  display: flex;
  color: var(--dark);
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
  margin-top: 25px;
}

#client-section::before{
  content: " ";
  position: absolute;
  background-color: var(--light);
  height: 100%;
  width: 100%;
  z-index: -2;
}

#clients{
  display: flex;
    justify-content: space-around;
    align-items: center;
    width: 80%;
}

.client-item{
  padding: 35px;
}

#clients img{
  height: 150px;
  width: 150px;
}

/* Contact Section */

#contact{
  position: relative;
}

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

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

#contact-box input, 
#contact-box textarea{
  width: 100%;
  padding: 0.5rem 0 0.5rem 0.5rem;
  border-radius: 10px;
  border: 2px solid var(--dark);
  font-size: 1.1rem;
  margin-top: 5px;
}


#contact-box form{
  width: 40%;
}
#contact-box label{
  font-size: 1.4rem;
  font-family: 'ubuntu';
  margin-left: 5px;
  color: var(--dark);
}

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

#contactButton{
  background-color: var(--dark);
  cursor: pointer;
  border: 2px solid var(--dark);
  color: var(--light);
  padding: 0.5rem;
  width: 50%;
  display: block;
  margin: auto;
  margin-top: 10px;
  border-radius: 15px;
  font-family: 'ubuntu';
  font-size: 1.2rem;
}

/* Footer */

Footer{
  background-color: black;
  color: white;
  padding: 10px 0;
}

/* Utility Classes */

.h-primary{
  font-family: 'ubuntu';
    font-size: 3.8rem;
    color: var(--dark);
    padding: 12px;
}

.center{
  text-align: center;
}

.h-secondary{
  font-family: 'ubuntu';
    font-size: 2.3rem;
    padding: 12px;
}

.btn{
    padding: 5px 20px;
    border: 3px solid white;
    background-color: brown;
    color: white;
    border-radius: 10px;
    margin: 15px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
}

.center{
    text-align: center;
}
