/* Print styles for Carmen Baumgartner Website */

@media print {
  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 12pt;
    line-height: 1.5;
  }

  header,
  nav,
  .navbar,
  .hero-background,
  .hero-image,
  .scroll-indicator,
  .video-container,
  .schools-grid,
  .footer,
  .btn,
  .nav-toggle,
  .skip-link {
    display: none !important;
  }

  main,
  .container,
  .about,
  .about-content,
  .about-text,
  .about-features,
  .instruments,
  .lessons,
  .contact {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    background: none !important;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #000 !important;
    page-break-after: avoid;
  }

  a {
    color: #000 !important;
    text-decoration: underline;
    word-break: break-all;
  }

  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 10pt;
  }

  img,
  .image-frame,
  .portrait {
    max-width: 100% !important;
    height: auto !important;
    page-break-inside: avoid;
    box-shadow: none !important;
    border: none !important;
  }

  .contact-cta,
  .contact-icon {
    display: none !important;
  }

  /* Remove any print-unfriendly backgrounds */
  * {
    background: transparent !important;
    box-shadow: none !important;
  }

  /* Page breaks for sections */
  section {
    page-break-before: always;
  }
}