/* Print stylesheet for memorial pages */
@media print {
  /* Hide non-essential elements */
  .no-print,
  header,
  nav,
  .comments-section,
  button,
  .button,
  [role="button"],
  .share-modal,
  .navigation,
  .sidebar {
    display: none !important;
  }

  /* Show print-only elements */
  .print-only {
    display: block !important;
  }

  /* Reset page styles */
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    background: white !important;
    color: black !important;
    font-size: 12pt;
    line-height: 1.5;
    font-family: Georgia, "Times New Roman", serif;
    margin: 0;
    padding: 0;
  }

  .obituary-print-root,
  .obituary-print-container {
    max-width: 6.25in;
    margin: 0 auto;
    padding: 0.35in 0 0.5in;
    border: none !important;
  }

  .obituary-print-root .obituary-divider {
    border-top: 1px solid #d0d0d0;
    margin: 0.25in auto;
    width: 100%;
  }

  .obituary-print-root .obituary-divider-header {
    margin-top: 0.15in;
  }

  .obituary-print-root .obituary-divider-footer {
    margin-top: 0.35in;
  }

  /* Memorial specific styles */
  .memorial-detail {
    max-width: none !important;
    padding: 20px !important;
    margin: 0 !important;
  }

  .memorial-header {
    text-align: center;
    margin-bottom: 30px;
    page-break-inside: avoid;
  }

  .memorial-header h1 {
    font-size: 22pt;
    font-weight: normal;
    margin: 0 0 6px 0;
    color: #1f2933 !important;
  }

  .memorial-photo {
    max-width: 200px !important;
    max-height: 200px !important;
    margin: 0 auto 20px !important;
    display: block !important;
    border-radius: 8px;
  }

  .memorial-dates {
    font-size: 14pt;
    color: #666 !important;
    margin: 5px 0;
  }

  .memorial-location {
    font-size: 12pt;
    color: #4b5563 !important;
    margin: 4px 0 8px;
  }

  .memorial-stats {
    font-size: 10pt;
    color: #999 !important;
    margin-top: 10px;
  }

  /* Biography section */
  .biography {
    column-count: 1;
    text-align: left;
    font-size: 13pt;
    line-height: 1.5;
    margin: 18px 0;
  }

  .biography h2 {
    display: none;
  }

  .biography p {
    margin: 0 0 12px 0;
  }

  /* Photo gallery */
  .photo-gallery {
    page-break-inside: avoid;
    margin: 30px 0;
  }

  .photo-gallery h2 {
    font-size: 16pt;
    color: #2d5016 !important;
    margin: 20px 0 15px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
  }

  .photo-gallery .grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 8px !important;
  }

  .photo-gallery img {
    width: 100% !important;
    height: auto !important;
    max-height: 120px !important;
    object-fit: cover !important;
    border-radius: 4px !important;
    border: 1px solid #ddd !important;
  }

  /* Comments section for print */
  .comments-print {
    page-break-before: always;
    margin-top: 40px;
  }

  .comments-print h2 {
    font-size: 16pt;
    color: #2d5016 !important;
    margin: 20px 0 15px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
  }

  .comment-print {
    margin: 15px 0;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    page-break-inside: avoid;
  }

  .comment-print .author {
    font-weight: bold;
    font-size: 10pt;
    color: #2d5016 !important;
  }

  .comment-print .date {
    font-size: 8pt;
    color: #999 !important;
    margin-left: 10px;
  }

  .comment-print .content {
    font-size: 10pt;
    line-height: 1.4;
    margin-top: 5px;
    color: #333 !important;
  }

  /* Footer */
  .print-footer {
    margin-top: 0.5in;
    text-align: center;
    font-size: 9.5pt;
    color: #8b8e94 !important;
    border: none !important;
    padding-top: 0;
  }

  /* Page break controls */
  .page-break-before {
    page-break-before: always;
  }

  .page-break-after {
    page-break-after: always;
  }

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

  /* Links and URLs */
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 8pt;
    color: #666 !important;
  }

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

  /* Hide empty elements */
  :empty {
    display: none !important;
  }

  /* Ensure good contrast */
  .text-muted-foreground,
  .text-muted {
    color: #666 !important;
  }

  .text-primary {
    color: #2d5016 !important;
  }

  /* Optimize for black and white printing */
  @media print and (monochrome) {
    .memorial-header h1,
    .biography h2,
    .photo-gallery h2,
    .comments-print h2,
    .print-footer .logo {
      color: #000 !important;
    }

    .text-primary {
      color: #000 !important;
      font-weight: bold;
    }
  }
}

/* Additional print optimizations for different paper sizes */
@page {
  margin: 1in;
  size: letter;
}

@page :first {
  margin-top: 0.5in;
}
