:root {
  --charcoal: #233d4d;
  --pumpkin: #fe7f2d;
  --sunglow: #fcca46;
  --olivine: #a1c181;
  --zomp: #619b8a;
  --forest-green: #264d28;
  --forest-green-light: #345c3c;
}

/* Global styles */
body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f3f3f3;
  color: #222;
}

/* Navbar styling */
.navbar {
  background: #222;
  color: #eee;
  width: 100%;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.5em 2em;
}

.nav-logo {
  height: 40px;
  margin-right: 2em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2em;
}

.nav-menu a {
  color: #eee;
  text-decoration: none;
  font-size: 1em;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: #ffd861;
}

.navbar-extra {
  font-size: 0.95em;
  font-weight: 400;
}

/* Hero section styling */
.hero-section {
  position: relative;
  min-height: 430px;
  width: 100vw;
  background: url("/static/hero_bg.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(32,32,32, 0.45);
  padding: 4em 2em;
  border-radius: 14px;
  text-align: center;
  max-width: 600px;
  margin: 3em auto;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  backdrop-filter: blur(2px);
}

.hero-title {
  color: #fff;
  font-size: 2.8em;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 0.5em;
}

.hero-subtitle {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.4em;
  margin-bottom: 1.3em;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  margin-top: 1em;
}

/* Forest green main buttons */
.btn-primary,
.activity-btn {
  display: inline-block;
  padding: 0.8em 2em;
  border: none;
  border-radius: 32px;
  font-size: 1.1em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
  background: var(--forest-green);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(38,77,40,0.12);
  margin-top: 0.7em;
}
.btn-primary *,
.activity-btn * {
  color: #fff !important;
}

.btn-primary:hover,
.activity-btn:hover {
  background: var(--forest-green-light);
  color: var(--sunglow) !important;
}
.btn-primary:hover *,
.activity-btn:hover * {
  color: var(--sunglow) !important;
}

/* Stylish secondary button */
.btn-secondary {
  display: inline-block;
  padding: 0.8em 2em;
  border-radius: 32px;
  font-size: 1.1em;
  cursor: pointer;
  text-decoration: none;
  background: #fff;
  color: var(--forest-green);
  font-weight: 600;
  border: 2px solid var(--forest-green);
  transition: background 0.25s, color 0.25s, border 0.25s;
  margin-top: 0.7em;
  box-shadow: 0 2px 10px rgba(38,77,40,0.09);
}
.btn-secondary:hover {
  background: var(--sunglow);
  color: #222;
  border-color: var(--sunglow);
}

/* Main section */
.welcome-section {
  max-width: 700px;
  margin: 2.3em auto;
  text-align: center;
  padding: 1.5em 1em;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 7px 24px 0 rgba(0,0,0,0.07);
}

.feature-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
}
.feature-icons div {
  text-align: center;
}

.feature-icons img {
  height: 40px;
  margin-bottom: 0.3em;
}

/* Feature cards */
.card-section {
  display: flex;
  justify-content: center;
  gap: 2em;
  padding: 3em 1em;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.08);
  max-width: 260px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 1em;
}

.feature-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  margin-bottom: 0.5em;
}

.feature-card h3 {
  font-size: 1.22em;
  margin-top: 0.5em;
  color: #2c4034;
}

.feature-card p {
  margin-top: 0.3em;
  color: #666;
}

/* Location section cards */
.location-section {
  background: #fff;
  border-radius: 12px;
  max-width: 400px;
  margin: 2em auto 3em auto;
  padding: 1.3em 1em;
  text-align: center;
  box-shadow: 0 4px 14px 0 rgba(0,0,0,0.07);
}

.location-display p {
  margin: 0.4em 0;
}

/* Lines 248-333 are the activities page styling */
.activities-header {
  max-width: 700px;
  margin: 2em auto 1em auto;
  text-align: center;
}

.activities-header h1,
.activities-header h2 {
  margin: 0.2em 0;
  color: var(--forest-green);
}

.activities-header h1 {
  font-size: 2.2em;
  font-weight: 700;
}

.activities-header h2 {
  font-size: 1.4em;
  font-weight: 500;
  color: var(--charcoal);
}

/* Activities list styles */
.activities-list {
  list-style: none;
  max-width: 700px;
  margin: 2em auto 4em auto;
  padding: 0;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 7px 24px 0 rgba(0,0,0,0.07);
}

