.hero h1 {
  text-align: center;
}

.adventures-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.difficulty-row {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.difficulty-label {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  color: #ffffff;
}

.filter-options {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.filter-options button {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.filter-options button:hover {
  background-color: #ffffff;
  color: #1c1c1c;
}

.filter-options button.active {
  background-color: #ffffff;
  color: #1c1c1c;
}

.adventures-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 40px;
}

.adventure-card {
  background-color: #ffffff;
  border: 4px solid #ffffff;
  border-radius: 0;
  padding: 0.5rem 0.75rem;
  width: 280px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.adventure-card:hover {
  box-shadow: 0 12px 24px rgba(0,0,0,0.6);
}

.adventure-card img {
  width: 100%;
  height: auto;
  //margin-bottom: 1rem;
  transition: filter 0.3s ease;
  filter: grayscale(100%);
}

.adventure-card:hover img {
  filter: grayscale(0%);
}

.adventure-card h3 {
  padding-top: 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  line-height: 1.4rem;
  margin: 0 0 0.25rem 0;
  color: #333333;
}

.adventure-meta {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.9rem;
  color: #555555;
  margin-bottom: 0.75rem;
}
