/* Trail Information Section - Simplified List Style */

.trail-info-section {
  background-color: #f8e8cf;
  border: 2px solid #d0b88f;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1000px;
  box-shadow: 0 2px 8px rgba(35, 76, 73, 0.1);
  box-sizing: border-box;
}

.trail-info-section h3 {
  color: #234c49;
  font-family: 'Antonio', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.trail-info-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trail-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-bottom: 1px solid rgba(208, 184, 143, 0.3);
  padding-bottom: 1rem;
}

.trail-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.trail-info-label {
  color: #234c49;
  font-family: 'Antonio', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  min-width: 120px;
  flex-shrink: 0;
}

.trail-info-value {
  color: #234c49;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

/* Special styling for multi-line values */
.trail-info-value ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trail-info-value li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.trail-info-value li:last-child {
  margin-bottom: 0;
}

/* Parking link styling */
.parking-link {
  color: #234c49;
  text-decoration: none;
  border-bottom: 2px solid #d0b88f;
  transition: color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.parking-link:hover {
  color: #1a3531;
  border-bottom-color: #234c49;
}

/* Badge styling for simple values */
.badge {
  display: inline-block;
  background-color: #d0b88f;
  color: #234c49;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 0.5rem;
}

.badge.yes {
  background-color: #2d7a3e;
  color: #f8e8cf;
}

.badge.no {
  background-color: #666;
  color: #f8e8cf;
}

.badge.partial {
  background-color: #d0b88f;
  color: #234c49;
  font-weight: 600;
}

/* Tablet screens */
@media (max-width: 900px) {
  .trail-info-section {
    padding: 1.5rem;
  }

  .trail-info-label {
    font-size: 0.85rem;
  }

  .trail-info-value {
    font-size: 0.95rem;
  }
}

/* Mobile screens */
@media (max-width: 600px) {
  .trail-info-section {
    padding: 1rem;
    margin: 1rem 0;
    border-width: 1px;
  }

  .trail-info-item {
    flex-direction: column;
    gap: 0.3rem;
    padding-bottom: 0.8rem;
  }

  .trail-info-label {
    font-size: 0.8rem;
    min-width: auto;
  }

  .trail-info-value {
    font-size: 0.9rem;
  }

  .trail-info-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}
