/* ---------------------------------------------------
   ARCHIVE ROOM — MISSOURIARTIST
   A quiet ledger of retired works & stories
--------------------------------------------------- */

/* Background Atmosphere */
body {
  margin: 0;
  padding: 0;
  font-family: "Georgia", serif;
  background: url("../images/fog-texture.jpg") center/cover fixed;
  color: #f5f2e9;
  line-height: 1.6;

  /* OPTION 1 — Darken the fog for readability */
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: brightness(0.7);
}

/* Title Block */
.title-block {
  text-align: center;
  padding: 80px 20px 40px;
}

.title-block h1 {
  font-size: 2.6rem;
  letter-spacing: 1px;
  color: #f5f2e9;
  margin-bottom: 10px;
}

.title-block .subtitle {
  font-size: 1.2rem;
  color: #d8c9a7;
  opacity: 0.9;
}

/* Archive List Layout */
.archive-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 20px 80px;
}

/* Each Entry */
.archive-entry {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  padding: 20px;
  background: rgba(20, 20, 20, 0.55);
  border: 1px solid rgba(200, 169, 106, 0.25);
  border-radius: 8px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.archive-entry:hover {
  background: rgba(20, 20, 20, 0.75);
  border-color: rgba(200, 169, 106, 0.55);
}

/* Thumbnail */
.archive-thumb {
  width: 160px;
  height: auto;
  border-radius: 4px;
  border: 1px solid rgba(200, 169, 106, 0.4);
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

/* Info Block */
.archive-info h2 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  color: #f5f2e9;
}

.archive-info .summary {
  margin-bottom: 12px;
  color: #d8c9a7;
  font-size: 1rem;
}

/* Links */
.archive-link {
  display: inline-block;
  margin-right: 15px;
  padding: 6px 14px;
  border: 1px solid #c8a96a;
  border-radius: 4px;
  color: #c8a96a;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.archive-link:hover {
  background: #c8a96a;
  color: #1a1a1a;
}

/* Curator Note */
.curator-note {
  text-align: center;
  padding: 60px 20px;
  font-size: 1rem;
  color: #d8c9a7;
  opacity: 0.85;
}

.curator-note p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Mobile Layout */
@media (max-width: 700px) {
  .archive-entry {
    flex-direction: column;
    text-align: center;
  }

  .archive-thumb {
    width: 70%;
    margin: 0 auto 15px;
  }
}

/* Optional overlay (you already had this — safe to keep) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  z-index: -1;
}
/* Ensure footer is centered on the Archive page */
.site-footer {
  text-align: center;
  width: 100%;
  margin: 40px auto 20px;
  color: #f5f2e9;
}

.site-footer p {
  margin: 4px 0;
}