/* ============================================================
   SpeakSoon Deck — Print / PDF Export
   Chrome: File → Print → Save as PDF
   Each slide renders on its own full-bleed landscape page.
   ============================================================ */

@media print {

  @page {
    size: 1920px 1080px;
    margin: 0;
  }

  html, body {
    width: 1920px;
    height: auto;
    overflow: visible;
    background: white;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Unwrap the scaling shell */
  .deck-shell {
    position: static !important;
    bottom: auto !important;
    width: 1920px !important;
    height: auto !important;
    display: block !important;
    overflow: visible !important;
    background: transparent !important;
  }

  .slide-viewport {
    position: static !important;
    width:  1920px !important;
    height: auto !important;
    transform: none !important;
    overflow: visible !important;
  }

  /* Each slide becomes a page */
  .slide {
    position: static !important;
    display: flex !important;
    width:  1920px !important;
    height: 1080px !important;
    page-break-before: always !important;
    break-before: page !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
    overflow: hidden !important;
  }

  .slide:first-of-type {
    page-break-before: auto !important;
    break-before: auto !important;
  }

  /* Hide nav */
  .deck-nav { display: none !important; }

  /* Ensure backgrounds print */
  .slide--dark {
    background: linear-gradient(145deg, #1C1F26 0%, #14171D 100%) !important;
  }

  .slide--light {
    background-color: #FFFFFF !important;
  }
}
