.farm-tour-section {
  background-color: #d9b48f;
  padding: 2rem;
  font-family: Arial, sans-serif;
}

.farm-tour-container {
  background-color: #fff;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row; /* Default: side by side on larger screens */
}

.farm-tour-text {
  flex: 0 0 60%;
  padding: 2rem;
  box-sizing: border-box;
}

.farm-tour-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.farm-tour-subtitle {
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.farm-tour-paragraph {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.farm-tour-button {
  display: inline-block;
  background-color: #a26744;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
}

.farm-tour-image {
  flex: 0 0 40%;
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.farm-tour-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  /* Stack content vertically on small screens */
  .farm-tour-container {
	flex-direction: column;
  }
  .farm-tour-text, .farm-tour-image {
	flex: 0 0 100%;
	padding: 1rem;
  }
}

/* Hero section with background */
.farm-hero {
  position: relative;
  background: url("img/cacao_on_tree.jpg") no-repeat center center;
  background-size: cover;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Semi-transparent overlay to make text stand out */
.farm-overlay {
  background-color: rgba(255, 248, 241, 0.7);
  padding: 2rem;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

/* Main heading */
.farm-title {
  font-size: 3rem;
  margin: 0 0 1rem;
  font-weight: bold;
}

/* Paragraph text styling */
.farm-text {
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 1rem 0;
}	