/* Trail Map Section Styles */

.trail-map-section {
  background: #f8e8cf;
  border: none !important;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1000px;
  box-sizing: border-box;
  width: 100%;
}

.trail-map-section h2 {
  font-family: 'Antonio', sans-serif;
  font-size: 2rem;
  color: #234c49;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.05em;
  text-rendering: optimizeLegibility;
}

.trail-map-container {
  background: #fff;
  border: none !important;
  border-radius: 8px;
  overflow: auto;
  box-shadow: none;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trail-map-image {
  width: 100%;
  height: auto;
  display: block;
  background: #f5f5f5;
}

.trail-map-image {
  width: 100%;
  height: auto;
  display: block;
  border: none !important;
}

.map-download-btn {
  display: inline-block;
  background: #234c49;
  color: #f8e8cf;
  padding: 0.8rem 1.6rem;
  border: 2px solid #234c49;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.map-download-btn:hover {
  background: #1a3835;
  border-color: #1a3835;
  box-shadow: 0 4px 12px rgba(35, 76, 73, 0.3);
}

.map-download-btn:active {
  transform: scale(0.98);
}

.map-info {
  color: #234c49;
  font-size: 0.9rem;
  margin-top: 1rem;
  padding: 1rem;
  background: transparent;
  border-left: 4px solid #d0b88f;
  border-radius: 4px;
}

.map-info strong {
  color: #234c49;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 900px) {
  .trail-map-section {
    padding: 1.5rem 0;
  }

  .trail-map-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }

  .trail-map-pdf {
    height: 450px;
  }
}

@media (max-width: 600px) {
  .trail-map-section {
    padding: 1rem 0;
    margin: 1.5rem 0;
  }

  .trail-map-section h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .trail-map-pdf {
    height: 350px;
    overflow-y: scroll;
  }

  .map-download-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    width: 100%;
    box-sizing: border-box;
  }

  .map-info {
    font-size: 0.85rem;
  }
}
