/* Protection anti-spam pour numéro de téléphone */

.phone-protected {
    position: relative;
    color: inherit;
    text-decoration: none;
}

.phone-protected::before {
    content: "📞 ";
    font-size: 0.9em;
}

.phone-protected::after {
    content: " (cliquez pour afficher)";
    font-size: 0.8em;
    opacity: 0.7;
    font-style: italic;
}

.phone-protected:hover {
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 4px;
    padding: 2px 4px;
}

.phone-revealed {
    color: #007bff;
}

.phone-revealed::after {
    display: none;
}

/* Styles pour différents contextes */
.contact-info .phone-protected {
    display: inline-block;
    padding: 8px 12px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.contact-info .phone-protected:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.footer .phone-protected {
    color: inherit;
}

.header .phone-protected {
    font-weight: 500;
}

/* Animation de révélation */
.phone-revealed {
    animation: phoneReveal 0.5s ease-out;
}

@keyframes phoneReveal {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Version pour les données structurées (masquée visuellement) */
.phone-structured-data {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    pointer-events: none;
}
