/* =========================
   CampTrailZone Adventures
   ========================= */

.adventures-hero-section {
  background: linear-gradient(120deg, #101418 85%, var(--color-primary) 120%);
  padding: var(--space-10) 0 var(--space-12) 0;
  box-shadow: 0 6px 32px 0 rgba(16,24,28,0.09);
  overflow: hidden;
}
.adventures-hero-content {
  text-align: center;
  gap: var(--space-6);
}
.adventures-hero-img {
  max-width: 540px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-6);
  outline: 2px solid var(--color-primary);
}

.adventure-guides-list {
  grid-template-columns: repeat(auto-fit,minmax(295px,1fr));
}
.adventure-guide-card img {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  height: 180px;
  object-fit: cover;
}
.adventure-guide-content {
  padding: var(--space-4) 0 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex-grow: 1;
}
.guide-meta {
  gap: var(--space-3);
  font-size: var(--text-sm);
  margin-bottom: var(--space-1);
  color: var(--color-gray-100);
}
.difficulty-label {
  display: inline-block;
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  color: #fff;
}
.difficulty-easy { background: var(--color-success); }
.difficulty-medium { background: var(--color-warning); color: #262209; }
.difficulty-hard { background: var(--color-danger); }

/* Explore by Activity */
.activity-grid {
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
}
.activity-card {
  text-align: center;
  min-height: 315px;
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}
.activity-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-3);
}

.seasonal-picks-list {
  grid-template-columns: repeat(auto-fit,minmax(340px,1fr));
}
.seasonal-pick-card img {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  height: 168px;
  object-fit: cover;
  width: 100%;
}
.seasonal-info {
  padding: var(--space-3) var(--space-2);
}
.season-facts {
  margin: var(--space-2) 0 var(--space-3) 0;
  list-style: disc inside;
  color: var(--color-gray-300);
  line-height: 1.62;
  font-size: var(--text-sm);
}

.gear-spotlights-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
}
.gear-card {
  align-items: center;
  text-align: center;
}
.gear-card img {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-2);
  object-fit: cover;
}
.gear-price {
  font-weight: bold;
  color: var(--color-success);
  margin-top: var(--space-2);
}
.gear-rating {
  color: var(--color-warning);
  font-size: var(--text-sm);
  margin: var(--space-1) 0;
}

.route-map-highlights {
  grid-template-columns: repeat(auto-fit,minmax(290px,1fr));
}
.route-map-card {
  padding: 0;
  overflow: hidden;
}
.map-img-container {
  background: #171b1d;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-img-container img {
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}
.route-map-info {
  padding: var(--space-4);
}
.route-meta {
  margin: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-gray-300);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.tips-safety-grid {
  grid-template-columns: repeat(auto-fit, minmax(225px,1fr));
}
.tip-card {
  align-items: center;
  text-align: center;
  gap: var(--space-2);
}
.tip-icon {
  width: 44px;
  height: 44px;
  margin-bottom: var(--space-2);
}

.community-stories-grid {
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
}
.community-story-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.community-story-card img, .contribute-card .contribute-icon {
  width: 100%;
  max-width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.community-story-content {
  padding: var(--space-4);
  font-size: var(--text-base);
}
.contribute-icon {
  background: var(--color-gray-700);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: var(--space-4) auto 0 auto;
  display: block;
}
.contribute-card {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-2);
}

/* Responsive tweaks */
@media (max-width: 750px) {
  .adventures-hero-img {
    max-width: 100%;
    margin-top: var(--space-4);
  }
  .adventure-guides-list, .activity-grid, .seasonal-picks-list, .gear-spotlights-grid,
  .route-map-highlights, .tips-safety-grid, .community-stories-grid {
    grid-template-columns: 1fr;
  }
  .seasonal-info {
    padding: var(--space-3);
  }
}

@media (max-width: 520px) {
  .adventure-guide-card img, .seasonal-pick-card img, .route-map-card .map-img-container img {
    height: 124px;
  }
  .gear-card img {
    width: 100px; height: 100px;
  }
  .tip-icon { width: 36px; height: 36px; }
  .community-story-card img, .contribute-card .contribute-icon {
    height: 92px;
  }
}
