:root {
  --soil-brown: #311f1a;
  --clay-orange: #d2691e;
  --beige: #f3efe0;
  --accent-yellow: #db981c;
  --overlay-dark: rgba(0, 0, 0, 0.5);
  --brown: #b97926;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
    background-image: linear-gradient(45deg, rgb(168, 123, 102) 0%, rgb(168, 123, 102) 34%,rgb(198, 165, 139) 34%, rgb(198, 165, 139) 43%,rgb(213, 186, 158) 43%, rgb(213, 186, 158) 44%,rgb(138, 80, 65) 44%, rgb(138, 80, 65) 48%,rgb(153, 101, 84) 48%, rgb(153, 101, 84) 61%,rgb(123, 59, 47) 61%, rgb(123, 59, 47) 63%,rgb(108, 38, 28) 63%, rgb(108, 38, 28) 85%,rgb(183, 144, 121) 85%, rgb(183, 144, 121) 100%);
  color: #2e2e2e;
  box-sizing: border-box;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 50vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-title {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: var(--overlay-dark);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 2.8rem;
  font-weight: 700;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
}

/* CONTENT SECTION */
.content-section {
  background-color: var(--beige);
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
  color: var(--soil-brown);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.content-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* IMAGE GRID */
.image-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.grid-image {
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  background-color: white;
  padding: 10px;
  border: 3px solid var(--accent-yellow);
}

/* ANIMATIONS (optional if adding .animate class later) */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate.show {
  opacity: 1;
  transform: translateY(0px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    padding: 0.75rem 1.5rem;
  }

  .content-section p {
    font-size: 1rem;
  }

  .image-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .grid-image {
    width: 90%;
  }
}
