/* Adventure Card Styles */
.adventure-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adventure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.adventure-card h2 {
  margin-bottom: 15px;
  color: #333;
}

.adventure-card-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.adventure-card-detail {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.adventure-card-detail i {
  margin-right: 5px;
  color: #007bff;
}

.difficulty-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.difficulty-easy {
  background-color: #28a745;
  color: white;
}

.difficulty-medium {
  background-color: #ffc107;
  color: #212529;
}

.difficulty-hard {
  background-color: #dc3545;
  color: white;
}

.adventure-card-highlights {
  margin-bottom: 15px;
}

.adventure-card-highlights ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.adventure-card-highlights li {
  margin-bottom: 5px;
}

.adventure-card-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 15px;
}

.adventure-card-cta {
  text-align: center;
}

/* Mobile specific styles */
@media (max-width: 767px) {
  .adventure-card .row > div[class^="col-md-"]:first-child img {
    margin-bottom: 15px; /* Add space below image */
  }
  
  .adventure-card-details {
    flex-direction: column; /* Stack details vertically */
    align-items: flex-start; /* Align items to the start */
  }

  .adventure-card-detail {
    margin-right: 0; /* Remove horizontal margin */
    margin-bottom: 10px; /* Add vertical margin between details */
  }
  
  .adventure-card-detail:last-child {
      margin-bottom: 0; /* Remove margin from last item */
  }
}
