/* Basic page layout and colours */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #05060b;
  color: #f5f5f5;
}

/* Constrain content width, center on page */
header, main, footer {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* Header and footer separators */
header {
  border-bottom: 1px solid #333;
}

footer {
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 2rem;
}

/* Headings with a subtle cyberpunk feel */
h1, h2, h3 {
  font-family: "Courier New", monospace;
  color: #8afcff; /* soft neon cyan */
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

h2 {
  margin-top: 2rem;
}

/* Hero image + caption (smaller, centered) */
figure.hero {
  margin: 1.25rem auto;
  padding: 0.5rem;
  background: #111219;
  border-radius: 8px;
  border: 1px solid #333;
  max-width: 480px;   /* smaller than text column */
}

figure.hero img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

figure.hero figcaption {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 0.4rem;
  text-align: center;
}

/* Additional story photos */
figure.story-photo {
  margin: 1.5rem auto;
  padding: 0.5rem;
  background: #111219;
  border-radius: 8px;
  border: 1px solid #333;
  max-width: 480px;
}

figure.story-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

figure.story-photo figcaption {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 0.4rem;
  text-align: center;
}

/* Links */
a {
  color: #ffa94d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Tagline and disclaimer styling */
.tagline {
  font-style: italic;
  color: #ccc;
  margin-top: 0.25rem;
}

.disclaimer {
  background: #20101a;
  border-left: 4px solid #ff4d6a;
  padding: 0.75rem 1rem;
  margin-top: 0.75rem;
}

/* Section styling: subtle left border for structure */
section {
  margin-top: 2rem;
  border-left: 2px solid #333;
  padding-left: 1rem;
}

/* Lists */
ul, ol {
  margin-left: 1.25rem;
}

/* Checklist lists: no extra bullets, just checkboxes */
ul.checklist {
  list-style: none;       /* remove bullets */
  padding-left: 0;        /* align with left border */
  margin-left: 0;
}

ul.checklist li {
  margin-bottom: 0.5rem;
}

ul.checklist input[type="checkbox"] {
  margin-right: 0.4rem;
}

/* Make small screens readable */
@media (max-width: 600px) {
  header, main, footer {
    padding: 1rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  figure.hero,
  figure.story-photo {
    max-width: 100%;
  }
}