/* ============================================================================
   theme-print.css — print-friendly stylesheet for every page.
   Parchment + ink + gold. Turns any page into a clean sheet a household can
   keep: hides chrome and interactive controls, sets generous serif type, keeps
   the cross + KJV verses, and avoids breaking cards across pages.
   Linked globally; only active under @media print.
   ========================================================================== */
@media print {
  :root {
    --page-bg: #FBF6E9;        /* parchment */
    --cream-100: #FFFDF6;
    --cream-200: #FBF6E9;
    --cream-300: #F3EAD6;
    --ink: #2A2620;            /* warm ink */
    --ink-soft: #4A443A;
    --gold-400: #B8893A;       /* gold that prints legibly */
  }

  html, body { background: #FBF6E9 !important; color: #2A2620 !important; }
  body { font-size: 12pt; line-height: 1.5; }

  @page { margin: 18mm 16mm; }

  /* Hide everything that isn't the content */
  .site-header,
  .mobile-nav,
  .disclaimer-strip,
  .rainbow-stripe,
  .support,
  .footer-grid,
  .footer-meta,
  .footer-signature,
  .footer-bless,
  .theme-toggle,
  .media-card__play,
  .listen,
  .soft-ask,
  .no-print,
  audio,
  .nav-menu { display: none !important; }

  /* A slim printed mast: wordmark + blessing only */
  .site-footer { background: none !important; padding: 0 !important; border: 0 !important; }
  .footer-blessing { margin-top: 24pt; border-top: 1px solid #D9C9A0; padding-top: 12pt; }
  .footer-blessing__text { font-size: 13pt; }

  main { padding: 0 !important; }

  /* Print masthead injected before main via the rule below */
  body::before {
    content: "✝  CrossAIHub";
    display: block;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 18pt; font-weight: 600; color: #B8893A;
    border-bottom: 1px solid #D9C9A0; padding-bottom: 6pt; margin-bottom: 14pt;
  }

  /* Typography for reading */
  h1, h2, h3 { color: #2A2620 !important; page-break-after: avoid; }
  h1 { font-size: 22pt; }
  h2 { font-size: 17pt; }
  p, li, blockquote { color: #2A2620 !important; }

  /* KJV verse: gold rule, italic serif — the brand element survives print */
  .scripture-frame, .scripture, blockquote.scripture,
  .word-card__verse, .saint-card__verse, .exam-card__verse, .hymnal-card__verse {
    border-left: 2pt solid #B8893A !important;
    page-break-inside: avoid;
    background: none !important;
  }

  /* Cards: flat, bordered, don't split across pages */
  .card, .lesson, .media-card, .saint-card, .exam-card, .cpb-card,
  .hymnal-card, .gallery-card, .glossary-card, .liturgy-block, .discern-card {
    border: 1px solid #D9C9A0 !important;
    box-shadow: none !important;
    background: #FFFDF6 !important;
    page-break-inside: avoid;
  }

  a { color: #2A2620 !important; text-decoration: none !important; }

  /* Heroes collapse to a simple heading on paper */
  .cinematic-hero, .page-hero, .store-hero, .sanctuary-hero {
    min-height: 0 !important; padding: 0 0 8pt !important; background: none !important;
  }
  .cinematic-hero__media, .cinematic-hero__veil, .cinematic-hero__grid,
  .store-hero__bg, .sanctuary-hero__bg, .page-hero::before { display: none !important; }
}
