/* Dynamic Locations Styles */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.filter-buttons .btn {
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(197, 13, 39, 0.2);
}

.filter-buttons .btn.active {
  background-color: #c50d27;
  color: white;
  border-color: #c50d27;
}

.location-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.location-card .imgBx {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.location-card .imgBx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.location-card:hover .imgBx img {
  transform: scale(1.1);
}

.location-card .category-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(197, 13, 39, 0.9);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location-card .card-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.location-card h5 {
  color: #c50d27;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.location-card .location-info {
  flex-grow: 1;
  margin-bottom: 20px;
}

.location-card .location-info p {
  margin-bottom: 8px;
  color: #555;
  line-height: 1.6;
}

.location-card .location-info strong {
  color: #333;
  display: inline-block;
  min-width: 50px;
}

.location-card .location-info .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.location-card .location-info .info-item i {
  color: #c50d27;
  margin-right: 10px;
  margin-top: 3px;
  min-width: 20px;
}

.location-card .readmore {
  display: inline-block;
  background: #c50d27;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.location-card .readmore:hover {
  background: #a00b21;
  transform: translateX(5px);
  color: white;
}

.location-card .readmore i {
  margin-left: 8px;
}

@media (max-width: 768px) {
  .filter-buttons {
    flex-direction: column;
  }
  
  .filter-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}
