/* Fade animation */

.fade-card {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s ease;
}

.fade-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.spot-card img {
  height: 200px;
  object-fit: cover;
}

.spot-card {
  transition: .3s;
}

.spot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.section-title {
  margin-top: 60px;
  margin-bottom: 25px;
  font-weight: 800;
  text-transform: uppercase;
  color: #222;
}

.filter-btn.active {
  background-color: #007bff;
  color: white;
}

.filter-btn-group .btn {
  margin: 0 0.25rem 0.5rem;
}

