/* Hero Section */
.hero-section {
  background: var(--color-hero-overlay), url("/images/5.png");
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  padding: 0;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.hero-content {
  max-width: 650px;
  padding: 0 1rem;
  width: 100%;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.5;
  max-width: 540px;
  width: 100%;
}

/* Vision Section */
.vision-section {
  background: var(--color-gradient-brown);
  padding: var(--section-padding) 0;
}

.vision-icon {
  width: 80px;
  height: 80px;
}

.vision-image {
  height: 640px;
  object-fit: cover;
}

/* Spices Section */
.spices-section {
  padding: var(--section-padding) 0;
}

.spices-center-image {
  width: 540px;
  height: 596px;
  object-fit: cover;
}

.spice-item {
  margin-bottom: 175px;
}

.spice-item:last-child {
  margin-bottom: 0;
}

/* Features Section */
.features-section {
  padding: var(--section-padding) 0;
}

.feature-card {
  padding: 2rem 1rem;
  height: 276px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.feature-icon {
  height: 48px;
  width: auto;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: 80vh;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-content {
    padding: 2rem 1rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .feature-title {
    font-size: 1.75rem;
  }
  .spice-item {
    margin-bottom: 3rem;
  }
  .vision-image {
    height: auto;
    margin-top: 3rem;
  }
  .spices-center-image {
    width: 100%;
    height: auto;
    margin: 3rem 0;
  }
}
@media (max-width: 767.98px) {
  :root {
    --section-padding: 4rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .d-flex.gap-3 {
    justify-content: center;
  }
}
