/* ===========================================
   PRINT STYLESHEET - Optimized for Printing
   =========================================== */

@media print {

  /* Hide non-essential elements */
  .navbar,
  .footer,
  .floating-prayer-btn,
  .scroll-indicator,
  .back-to-top,
  .announcement-bar,
  .cta-section,
  .quick-links,
  .recent-sermons,
  .contact-form,
  nav.breadcrumbs {
    display: none !important;
  }

  /* Optimize body for printing */
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }

  /* Doctrine/Bible Study Pages */
  .doctrine-body,
  .study-body {
    max-width: 100%;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    page-break-inside: avoid;
  }

  .doctrine-title,
  .study-title {
    page-break-after: avoid;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

  .doctrine-body h3,
  .study-body h3 {
    page-break-after: avoid;
    margin-top: 15px;
    border-bottom: 1px solid #ccc;
  }

  .doctrine-body h4,
  .study-body h4 {
    page-break-after: avoid;
  }

  .doctrine-body p,
  .study-body p {
    orphans: 3;
    widows: 3;
  }

  /* Scripture boxes */
  .scripture-box {
    border-left: 4px solid #000;
    page-break-inside: avoid;
    margin: 15px 0;
  }

  /* Sidebar on print */
  .study-sidebar,
  .testimony-sidebar {
    display: none;
  }

  .doctrine-page,
  .study-layout {
    padding: 0;
  }

  .study-layout {
    display: block;
  }

  .study-main {
    width: 100%;
  }

  /* Links should show URL in print */
  a[href]:not([href^="#"]) {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }

  /* Page breaks */
  .journey-timeline .journey-item {
    page-break-inside: avoid;
  }

  /* Remove background colors/gradients */
  body,
  .doctrine-body,
  .study-body,
  .scripture-box {
    background: #fff !important;
  }

  /* Images */
  img {
    max-width: 100%;
    page-break-inside: avoid;
  }

  /* Tables */
  table {
    border-collapse: collapse;
    width: 100%;
    page-break-inside: avoid;
  }

  table,
  th,
  td {
    border: 1px solid #000;
  }

  th,
  td {
    padding: 8px;
  }

  /* Lists */
  ul,
  ol {
    margin: 10px 0;
    padding-left: 30px;
  }

  li {
    page-break-inside: avoid;
  }

  /* Blockquotes */
  blockquote {
    border-left: 4px solid #000;
    margin-left: 0;
    padding-left: 15px;
  }

  /* Print header/footer info */
  .print-header {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
  }

  .print-footer {
    text-align: center;
    font-size: 10pt;
    color: #666;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #ccc;
  }

  /* Page break classes */
  .page-break {
    page-break-after: always;
  }

  .no-page-break {
    page-break-inside: avoid;
  }

  /* Responsive adjustments for print */
  @page {
    margin: 2cm;
    size: A4;
  }

  @page :first {
    margin-top: 2cm;
  }
}