/* Destinations Section - Fully Responsive */
#destinations {
  padding: 60px 0;
}

.destination-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.destination-card .ratio {
  position: relative;
  overflow: hidden;
}

.destination-card .ratio::before {
  content: "";
  display: block;
  padding-top: 75%; /* 4:3 ratio */
}

.destination-card .bg-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.destination-card:hover .bg-cover {
  transform: scale(1.1);
}

.destination-card .card-body {
  padding: 20px;
}

.destination-card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.destination-card .card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Responsive Grid */
@media (max-width: 575.98px) {
  #destinations {
    padding: 40px 0;
  }

  .destination-card .card-body {
    padding: 16px;
  }

  .destination-card .card-title {
    font-size: 1.1rem;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  #destinations {
    padding: 50px 0;
  }
}

@media (min-width: 992px) {
  #destinations {
    padding: 80px 0;
  }
}
