/* Image de fond pour la page Contact */
body {
    background-image: url('WP9.png'); /* Chemin vers votre image */
    background-size: cover; /* Ajuste l'image pour couvrir toute la page */
    background-repeat: no-repeat; /* Évite la répétition */
    background-attachment: fixed; /* Garde l'image fixe au défilement */
    background-position: center; /* Centre l'image */
    color: #ffffff; /* Assure un contraste clair pour le texte */
    font-family: Arial, sans-serif; /* Police de base */
}

/* Section Contact spécifique */
#contact-section {
    background: rgba(0, 0, 0, 0.7); /* Fond semi-transparent pour plus de lisibilité */
    padding: 20px;
    border-radius: 10px; /* Coins arrondis pour un effet élégant */
    margin: 50px auto;
    max-width: 600px; /* Largeur max pour centrer le contenu */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Ombre subtile */
}

/* Style des boutons et logos sociaux */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
}

.social-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 20px;
    color: #cccccc;
}
