/**
 * Print styles for Menudos Theme
 *
 * @package Menudos_Theme
 */

@media print {
  /* Hide non-essential elements */
  .site-header,
  .site-footer,
  .main-navigation,
  .sidebar,
  .comments-area,
  .entry-footer,
  .navigation,
  .widget-area {
    display: none !important;
  }

  /* Reset layout for printing */
  .site-content {
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

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

  h1 { font-size: 24pt; }
  h2 { font-size: 20pt; }
  h3 { font-size: 16pt; }
  h4 { font-size: 14pt; }
  h5 { font-size: 12pt; }
  h6 { font-size: 12pt; }

  /* Links */
  a {
    color: #000;
    text-decoration: underline;
  }

  /* Show URLs after links */
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 10pt;
  }

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

  /* Prevent page breaks */
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }

  p, blockquote {
    orphans: 3;
    widows: 3;
  }

  /* Page breaks */
  .page-break {
    page-break-before: always;
  }
}
