/* ---------------------------
   RESET AND BASE STYLES
--------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #000;
  color: #00C800; /* classic terminal green */
  font-family: 'IBM Plex Mono', monospace;
  line-height: 1.6;
}

/* ---------------------------
   LAYOUT CONTAINERS
--------------------------- */

.site-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

/* ---------------------------
   HEADER + BRANDING
--------------------------- */

header,
footer,
.bottom-of-site {
  text-align: center;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.site-branding {
  text-align: left;
  flex: 1 1 auto;
}

.site-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #00C800;
  margin: 0;
}

/* ------------------------------
   NAVIGATION
--------------------------- */

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.site-nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
}

/* Hide nav links on small screens for future hamburger menu */
@media (max-width: 700px) {
  .site-nav ul {
    display: none;
  }
}

/* ---------------------------
   ASCII DIVIDER
--------------------------- */

.ascii-hr {
  border: none;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    #888,
    #888 6px,
    transparent 6px,
    transparent 12px
  );
  margin: 1rem 0;
}

/* ---------------------------
   ARTICLE STYLES
--------------------------- */

.article {
  background: #111;
  padding: 1rem;
}

.article-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #00C800;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.25rem; /* full line break feel */
}

/* ---------------------------
   LISTS (unstyled but indented)
--------------------------- */

.article ul li::before {
  content: "- ";
  color: #00C800;
}

.article ul {
  list-style: none;
  padding-left: 2rem;
  margin-bottom: 1.25rem;
}

/* ---------------------------
   FOOTER + BOTTOM SECTION
--------------------------- */

footer,
.bottom-of-site {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #00C800;
}

/* ---------------------------
   RESPONSIVE PADDING
--------------------------- */

@media (max-width: 600px) {
  .site-wrapper {
    padding: 1rem 0.5rem;
  }
}