.section-title {
  font-size: 55px;
  font-weight: 900;
  text-align: center;
  margin-top: 40px;
  color: #d62828;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 40px;
}

.adventure-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 0 20px;
}

.adventure-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.2);
  transition: 0.35s ease;
}

.adventure-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.adventure-image {
  height: 200px;
  overflow: hidden;
}

.adventure-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.adventure-card:hover img {
  transform: scale(1.08);
}

.adventure-content {
  padding: 18px 20px;
}

.adventure-location {
  color: #d62828;
  font-weight: bold;
  font-size: 14px;
}

.adventure-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 5px;
}
