/* process.css — styles for the Tea Production Process page */

/* ========= Hero Banner ========= */
.process-hero {
  width: 100%;
  overflow: hidden;
  margin-bottom: 3rem;
}

.process-banner {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 0 0 16px 16px;
}

/* ========= Process Content Section ========= */
.process-content {
  max-width: 1100px;
  margin: auto;
  padding: 2rem 1rem;
  font-family: 'Inter', sans-serif;
  color: #333;
}

/* ========= Each Step Section ========= */
.process-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.process-section.reverse {
  flex-direction: row-reverse;
}

/* ========= Image Styling ========= */
.process-section img {
  width: 45%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

/* ========= Text Block Styling ========= */
.process-section div {
  width: 50%;
  min-width: 280px;
}

.process-section h2 {
  font-size: 1.75rem;
  color: #2e7d32;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.process-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
}

/* ========= Responsive Styling ========= */
@media (max-width: 768px) {
  .process-section,
  .process-section.reverse {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .process-section img,
  .process-section div {
    width: 100%;
  }

  .process-section h2 {
    text-align: center;
  }

  .process-section p {
    text-align: justify;
    padding: 0 1rem;
  }
}
