/* ============================================
   PRINT STYLES
   Optimized for printing the resume section
   ============================================ */

@media print {
  /* Hide non-printable elements */
  .tab-navigation,
  .site-header,
  footer,
  .btn,
  .resume-download,
  .resume-download-btn {
    display: none !important;
  }
  
  /* Show only resume content */
  .tab-content {
    display: block !important;
  }
  
  .tab-content:not(#resume) {
    display: none !important;
  }
  
  /* Reset backgrounds and colors for printing */
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
  
  /* Optimize layout for print */
  body {
    margin: 0;
    padding: 0;
    font-size: 11pt;
    line-height: 1.4;
  }
  
  .resume-container {
    max-width: 100%;
    padding: 0.5in;
    box-shadow: none;
  }
  
  /* Page breaks */
  h2, h3 {
    page-break-after: avoid;
  }
  
  .resume-experience-item,
  .resume-education-item {
    page-break-inside: avoid;
  }
  
  /* Link styling for print */
  a {
    text-decoration: none;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 9pt;
  }
  
  /* Ensure readable text */
  .resume-section-title {
    border-bottom: 2pt solid black !important;
  }
}
