/**
 * Content Protection Styles - (c) 2025 Valentin Poulain
 */

/* Disable image selection & dragging */
img, canvas, video, .work-card-img, .hero-img, .about-photo-img, .detail-img-wrap img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: auto; /* keep interactivity */
}

/* Prevent save-image on long press (mobile) */
img {
  -webkit-touch-callout: none;
}

/* Disable text selection on sensitive content */
.hero-img, .work-card-img, .about-photo-img, .detail-img-wrap {
  -webkit-user-select: none;
  user-select: none;
}
