/* Print-Stylesheet */
@media print {
  /* Navigation und Footer ausblenden */
  nav,
  footer,
  .back-to-top,
  .mobile-menu,
  .skip-link,
  .no-print {
    display: none !important;
  }

  /* Seitenumbrueche */
  h1, h2, h3 {
    page-break-after: avoid;
  }

  img, table, figure {
    page-break-inside: avoid;
  }

  /* Schriftgroessen fuer Druck */
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }

  h1 { font-size: 20pt; }
  h2 { font-size: 16pt; }
  h3 { font-size: 14pt; }

  /* Links mit URL anzeigen */
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }

  a[href^="mailto"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }

  /* Seitenraender */
  @page {
    margin: 2cm;
  }

  /* Container volle Breite */
  .container, main {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}
