/* ============================
  reset yo self
============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================
   B A S E D
============================ */
body {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  background-color: #f5f3f0;
  color: #222;
  font-size: 18px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* ============================
  unified village layout
============================ */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* ============================
   Header
============================ */
.site-header {
  background: #1a1a1a;
  color: #fff;
  padding: 2.5rem 1rem;
  text-align: center;
  border-bottom: 4px solid #d4a017;
}

.header-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.header-badge-link {
  text-decoration: none;
}

.dept-badge {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #d4a017;
  background: #fff;
  object-fit: cover;
}

.dept-badge-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #d4a017;
  background: #2d5a27;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 2px;
}

.header-text h1 {
  font-size: 2.4rem;
  font-weight: 800;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.tagline {
  font-size: 1.1rem;
  color: #e8d5b5;
}

/* ============================
   Navigate ma capn
============================ */
.main-nav {
  background-color: #2d5a27;
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.25rem 1rem;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding-bottom: 0.25rem;
}

.main-nav a:hover {
  color: #d4a017;
}

.main-nav a.active {
  border-bottom: 3px solid #d4a017;
}

/* ============================
   Content area
============================ */
main section {
  background-color: #fff;
  padding: 1.75rem;
  margin-bottom: 2.5rem;
}

main p {
  margin-bottom: 1.25rem;
}

main section:not(.callout) p {
  max-width: 65ch;
}

/* ============================
   Headings
============================ */
main h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #2d5a27;
  border-bottom: 3px solid #2d5a27;
  padding-bottom: 0.25rem;
  margin-bottom: 1rem;
}

main h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 1.5rem;
}

/* ============================
   Lists
============================ */
main ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

main li {
  list-style: none;
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.6rem;
}

main li::before {
  content: "\25AA";
  position: absolute;
  left: 0;
  color: #2d5a27;
}

/* ============================
   Links
============================ */
main a {
  color: #2d5a27;
  font-weight: 600;
}

main a:hover {
  color: #1e3d1a;
}

/* ============================
   button styles
============================ */
.button {
  display: inline-block;
  background: #2d5a27;
  color: #fff;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  text-decoration: none;
}

.button:hover {
  background: #1e3d1a;
}

/* ============================
   callouts
============================ */
.callout {
  border: 1px solid #ccc;
  padding: 1rem 1.5rem;
}

.callout.notice {
  border-left: 4px solid #d4a017;
  background: #fefcf3;
}

/* ============================
   status badge
============================ */
.status-badge {
  display: inline-block;
  font-weight: 600;
  font-size: 0.85rem;
  color: #666;
}

.status-badge::before {
  content: "\2014\00a0";
}

/* ============================
   quick links
============================ */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.quick-link {
  display: block;
  background: #fff;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #222;
}

.quick-link:hover {
  border-color: #2d5a27;
}

.quick-link strong {
  display: block;
  color: #2d5a27;
  margin-bottom: 0.35rem;
}

.quick-link span {
  font-size: 0.9rem;
  color: #555;
}

/* ============================
   park cards
============================ */
.park-card {
  border-bottom: 1px solid #e5e5e5;
  padding: 1.25rem 0;
}

.park-card:first-child {
  padding-top: 0;
}

.park-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.park-card h3 {
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.park-location {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

/* ============================
   forms
============================ */
form {
  max-width: 640px;
  margin-top: 1.5rem;
}

form label {
  display: block;
  font-weight: 600;
  margin-top: 1.25rem;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
  font-family: inherit;
}

form textarea {
  min-height: 140px;
  resize: vertical;
}

form button {
  margin-top: 1.5rem;
  padding: 0.5rem 1.25rem;
  background-color: #2d5a27;
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

form button:hover {
  background-color: #1e3d1a;
}

/* ============================
   footer
============================ */
.site-footer {
  background-color: #1a1a1a;
  color: #e5e7eb;
  border-top: 6px solid #d4a017;
}

.footer-main {
  padding: 2.5rem 1rem 1.75rem;
  text-align: center;
}

.footer-title {
  font-weight: 700;
}

.footer-sub,
.footer-copy {
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-links {
  margin: 1.5rem 0 1.25rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  color: #d4a017;
  font-weight: 600;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.fiction-disclaimer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.8rem;
  opacity: 0.7;
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================
   responsive
============================ */
@media (max-width: 640px) {
  .header-row {
    flex-direction: column;
  }

  .header-text h1 {
    font-size: 1.8rem;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
  }

  .park-card h3 {
    flex-direction: column;
    align-items: flex-start;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }
}
