/* Custom styles beyond Tailwind */

html {
  scroll-behavior: smooth;
}

#qq-modal.is-open {
  display: flex;
}

/* Print styles for the PDF export */
@media print {
  body {
    background: white !important;
    color: black !important;
    font-size: 10pt;
  }

  /* Hide interactive elements */
  #book-form,
  #instant-book,
  #qq-modal,
  button,
  a[href="#book"],
  a[href="#services"] {
    display: none !important;
  }

  /* Convert booking CTAs to QR codes (rendered via /print page) */
  a[href*="tidycal"]::after {
    content: " (QR on /print version)";
    font-size: 8pt;
  }

  header {
    background: white !important;
    color: black !important;
    border-bottom: 2pt solid #d4a574;
  }

  footer {
    background: white !important;
    color: black !important;
    border-top: 1pt solid #ddd;
  }

  section {
    page-break-inside: avoid;
    padding: 0.75rem 0 !important;
  }

  /* Hide promo video placeholder */
  .aspect-video {
    display: none;
  }
}
