/*
 * CraftBook Custom Theme V1 — Print Stylesheet
 * Provides a clean, readable output when articles are printed.
 * Loaded only when printing — no performance impact on screen.
 */

@media print {

  /* Reset colours for print */
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /* Page setup */
  @page {
    margin: 2cm;
    size: A4;
  }

  body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 12pt;
    line-height: 1.5;
  }

  /* Hide non-essential elements */
  .site-header,
  .site-footer,
  .site-nav,
  .nav-secondary,
  .sidebar,
  .post-navigation,
  .comments-area,
  .newsletter-section,
  .related-posts,
  .reading-progress,
  .dark-mode-toggle,
  .social-share,
  .breadcrumb,
  .skip-link,
  button,
  .btn,
  [class*="btn-"],
  .cookie-notice,
  .mobile-menu-toggle,
  .back-to-top {
    display: none !important;
  }

  /* Show full URLs for links */
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    color: #555555 !important;
  }

  /* Don't show URLs for internal links or javascript/mailto */
  a[href^="#"]::after,
  a[href^="javascript:"]::after,
  a[href^="mailto:"]::after {
    content: "";
  }

  /* Headings */
  h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, 'Times New Roman', serif;
    page-break-after: avoid;
    orphans: 3;
    widows: 3;
  }

  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; }
  h3 { font-size: 14pt; }

  /* Article content */
  .entry-content {
    max-width: 100%;
  }

  /* Images */
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  /* Blockquotes */
  blockquote {
    border-left: 3pt solid #000000 !important;
    padding-left: 1cm;
    font-style: italic;
  }

  /* Tables */
  table {
    border-collapse: collapse;
    width: 100%;
  }

  table th,
  table td {
    border: 1pt solid #000000 !important;
    padding: 6pt;
    text-align: left;
  }

  /* Avoid page breaks inside these elements */
  pre,
  blockquote,
  figure,
  table {
    page-break-inside: avoid;
  }

  /* Article byline and meta for print */
  .entry-meta {
    font-size: 10pt;
    margin-bottom: 1cm;
    padding-bottom: 0.5cm;
    border-bottom: 1pt solid #000000 !important;
  }

  /* Site name as print header */
  .print-header::before {
    content: "CraftBook — craftbook.co.uk";
    display: block;
    font-size: 10pt;
    margin-bottom: 0.5cm;
    padding-bottom: 0.25cm;
    border-bottom: 1pt solid #000000;
  }

}
