.destination-card {
  position: relative;
  width: 402px;
  height: 225px;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease-in-out;
}



.destination-card .destination-destination {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}
.destination-card .destination-departure {
  position: absolute;
  bottom: 40px;
  left: 10px;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}

.destination-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

@media (max-width: 768px) {
  .destination-card {
    width: 100%;
  }
}