/*
 * Praxis-Stadtpark · Concept A — Print Stylesheet
 * Source: Phase 5 final state
 * Use: wp_enqueue_style(... , [], '1.0.0', 'print') — loaded with media="print"
 * Goal: Impressum / Contact printable as clean B&W document on A4
 */

@page {
  margin: 2cm;
  size: A4;
}

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 11pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }

  /* Hide all interactive / decorative chrome */
  .site-header,
  .mobile-menu,
  .nav,
  .nav-toggle,
  .site-footer,
  .demo-banner,
  .gallery-swiper,
  .gallery-filters,
  .gallery-nav,
  .doctolib-cta,
  .skip-link,
  .home-hero__rule,
  .page-hero__rule,
  button {
    display: none !important;
  }

  h1, h2, h3, h4 {
    font-family: "Lora", Georgia, serif;
    font-weight: 600;
    page-break-after: avoid;
    page-break-inside: avoid;
  }
  h1 { font-size: 18pt; margin: 0 0 12pt; }
  h2 { font-size: 14pt; margin: 18pt 0 8pt; font-style: italic; font-weight: 500; }
  h3 { font-size: 12pt; margin: 12pt 0 6pt; }
  h4 { font-size: 11pt; margin: 10pt 0 4pt; }

  p, li {
    font-size: 11pt;
    line-height: 1.5;
    orphans: 3;
    widows: 3;
  }
  p { margin: 0 0 8pt; }

  ul, ol { margin: 0 0 10pt; padding-left: 1em; }
  li { margin-bottom: 3pt; }

  a, a:visited {
    color: #000 !important;
    text-decoration: underline;
    border-bottom: none !important;
  }
  /* Show full URL after each external link */
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555;
  }
  a[href^="#"]::after,
  a[href^="tel:"]::after,
  a[href^="mailto:"]::after { content: ""; }

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

  /* Preserve key block integrity */
  .therapist-card,
  .contact-card,
  .faq-item,
  .resource-item {
    page-break-inside: avoid;
  }

  /* Containers expand to full page width */
  .container,
  .container--wide,
  .container--narrow {
    max-width: 100% !important;
    padding-inline: 0 !important;
  }

  .section { padding-block: 0 !important; margin-bottom: 12pt; }

  /* Footer line at bottom of print */
  main::after {
    content: "Praxis Psychotherapie am Stadtpark · Goethestraße 5 · 44791 Bochum · 0234 68 08 90";
    display: block;
    margin-top: 24pt;
    padding-top: 8pt;
    border-top: 1px solid #999;
    font-size: 9pt;
    color: #555;
    text-align: center;
  }
}
