body {
  font-family: 'Poppins', sans-serif;
  color: #3A3A3C;
}

.navbar {
  background-color: #3A3A3C;
}

.navbar-brand img {
  height: 50px;
  margin-right: 10px;
}

h1, h2, h3 {
  color: #3A3A3C;
}

.section-title {
  color: #3E77AB;
}

/* Section padding & transitions */
section {
  padding: 5rem 1rem;
  transition: background 0.6s ease, color 0.3s ease;
}

/* Gentle gradient overlays between key sections */
section::after {
  content: "";
  display: block;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(223,204,162,0.5));
  margin-top: -40px;
}

.wave-divider {
  display: block;
  width: 100%;
  height: 100px;
  margin-top: -1px;
}

#hero {
  position: relative;
  background: linear-gradient(to bottom right, #DFCCA2, #B7A37F);
  color: #3A3A3C;
  padding: 5rem 1rem;
  text-align: center;
  overflow: hidden;
}

#hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  background-image: url('../images/logo2.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.08;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* #hero::after {
  background: linear-gradient(to bottom, rgba(183,163,127,0.6), rgba(223,204,162,0));
} */

#hero .container {
  position: relative;
  z-index: 1;
}



#mission,
#services,
#testimonials,
#contact {
  background-color: #DFCCA2;
}

#about {
  background-color: #B7A37F;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0% 100%);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

#about::after {
  background: linear-gradient(to bottom, rgba(183,163,127,0.5), rgba(223,204,162,0));
}


footer {
  background-color: #42403E;
  color: #DFCCA2;
}