/* ── Reset & Base ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: #222;
  background: #f8f7f4;
  line-height: 1.75;
}

a { color: #2d6a4f; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Navbar ─────────────────────────────────────────────────────────── */
header {
  background: #1b3d2f;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
}

.nav-brand {
  font-size: 1.15rem;
  font-weight: bold;
  color: #d4edda;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.nav-brand span {
  color: #74c69d;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}

nav ul li {
  position: relative;
}

nav ul li > a,
nav ul li > span {
  display: block;
  padding: 8px 18px;
  color: #c8e6c9;
  font-size: 0.95rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}

nav ul li > a:hover,
nav ul li > span:hover,
nav ul li.active > a {
  background: #2d6a4f;
  color: #fff;
  text-decoration: none;
}

/* Community dropdown trigger */
.has-dropdown > span::after {
  content: ' ▾';
  font-size: 0.75em;
  opacity: 0.7;
}

/* Dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid #d0e8d8;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  min-width: 200px;
  overflow: hidden;
  z-index: 200;
}

.has-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 11px 20px;
  color: #1b3d2f;
  font-size: 0.92rem;
  border-bottom: 1px solid #eaf4ee;
  transition: background 0.15s;
}

.dropdown-menu a:last-child { border-bottom: none; }

.dropdown-menu a:hover {
  background: #e8f5ee;
  text-decoration: none;
}

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #1b3d2f 0%, #2d6a4f 55%, #52b788 100%);
  color: #fff;
  text-align: center;
  padding: 96px 24px 80px;
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.88;
  max-width: 600px;
  margin: 0 auto 32px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 6px 20px;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ── Page Header (non-home) ─────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, #1b3d2f 0%, #2d6a4f 100%);
  color: #fff;
  padding: 56px 24px 48px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.page-header p {
  opacity: 0.82;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Main Content ───────────────────────────────────────────────────── */
main {
  max-width: 860px;
  margin: 0 auto;
  padding: 52px 24px 80px;
}

/* ── Cards / Feature Grid ───────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.feature-card {
  background: #fff;
  border: 1px solid #dceedd;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.feature-card h3 {
  color: #1b3d2f;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.feature-card p {
  color: #555;
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ── Sections ───────────────────────────────────────────────────────── */
section {
  margin-bottom: 44px;
}

section h2 {
  font-size: 1.5rem;
  color: #1b3d2f;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #b7e4c7;
}

section h3 {
  font-size: 1.1rem;
  color: #2d6a4f;
  margin: 18px 0 6px;
}

section p {
  margin-bottom: 12px;
  color: #333;
}

section ul {
  padding-left: 22px;
  margin-bottom: 12px;
}

section ul li {
  margin-bottom: 6px;
  color: #444;
}

/* ── Info Box ───────────────────────────────────────────────────────── */
.info-box {
  background: #eaf7ee;
  border: 1px solid #b7e4c7;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 24px 0;
}

.info-box h3 {
  color: #1b3d2f;
  margin-bottom: 10px;
  font-size: 1rem;
}

.info-box p, .info-box ul { font-size: 0.95rem; }

/* ── Contact Cards ──────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.contact-card {
  background: #fff;
  border: 1px solid #dceedd;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-card h3 {
  color: #1b3d2f;
  margin-bottom: 10px;
  font-size: 1rem;
  border-bottom: 1px solid #eaf4ee;
  padding-bottom: 8px;
}

.contact-card p {
  font-size: 0.92rem;
  color: #444;
  margin-bottom: 6px;
}

.contact-card a {
  color: #2d6a4f;
  word-break: break-all;
}

/* ── Map Embed ──────────────────────────────────────────────────────── */
.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dceedd;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin: 24px 0;
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ── Quote / Highlight ──────────────────────────────────────────────── */
.highlight {
  border-left: 4px solid #52b788;
  padding: 14px 20px;
  background: #f2fbf5;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-style: italic;
  color: #2d4a3e;
}

/* ── CTA Button ─────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: #2d6a4f;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.97rem;
  transition: background 0.18s;
  margin-top: 8px;
}

.btn:hover {
  background: #1b3d2f;
  text-decoration: none;
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid #2d6a4f;
  color: #2d6a4f;
  margin-left: 12px;
}

.btn-outline:hover {
  background: #2d6a4f;
  color: #fff;
}

/* ── Footer ─────────────────────────────────────────────────────────── */
footer {
  background: #1b3d2f;
  color: #a8d8bc;
  text-align: center;
  padding: 32px 24px;
  font-size: 0.88rem;
}

footer a { color: #74c69d; }
footer a:hover { color: #fff; }

/* ── Park Photos ─────────────────────────────────────────────────────── */
.park-photo {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin: 28px 0 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  line-height: 0;
}

.park-photo img {
  width: 100%;
  height: auto;
  max-height: 420px;
  display: block;
  object-fit: cover;
}

.photo-credit {
  font-size: 0.72rem;
  color: #999;
  text-align: right;
  margin-bottom: 20px;
}

.photo-credit a { color: #aaa; }

/* ── Coming Soon ─────────────────────────────────────────────────────── */
.coming-soon-box {
  text-align: center;
  padding: 60px 24px;
  background: #f0f9f4;
  border: 2px dashed #b7e4c7;
  border-radius: 16px;
  margin: 32px 0;
}

.coming-soon-box .cs-icon { font-size: 3rem; margin-bottom: 16px; }
.coming-soon-box h2 { color: #1b3d2f; margin-bottom: 10px; border: none; }
.coming-soon-box p { color: #555; max-width: 480px; margin: 0 auto; }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 680px) {
  .hero h1 { font-size: 2.1rem; }
  .nav-inner { flex-direction: column; height: auto; padding: 12px 16px; gap: 8px; }
  nav ul { flex-wrap: wrap; justify-content: center; gap: 2px; }
  .dropdown-menu { left: 50%; transform: translateX(-50%); }
}
