 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px 0;/* Ajoute un peu d' espace en haut et en bas */
}

/* Diaporama d'arrière-plan */
.slideshow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(7px) brightness(0.7); /* Flou + un peu sombre pour lire le texte */
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slides.active {
    opacity: 1;
}

/* La Carte */
.card-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    max-width: 450px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.profile-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #27ae60;
    margin-bottom: 15px;
    position: relative;
    z-index:  9999;
    box-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    filter: contrast(1.1) brightness(1.05) saturate(1.1);
    transform: translateZ(0);
    backface-visibility: hidden;

}

.badge {
    background: #27ae60;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    box-shadow: none !important;
    border: none;
    position: relative;
    z-index: 10;
}

h1 {
    margin-top: 10px;
    font-size: 2rem;
    color: #333;
}

.tagline {
    color: #27ae60;
    font-weight: 500;
    margin-bottom: 15px;
}

.description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Boutons */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    text-decoration: none;
    padding: 12px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s;
}

.btn:hover {
    transform: scale(1.03);
}

.mail { background-color: #e74c3c; }
.whatsapp { background-color: #25d366; }
.instagram { background-color: #e1306c; }