/* Sibyl Project Archive - Stylesheet */

:root {
  --bg-color: #f5f5f5;
  --text-color: #1a1a1a;
  --text-muted: #666;
  --link-color: #1a4480;
  --border-color: #ccc;
  --accent-bg: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.7;
  min-height: 100vh;
}

/* Layout */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: normal;
  line-height: 1.3;
}

h1 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.25rem;
}

/* Links */
a {
  color: var(--link-color);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

/* Navigation */
nav {
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

nav a {
  margin-right: 1.5rem;
  text-decoration: none;
  font-size: 0.9rem;
}

nav a:hover {
  text-decoration: underline;
}

/* Header */
header {
  margin-bottom: 2rem;
}

.site-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* Blockquotes */
blockquote {
  border-left: 3px solid var(--border-color);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-style: italic;
}

blockquote.intro {
  font-style: normal;
  color: var(--text-color);
}

/* Meta information */
.meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 2rem 0;
}

.meta p {
  margin-bottom: 0.35rem;
}

/* Footer */
footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Document list */
.doc-list {
  list-style: none;
}

.doc-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.doc-list li:last-child {
  border-bottom: none;
}

.doc-code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.doc-title {
  display: block;
  margin: 0.25rem 0;
}

.doc-status {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.doc-status.declassified {
  color: #2e7d32;
}

.doc-status.partial {
  color: #e65100;
}

.doc-status.pending {
  color: #757575;
}

/* Timeline */
.timeline {
  list-style: none;
}

.timeline li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-color);
}

.timeline li:last-child {
  border-bottom: none;
}

.timeline-year {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: bold;
  display: inline;
}

/* Output records */
.output-entry {
  background: var(--accent-bg);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.output-header {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.output-content {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  font-style: italic;
  margin: 1rem 0;
  padding: 1rem;
  background: var(--bg-color);
}

.output-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

/* Document pages */
.document {
  background: var(--accent-bg);
  border: 1px solid var(--border-color);
  padding: 2rem;
  margin: 1.5rem 0;
}

.document-header {
  border-bottom: 2px solid var(--text-color);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.classification {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #c62828;
  text-transform: uppercase;
  border: 2px solid #c62828;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  margin-bottom: 1rem;
}

.classification.declassified {
  color: var(--text-muted);
  border-color: var(--text-muted);
  text-decoration: line-through;
}

.document-meta {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.redacted {
  background-color: #1a1a1a;
  color: #1a1a1a;
  padding: 0 0.5rem;
  user-select: none;
}

.document-body {
  margin-top: 1.5rem;
}

.document-body p {
  text-align: justify;
}

.signature-block {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

/* FAQ */
.faq-item {
  margin-bottom: 2rem;
}

.faq-item strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: Georgia, 'Times New Roman', serif;
}

/* Disclaimer */
.disclaimer {
  background: var(--accent-bg);
  border-left: 3px solid var(--border-color);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

/* Easter egg page */
.anomaly {
  background: var(--accent-bg);
  border: 1px dashed var(--border-color);
  padding: 2rem;
  margin: 2rem 0;
}

.anomaly-note {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 600px) {
  .container {
    padding: 2rem 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  nav a {
    display: inline-block;
    margin-bottom: 0.5rem;
  }

  .document {
    padding: 1.25rem;
  }
}
