/* ===== Explore Destinations – Zig-Zag Layout ===== */

body {
  background-color: #fff8ec;
  color: #3b2a20;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding-top: 90px; /* fixed header space */
}

.content-container {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

/* Heading + intro */
.content-container > h1 {
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 800;
  color: #f29b2f;
  margin: 1.5rem 0 0.3rem;
  text-align: center;
}

.content-container > p {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 0.98rem;
  color: #8b7c6b;
  text-align: center;
}

/* One row per destination */
.destination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 1.8rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Alternate direction every second block */
.destination:nth-of-type(even) {
  flex-direction: row-reverse;
}

/* Image: left or right, big and full */
.destination img {
  width: 42%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* Text column */
.dest-text {
  width: 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dest-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f29b2f;
  margin: 0 0 0.6rem;
}

.dest-text p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.8;
  color: #3b2a20;
}


/* Responsive */
@media (max-width: 900px) {
  body {
    padding-top: 100px;
  }

  .destination,
  .destination:nth-of-type(even) {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .destination img {
    width: 100%;
    height: 230px;
  }

  .dest-text {
    width: 100%;
  }

  .dest-text h2,
  .dest-text p {
    text-align: left;
  }
}