/* ===========================================
   theme-innocent.css
   "The Verona Gazette" — vintage gossip-tabloid look.
   Cream paper, serif headlines, rose/red accents,
   halftone texture. Used for Act 1 and Act 2.
   =========================================== */

:root {
  --paper: #f4ecd8;
  --ink: #1a1a1a;
  --accent-red: #9c1d1d;
  --accent-rose: #c46b6b;
  --rule: #2b2b2b;
}

body.theme-innocent {
  background-color: var(--paper);
  background-image:
    radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 4px 4px;
  color: var(--ink);
}

/* ---- Masthead ---- */
.masthead {
  text-align: center;
  border-bottom: 4px double var(--rule);
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.masthead .kicker {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-red);
}

.masthead h1 {
  font-family: 'Times New Roman', serif;
  font-size: 3.4rem;
  letter-spacing: 2px;
  margin: 4px 0;
}

.masthead .subtitle {
  font-style: italic;
  font-size: 0.95rem;
}

.masthead .dateline {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  border-top: 1px solid var(--rule);
  padding-top: 6px;
}

/* ---- Layout grid: main story + sidebar ---- */
.gazette-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 30px;
  margin-top: 10px;
}

/* ---- Headline / lead story ---- */
.headline {
  font-size: 2.1rem;
  line-height: 1.15;
  margin-bottom: 6px;
}

.headline .scandal {
  color: var(--accent-red);
}

.byline {
  font-style: italic;
  font-size: 0.85rem;
  margin-bottom: 16px;
  color: #444;
}

.lead-photo {
  width: 100%;
  filter: sepia(0.35) contrast(1.05);
  border: 1px solid var(--rule);
  margin-bottom: 6px;
}

.caption {
  font-size: 0.8rem;
  font-style: italic;
  color: #444;
  margin-bottom: 18px;
}

.story-body {
  columns: 2;
  column-gap: 26px;
  font-size: 0.98rem;
  text-align: justify;
}

.story-body p {
  margin-bottom: 12px;
}

.pull-quote {
  break-inside: avoid;
  border-top: 2px solid var(--accent-red);
  border-bottom: 2px solid var(--accent-red);
  padding: 10px 0;
  margin: 14px 0;
  font-size: 1.15rem;
  font-style: italic;
  text-align: center;
  color: var(--accent-red);
}

/* ---- Sidebar: society notes ---- */
.sidebar {
  border-left: 1px solid var(--rule);
  padding-left: 20px;
}

.sidebar h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 6px;
  margin-bottom: 10px;
}

.gossip-item {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.gossip-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 1px solid var(--rule);
  filter: sepia(0.35);
  flex-shrink: 0;
}

.gossip-item p {
  font-size: 0.85rem;
}

.gossip-item .name {
  font-weight: bold;
  color: var(--accent-red);
}

/* This wrapper is the hidden seed-glitch hook — see main.js.
   Position relative so an absolutely-positioned overlay
   can sit exactly on top of Tybalt's portrait. */
.glitch-anchor {
  position: relative;
}

.glitch-anchor .glitch-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.glitch-anchor .glitch-frame.flash {
  opacity: 1;
}

/* ---- Footer / classified ad love letters box ---- */
.love-letters {
  margin-top: 30px;
  border: 1px dashed var(--rule);
  padding: 14px 18px;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.25);
}

.love-letters h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.act-nav a {
  border: 1px solid var(--rule);
  padding: 8px 18px;
  background: var(--accent-red);
  color: #fff;
  display: inline-block;
}

@media (max-width: 700px) {
  .gazette-grid { grid-template-columns: 1fr; }
  .story-body { columns: 1; }
  .sidebar { border-left: none; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 16px; }
}