/* PARKS & ATTRACTIONS PAGE STYLES */

/* Parks Hero Section */
.parks-hero {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  padding: 50px 20px 70px;
  color: white;
}

.parks-hero-content {
  max-width: 900px;
}

.parks-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.parks-hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* Attraction Categories */
.attraction-categories {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.category-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
}

.category-btn.active {
  background: white;
  color: #11998e;
  border-color: white;
}

/* Parks Section */
.parks-section {
  padding: 50px 20px;
  background: white;
}

.parks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 30px;
}

/* Add mountain/hiking specific styles */
.mountain-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.difficulty-badge {
  position: absolute;
  top: 15px;
  right: 60px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.difficulty-badge.easy {
  background: rgba(40, 167, 69, 0.9);
}

.difficulty-badge.moderate {
  background: rgba(255, 193, 7, 0.9);
}

.difficulty-badge.hard {
  background: rgba(220, 53, 69, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
  .parks-hero h1 {
    font-size: 2rem;
  }

  .parks-hero p {
    font-size: 1rem;
  }

  .parks-grid {
    grid-template-columns: 1fr;
  }
}
