/* OBX Rec — intentionally minimal. Structure + wireframe only; the real design
   (color, type, branding, motion) comes in a later pass. Everything here is
   layout/readability, not visual design. */
:root {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}
body { margin: 0; }

.container {
  max-width: 70ch;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

/* --- Header + navigation bar (layout only) --- */
.site-header { border-bottom: 1px solid currentColor; }
.wordmark { text-decoration: none; font-size: 1.25rem; }
.tagline { margin: 0.25rem 0 0.75rem; }

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.primary-nav [aria-current="page"] { font-weight: 700; }

/* Main content: roomy line length for readability. */
main.container { max-width: 70ch; }
.lede { font-size: 1.1rem; }
section { margin: 2rem 0; }

/* Labeled empty regions for things wired up later (maps, calendars, embeds). */
.placeholder-box {
  border: 2px dashed currentColor;
  padding: 2rem;
  text-align: center;
}

/* Simple readable table for the recreation map list. */
table { border-collapse: collapse; width: 100%; }
th, td { border: 1px solid currentColor; padding: 0.4rem 0.6rem; text-align: left; vertical-align: top; }

/* --- Footer --- */
.site-footer { border-top: 1px solid currentColor; margin-top: 3rem; }
.site-footer nav ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }

/* Accessibility: visible-on-focus skip link. */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { position: static; display: inline-block; }
