/* chapter.css — Reading template for prose chapters
   Light warm parchment theme to match the majority of archive pages.
   Optimized for long reading sessions. */


/* ===== Base ===== */

body.chapter {
  background-color: #d4cfc6;
  color: #2a2a2a;
  font-family: 'Noto Serif', Georgia, 'Times New Roman', serif;
  line-height: 1.85;
  margin: 0;
  padding: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(180, 170, 150, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(190, 180, 160, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(175, 165, 145, 0.12) 0%, transparent 50%);
  background-attachment: fixed;
}


/* ===== Selection highlight ===== */

body.chapter ::selection {
  background: rgba(196, 163, 90, 0.3);
  color: #1a1a1a;
}


/* ===== Container ===== */

.chapter-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}


/* ===== Chapter header ===== */

.chapter-header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(120, 110, 95, 0.2);
}

.chapter-number {
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 0.8rem;
  color: rgba(120, 110, 95, 0.55);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.chapter-title {
  font-family: 'Noto Serif', Georgia, serif;
  font-weight: 700;
  font-size: 2rem;
  color: #1a1a1a;
  letter-spacing: 0.03em;
  margin: 0;
}


/* ===== Prose body ===== */

.chapter-body p {
  font-size: 1.05rem;
  margin-bottom: 1.4em;
  text-indent: 0;
}

/* Inner thoughts / emphasis */
.chapter-body em {
  color: #4a4540;
}


/* ===== Scene breaks ===== */

.scene-break {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(120, 110, 95, 0.4), transparent);
  margin: 2.5em auto;
  border: none;
}


/* ===== Timestamp / location markers ===== */

.timestamp {
  font-style: italic;
  color: #6a6560;
  text-align: center;
  font-size: 0.95rem;
  margin: 2em 0;
}


/* ===== Author notes ===== */

.author-note {
  font-size: 0.9rem;
  color: #6a6560;
  border-left: 2px solid rgba(120, 110, 95, 0.3);
  padding-left: 16px;
  margin: 2em 0;
  font-style: italic;
}


/* ===== Mobile responsive ===== */

@media (max-width: 480px) {
  .chapter-container {
    padding: 60px 18px 100px;
  }

  .chapter-title {
    font-size: 1.6rem;
  }

  .chapter-body p {
    font-size: 1rem;
  }
}
