/* Fond général */
body {
    background-color: #f5f6fa;
    color: #333333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Carte profil */
.profile-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

/* Image profil */
.profile-image-wrapper {
    display: flex;
    justify-content: center;
}

.profile-img {
    border: 3px solid #cccccc;
    transition: transform 0.3s;
}

.profile-img:hover {
    transform: scale(1.05);
}

/* Titre du profil */
.card-title {
    font-weight: 600;
    color: #222222;
}

/* Zone de texte libre */
.profile-bio {
    font-size: 0.95rem;
    color: #555555;
}

/* Boutons */
.btn-primary {
    background-color: #4a90e2;
    border-color: #4a90e2;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.btn-danger {
    background-color: #242222;
    border-color: #e74c3c;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-danger:hover {
    background-color: #140705;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #050505;
    color: #888888;
}

