/* Base Styles */
body {
  background-color: #f5f7f5;
  color: #333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  background-color: #2c5738;
  color: white;
  padding: 2rem;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: 2.5em;
}

h2 {
  text-align: center;
  color: #2c5738;
  margin: 2rem 0;
}

/* Main Content */
main {
  flex: 1 0 auto;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Park Information */
.park {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
  display: flex;
}

.park img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.info {
  padding: 20px;
  flex: 1;
}

h3 {
  color: #2c5738;
  margin: 0 0 10px 0;
  font-size: 1.8em;
}

.location {
  color: #666;
  font-style: italic;
  margin: 0 0 15px 0;
}

.description {
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Park Features */
.features {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.features h4 {
  margin: 0 0 10px 0;
  color: #2c5738;
}

.features ul {
  margin: 0;
  padding-left: 20px;
  columns: 2;
}

.features li {
  margin-bottom: 5px;
}

.details {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 15px;
  color: #666;
}

/* Footer */
footer {
  flex-shrink: 0;
  text-align: center;
  padding: 20px;
  color: #2c5738;
  font-size: 0.9em;
  border-top: 1px solid #2c5738;
  background-color: #f5f7f5;
}

footer a {
  color: #2c5738;
  text-decoration: none;
  margin-left: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #1a3522;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .park {
    flex-direction: column;
  }

  .park img {
    width: 100%;
    height: 200px;
  }

  .features ul {
    columns: 1;
  }

  .details {
    flex-direction: column;
    text-align: center;
  }
}
