/* ============================================
   SECURITY CSS — Content Protection Layer
   ============================================ */

/* ── Disable Text Selection Globally ── */
body {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

/* Allow text selection in form inputs only */
input, textarea {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

/* ── Transparent overlay on images to prevent direct save via long-press ── */
.hero-image-wrapper,
.project-image-wrapper {
  position: relative;
}

.hero-image-wrapper::after,
.project-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  pointer-events: auto;
}