/* =============================================================
   KQ Solicitors - Anti-Copy Deterrents
   Layered, non-disruptive protection against casual copying.
   Designed to NOT break:
     - Text selection (users still copy phone numbers, fees, dates)
     - Accessibility / screen readers
     - Form input copy/paste
     - Print-to-PDF (we want clients to save guides)
   What this DOES disrupt:
     - Right-click on images
     - Image dragging
     - Drag-and-save of brand assets
   ============================================================= */

/* --- Stop image dragging across the site --- */
img,
picture,
.kq-img,
.elementor-image img,
.wp-block-image img,
[class*="hero"] img,
[class*="logo"] img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  /* Prevents long-press → save image on iOS */
  -webkit-touch-callout: none;
}

/* --- Prevent selection on logos / brand marks specifically --- */
.brand,
.brand img,
.site-brand,
.site-logo,
.kq-logo,
[class*="brand-logo"] {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* --- Print stylesheet: stamp every printed page with copyright --- */
@media print {
  body::after {
    content: "© KQ Solicitors · kqsolicitors.com · SRA Regulated · Unauthorised reproduction prohibited.";
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 9pt;
    font-family: Arial, sans-serif;
    color: #555;
    border-top: 1px solid #ccc;
    padding: 4pt 0;
    background: #fff;
  }
}
