/* Styles pour le logo */
.logo {
    max-width: 150px;
    margin-top: 50px; /* Ajoute un espacement au-dessus du logo */
    margin-bottom: 20px;
}
/* Styles pour les icônes de réseaux sociaux */
.social-icon {
    font-size: 2rem;
    color: #F2AA04;
    transition: color 0.3s ease;
}


.spinner-border.text-primary {
    color: orange !important;
}

a.btn.btn-primary.contact-btn.mb-3 {
    background: orange;
    border: 1px;
}

a.btn.btn-primary.contact-btn.mb-3:hover {
    background: #d98d00;
}

a.btn.btn-secondary.contact-btn.mb-3 {
    background: black;
}

a.btn.btn-secondary.contact-btn.mb-3:hover {
    background: #3f3f3f;
}

.social-icon:hover {
    color: #000102;
}

/* Boutons de contact */
.contact-btn {
    font-size: 1.2rem;
    padding: 10px 20px;
    transition: transform 0.3s ease;
}

/* Animation hover sur les boutons */
.contact-btn:hover {
    transform: scale(1.05);
}

/* Apparence générale */
body {
    background-color: #f8f9fa;
    color: #343a40;
}

h1 {
    font-size: 2.2em;
    margin-bottom: 20px;
    font-weight: bold;
}

.lead {
    font-size: 1.3em;
}

.spinner-border {
    margin-top: 30px;
}

/* Responsivité */
@media (max-width: 576px) {
    h1 {
        font-size: 1.8em;
    }

    .lead {
        font-size: 1.1em;
    }

    .contact-btn {
        font-size: 1rem;
        padding: 8px 15px;
    }

    .logo {
        max-width: 120px;
    }
}
