html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #FFF8F0;
  color: #3A2A1A;
  padding-top: 80px;
}

h1, h2, h5 {
  font-family: 'Playfair Display', serif;
}

.nav-link.active {
  color: #8B5E34 !important;
  font-weight: 600;
}

/* HERO SECTION */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(
      rgba(255,248,240,0.85),
      rgba(255,248,240,0.85)
    ),
    url('sugarcane-bg.png') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 46px;
  margin-bottom: 16px;
}

.hero-title span {
  color: #8B5E34;
}

.hero-text {
  font-size: 18px;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-img {
  max-width: 100%;
  border-radius: 20px;
  /* box-shadow: 0 15px 40px rgba(0,0,0,0.15); */
}

/* HERO STATS */
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.hero-stats h4 {
  margin: 0;
  color: #8B5E34;
  font-weight: 700;
}

.hero-stats span {
  font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-title {
    font-size: 34px;
  }
  .hero-stats {
    justify-content: center;
  }
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

/* PRODUCTS */
.products-section {
  background: #F3E6D8;
  padding: 80px 0;
}

.carousel-item img {
  max-height: 400px;
  border-radius: 16px;
  margin-bottom: 20px;
}

/* CONTACT */
.contact-section {
  background: #3A2A1A;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

footer {
  background: #2A1E14;
  color: white;
  text-align: center;
  padding: 12px;
}
/* TEAM SECTION */
.team-section {
  padding: 80px 0;
  background: #fff;
}

.team-card {
  background: #FFF8F0;
  padding: 30px 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  height: 100%;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 4px solid #F3E6D8;
}

.team-card h5 {
  margin-bottom: 4px;
}

.team-card span {
  font-size: 14px;
  color: #8B5E34;
  font-weight: 600;
}

.team-card p {
  font-size: 15px;
  margin-top: 10px;
}

.contact-section {
  background: #499132;
}

.contact-card {
  background: #ffffff;
  color: #499132;
  padding: 30px 20px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-card .icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-card h5 {
  margin-bottom: 10px;
}
