/* 인쇄용 스타일시트 */
/* 도근환 선거캠프 웹사이트 - 인쇄 최적화 */

@media print {
  /* 기본 색상: 흰 배경에 검은 텍스트 */
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /* 숨길 요소: 네비게이션, 푸터, 지도, 버튼 */
  .header,
  .nav,
  .hamburger,
  .mobile-menu,
  .footer,
  .contact-map,
  .btn,
  .pledge-card__toggle,
  .pledges-filter,
  .activity-tabs,
  .gallery-item__overlay,
  .lightbox,
  .skip-to-content,
  .share-btn,
  .cheer__sns-btns,
  .volunteer__contact-info,
  .inquiry__cta {
    display: none !important;
  }

  /* 링크 URL 표시 */
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.75em;
    font-weight: normal;
  }

  /* 내부 링크 및 javascript 링크는 URL 표시 안 함 */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  /* 페이지 나누기 규칙 */
  h1,
  h2,
  h3 {
    page-break-after: avoid;
    orphans: 3;
    widows: 3;
  }

  article,
  section {
    page-break-inside: avoid;
  }

  /* 여백 및 레이아웃 */
  body {
    font-size: 12pt;
    line-height: 1.5;
    margin: 0;
    padding: 0;
  }

  .container {
    max-width: 100% !important;
    padding: 0 1cm !important;
  }

  main {
    padding-top: 0 !important;
  }

  /* 공약 카드: 인쇄 시 상세 내용 표시 */
  .pledge-card__detail {
    display: block !important;
  }

  /* 히어로 섹션 간소화 */
  .hero {
    min-height: auto !important;
    padding: 1rem 0 !important;
  }

  .hero__image {
    display: none !important;
  }

  /* 페이지 여백 설정 */
  @page {
    margin: 1.5cm 2cm;
  }
}