.activity-item {
  border-bottom: 1px solid #ddd;
  padding: 1.3em 1.5em;
  transition: background 0.3s ease;
  text-align: left;
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-item strong {
  font-size: 1.2em;
  color: var(--forest-green);
}

.activity-item span {
  color: #444;
  display: block;
  margin-top: 0.3em;
  margin-bottom: 0.6em;
  font-size: 1em;
}

.activity-item em {
  color: var(--charcoal);
  font-style: normal;
  font-weight: 600;
  font-size: 0.95em;
}

.activity-item small {
  color: #999;
  font-size: 0.85em;
}

.activity-item:hover {
  background: var(--olivine);
  cursor: pointer;
  color: var(--charcoal);
}

/* Optionally make activity list responsive */
@media (max-width: 720px) {
  .activities-list {
    margin: 1.5em 1em 3em 1em;
  }
  .activity-item {
    padding: 1em;
  }
}

/* Weather section styling */
.weather-section {
  margin: 2rem auto;
  max-width: 700px;
  padding: 0 1rem;
}

.weather-container {
  background: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 7px 24px 0 rgba(0,0,0,0.07);
}

.current-weather {
  margin-bottom: 2rem;
}

.current-weather h3,
.forecast-weather h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--forest-green);
  font-size: 1.4rem;
}

#current-weather-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
}

.weather-icon {
  font-size: 4rem;
}

.weather-details {
  flex: 1;
}

.weather-temp {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--charcoal);
}

.weather-description {
  font-size: 1.2rem;
  color: #666;
  text-transform: capitalize;
  margin: 0.5rem 0;
}

.weather-extra {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: #666;
  margin-top: 0.5rem;
}

.forecast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.forecast-day {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  transition: background 0.3s ease;
}

.forecast-day:hover {
  background: var(--olivine);
}

.forecast-date {
  font-weight: bold;
  color: var(--forest-green);
  margin-bottom: 0.5rem;
}

.forecast-icon {
  font-size: 2.5rem;
  margin: 0.5rem 0;
}

.forecast-temp {
  font-size: 1.1rem;
  color: var(--charcoal);
}

.forecast-desc {
  font-size: 0.85rem;
  color: #666;
  text-transform: capitalize;
  margin-top: 0.5rem;
}

.loading {
  text-align: center;
  color: #666;
  padding: 1rem;
}

@media (max-width: 768px) {
  .forecast-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  #current-weather-content {
    flex-direction: column;
    text-align: center;
  }

  .weather-extra {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 1.3em 0;
  color: #888;
  font-size: 1em;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.3em 0;
  color: #888;
  font-size: 1em;
}


/* new styles for map */
/* Map container styling */
#map-container {
  display: flex;
  justify-content: center;
  margin: 2em 0;
}

#map {
  height: 400px;
  width: 90%;
  max-width: 700px;
  border-radius: 15px;
  background-color: var(--olivine);
  box-shadow: 0 7px 24px 0 rgba(0, 0, 0, 0.1);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1em;
}

.filter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2em 1em;
}

.filter-form label {
  font-weight: 600;
  margin-right: 0.3em;
}

.filter-form input[type="number"],
.filter-form select {
  padding: 0.4em 0.6em;
  border: 1px solid #d0d4d7;
  border-radius: 6px;
  min-width: 110px;
  font-size: 1em;
}

.filter-form input[type="checkbox"] {
  margin-left: 0.3em;
  transform: scale(1.15);
  accent-color: #007bff;
}

.filter-form .btn-primary {
  padding: 0.45em 1.2em;
  margin-left: 1em;
  background: #007bff;
  border-radius: 6px;
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.18s;
}

.filter-form .btn-primary:hover {
  background: #005ecb;
}

.filter-form .btn-clear {
  margin-left: 0.7em;
  background: none;
  border: none;
  color: #d63c3c;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  font-size: 1em;
}

.filter-center-wrapper {
  width: 100%;
  margin-top: 1.5em;
}


.filter-section {
  background: #f7f9fa;
  padding: 1em 1.5em;
  border-radius: 12px;
  margin-bottom: 2em;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  max-width: 700px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}



@media (max-width: 600px) {
  .filter-form {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8em 0;
  }
  .filter-form label {
    margin-bottom: 0.11em;
  }
}

