/* ==========================================================================
   Optimized Print Stylesheet
   ========================================================================== */

@media print {

  /* --- 1) Page Layout & Typography --- */
  
  @page {
    margin: 0.8in; /* Sets margins for the printed page */
  }

  body {
    font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
    font-size: 16pt;
    line-height: 1.6;
    color: black;
  }

  p, blockquote {
    widows: 3; /* Prevents a single line from starting a new page */
    orphans: 3; /* Prevents a single line from being left at the bottom of a page */
  }

  /* --- 2) Hide Non-Print & Interactive Elements --- */
  
  aside,
  nav,
  .subtitle,
  .scripture-title,
  .verse-tts-button,
  .verse-ref,
  .verse-num-ref,
  #floating-menu,
  #menu-toggle,
  .no-print,
  /* NEW: Hide all interactive diagram containers */
  .interactive-wheel,
  .triangle-container,
  .heptagon-container,
  .dodecagon-container,
  .cuboctahedron-container,
  .octahedron-container,
  .cube-container,
  .nested-container,
  footer a,
  section h1,
  sup {
    display: none !important;
  }

  /* --- 3) Content Styling --- */
  
  h1, h2, h3, .author {
    text-align: center;
    break-inside: avoid-page; /* Prevents headings from splitting across pages */
    page-break-inside: avoid;
  }
  
  footer {
  	text-align: center;
  }
  
  h1 { font-size: 31pt; }
  h2 { font-size: 21pt; margin: 1.5em 0 0.5em; }
  h3 { font-size: 16pt; margin: 1.5em 0 0.5em; }
  
  .verse-num-primary {
    font-size: 13pt;
    vertical-align: super;
  }

  .logoscript {
    animation: none !important; /* Disable shimmer animation */
    color: black !important;
  }

  /* --- 4) Image Handling --- */

  /* Make the main title page image larger */
  #titlepage img {
    display: block;
    margin: 2em auto;
    width: 60%;
  }

  /* General image rule for any other images that might appear */
img {
  max-width: 120px;
  height: auto;
  margin: 0 0.5rem;
}

main > img {
  display: inline-block;
  vertical-align: middle;
}

main > img:first-of-type {
  margin-left: calc(50% - 180px); /* centers the 3 icons as a block */
}


  /* --- 5) Table Styling --- */

  table {
    width: 100%;
    font-size: 12pt; /* Increased size for better readability */
    margin: 1.5em 0;
    break-inside: avoid; /* Try to keep tables on a single page */
    page-break-inside: avoid;
  }

  th, td {
    padding: 6px;
    text-align: left; /* Left-align is easier to read in print */
  }

  th {
    border-bottom: 2px solid black; /* Stronger header rule for clarity */
  }

  table caption {
    font-size: 11pt;
    font-style: italic;
    margin-bottom: 0.5em;
  }

  /* --- 6) Link Handling --- */

  a {
    text-decoration: none;
    color: black;
  }

  /* NEW: Display the URL for external links */
  a[href^="http"]::after, a[href^="https"]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    font-style: italic;
    word-wrap: break-word;
  }
}