/* ============================================
   NOCLICK.CSS - Styles Protection Copyright Fully Hand-coded by RL @DIGITALABS
   ============================================ */

/* Message d'avertissement copyright */
.copyright-warning {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 30px 50px;
    border-radius: 12px;
    
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    line-height: 1.6;
    
    border: 2px solid #c9a961;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    
    z-index: 100000;
    pointer-events: none;
    
    /* Animation */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copyright-warning.visible {
    opacity: 1;
}

.copyright-warning.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .copyright-warning {
        padding: 20px 30px;
        font-size: 16px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .copyright-warning {
        padding: 15px 20px;
        font-size: 14px;
    }
}

/* ============================================
   PROTECTION IMAGES - Styles additionnels
   ============================================ */

/* Désactiver sélection sur toutes les images */
img.protected {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    
    -webkit-user-drag: none;
    user-drag: none;
    
    pointer-events: auto; /* Garder hover/click */
}

/* Curseur personnalisé sur images protégées */
.gallery-item img,
.video-wrapper img {
    cursor: default; /* ou 'default' pour plus subtil */
}

/* Alternative : curseur zoom-in (moins agressif) */
.gallery-item img:hover {
    cursor: zoom-in; /* Indique que c'est pour voir en grand, pas télécharger */
}

/* ============================================
   OVERLAY SUBTIL (Optionnel)
   ============================================ */

/* Ajouter overlay invisible sur images au hover */
.gallery-item {
    position: relative;
}

.gallery-item::after {
    content: '© Vida Tango';
    position: absolute;
    bottom: 10px;
    right: 10px;
    
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.5);
    padding: 3px 8px;
    border-radius: 3px;
    
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Mobile - toujours visible */
@media (max-width: 768px) {
    .gallery-item::after {
        opacity: 0.7;
    }
}