/* Disable user selection on images */
img {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    pointer-events: none;
}

/* Add watermark to header image */
.protected-image {
    position: relative;
}

.protected-image::after {
    content: "© Stylish Retreat";
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    z-index: 10;
}

/* Add watermark to images */
.gallery-image-container {
    position: relative;
}

.gallery-image-container::after {
    content: "© Stylish Retreat - Protected Image";
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
}