/* Photo Protection Styles */

/* Prevent image dragging and selection */
.protected-photo,
.photo-gallery img,
.profile-photo {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

/* Allow parent container to be clickable for modals/interactions */
.photo-container {
    pointer-events: auto;
    position: relative;
}

/* Transparent overlay to prevent right-click */
.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: transparent;
    pointer-events: auto;
}

/* Optional: Disable selection on entire photo sections */
.photo-section {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Print protection - hide photos when printing */
@media print {
    .protected-photo,
    .photo-gallery img {
        display: none !important;
    }
    
    .photo-container::after {
        content: "Photo available online only";
        display: block;
        padding: 20px;
        text-align: center;
        background: #f5f5f5;
        border: 1px solid #ddd;
    }
}
