/* Print Stylesheet for Gorka's Poké Barn */

@media print {
  /* Hide non-essential elements */
  .header,
  .social-bar,
  .hero-bg,
  .bg-pattern,
  .page-loader,
  .back-to-top,
  .footer-social,
  .btn,
  .newsletter,
  .cta-section,
  .floating-pokemon,
  video,
  iframe {
    display: none !important;
  }

  /* Reset backgrounds */
  body,
  .section,
  .hero,
  .features-strip {
    background: white !important;
    color: black !important;
  }

  /* Make text readable */
  * {
    color: black !important;
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /* Show URLs for links */
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }

  a[href^="#"]::after,
  a[href^="javascript"]::after {
    content: "";
  }

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

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

  /* Visit info prominent */
  .footer-contact {
    font-size: 1.2em;
    border: 2px solid black;
    padding: 1rem;
    margin: 1rem 0;
  }

  /* Logo visible */
  .footer-logo {
    display: block !important;
    max-width: 150px;
  }
}
