/* ===============================
   RIVTARA DESTINATIONS PAGE
================================ */

.destinations_listing {
  padding: 150px 8% 90px;
  background: #eef8f6;
}

.destinations_listing .eyebrow {
  color: #0a8db8;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 800;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2 {
  margin-top: 10px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  color: #121b33;
}

/* Search + Filters */

.destination_tools {
  margin-bottom: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.destination_search_bar input {
  width: 100%;
  max-width: 520px;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid rgba(18, 27, 51, 0.12);
  outline: none;
  font-size: 15px;
  color: #121b33;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(18, 27, 51, 0.08);
}

.destination_search_bar input:focus {
  border-color: #0a8db8;
  box-shadow: 0 16px 38px rgba(10, 141, 184, 0.16);
}

.destination_filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter_btn {
  border: 1px solid rgba(18, 27, 51, 0.1);
  background: #ffffff;
  color: #121b33;
  padding: 10px 17px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(18, 27, 51, 0.06);
  transition: 0.25s ease;
}

.filter_btn.active,
.filter_btn:hover {
  background: #0a8db8;
  border-color: #0a8db8;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Grid */

.destination_listing_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

/* Card */

.destination_card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(18, 27, 51, 0.08);
  box-shadow: 0 22px 55px rgba(18, 27, 51, 0.1);
  transition: 0.35s ease;
}

.destination_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(18, 27, 51, 0.16);
}

.destination_card_image {
  width: 100%;
  height: 245px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.destination_card_body {
  padding: 26px;
}

.destination_card_type {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #eef8f6;
  color: #087ea4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.destination_card h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.1;
  color: #121b33;
}

.destination_card p {
  margin: 0 0 20px;
  color: #68787b;
  font-size: 15px;
  line-height: 1.7;
}

.destination_card_meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  margin-bottom: 20px;
  border-top: 1px solid rgba(18, 27, 51, 0.08);
}

.destination_card_meta span {
  color: #526466;
  font-size: 14px;
  line-height: 1.4;
}

.destination_card_meta strong {
  color: #121b33;
  font-size: 17px;
  white-space: nowrap;
}

.destination_card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #0a8db8;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.25s ease;
}

.destination_card a:hover {
  background: #087497;
}

/* Responsive */

@media (max-width: 1100px) {
  .destination_listing_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .destinations_listing {
    padding: 125px 22px 65px;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  .destination_search_bar input {
    max-width: 100%;
  }

  .destination_listing_grid {
    grid-template-columns: 1fr;
  }

  .destination_card_image {
    height: 220px;
  }
}