/* Print Styles - CV Website */

@media print {
  /* Reset for print */
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /* Page setup */
  @page {
    margin: 1.5cm;
    size: A4;
  }

  body {
    font-size: 11pt;
    line-height: 1.4;
  }

  /* Hide non-print elements */
  .theme-toggle,
  .print-button,
  .nav {
    display: none !important;
  }

  /* Layout adjustments */
  .container {
    max-width: 100%;
    padding: 0;
  }

  /* Header */
  .header {
    padding: 0 0 1cm;
    page-break-after: avoid;
  }

  .header__name {
    font-size: 24pt;
    margin-bottom: 0.2cm;
  }

  .header__title {
    font-size: 14pt;
    margin-bottom: 0.5cm;
  }

  .header__contact {
    font-size: 10pt;
    gap: 0.5cm;
  }

  .header__contact-item i {
    color: #000 !important;
  }

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

  a[href^="http"]::after {
    content: none;
  }

  /* Sections */
  .section {
    padding: 0.5cm 0;
    page-break-inside: avoid;
  }

  .section__title {
    font-size: 14pt;
    margin-bottom: 0.4cm;
    page-break-after: avoid;
  }

  .section__title i {
    display: none;
  }

  /* Summary */
  .summary__text {
    font-size: 11pt;
  }

  /* Skills */
  .skills__grid {
    gap: 0.3cm;
  }

  .skills__category {
    page-break-inside: avoid;
  }

  .skills__category-name {
    font-size: 11pt;
    min-width: 2.5cm;
  }

  .skills__tag {
    font-size: 10pt;
    padding: 0.1cm 0.3cm;
    border: 1px solid #ccc !important;
  }

  /* Timeline */
  .timeline {
    padding-left: 0;
  }

  .timeline::before {
    display: none;
  }

  .timeline__item {
    padding-bottom: 0.5cm;
    page-break-inside: avoid;
  }

  .timeline__item::before {
    display: none;
  }

  .timeline__header {
    margin-bottom: 0.2cm;
  }

  .timeline__title {
    font-size: 12pt;
  }

  .timeline__meta {
    font-size: 10pt;
  }

  .timeline__description {
    font-size: 11pt;
    margin-bottom: 0.2cm;
  }

  .timeline__list {
    padding-left: 0.5cm;
  }

  .timeline__list li {
    font-size: 10pt;
    margin-bottom: 0.1cm;
  }

  .timeline__list li::before {
    background: #000 !important;
  }

  /* Education */
  .education__degree {
    font-size: 12pt;
  }

  .education__school {
    font-size: 11pt;
  }

  .education__meta {
    font-size: 10pt;
  }

  /* Footer */
  .footer {
    display: none;
  }

  /* Prevent widows and orphans */
  p, li {
    widows: 3;
    orphans: 3;
  }

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