/* ============================================================
   PaprikArt — Print Stylesheet
============================================================ */

@media print {
  /* Hide non-essential elements */
  .site-header,
  .nav-toggle,
  .primary-nav,
  .hero-actions,
  .contact-form,
  .site-footer .footer-nav,
  .skip-link {
    display: none !important;
  }

  /* Reset backgrounds and shadows */
  *, *::before, *::after {
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
    color: #000 !important;
  }

  /* Ensure body is full width */
  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  /* Show full URLs for links */
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    word-break: break-all;
  }

  /* Don't show URL for anchor links or mailto/tel */
  a[href^="#"]::after,
  a[href^="mailto:"]::after,
  a[href^="tel:"]::after {
    content: none;
  }

  /* Page break control */
  section {
    page-break-inside: avoid;
  }

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

  /* Print contact info clearly */
  .contact-info {
    border: 1px solid #ccc;
    padding: 1rem;
  }

  /* Ensure services grid is readable */
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card {
    border: 1px solid #ccc;
  }
}
