/* Police globale */
body {
    font-family: 'Quicksand', sans-serif !important; /* Mettez la police que vous utilisez pour le site */
    background-color: white; /* Fond blanc pour tout le site */
    color: black; /* Texte noir pour tout le site */
}
p {
    font-size: 18px !important;
}
/* Couleurs des liens de la navbar */
.navbar-nav .nav-link {
    color: black; /* Texte noir */
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 15px;
}

/* Couleur des liens au survol */
.navbar-nav .nav-link:hover {
    color: #555; /* Noir plus clair */
}

/* Lien actif avec ligne noire */
.navbar-nav .nav-link.active {
    font-weight: bold;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: black;
    margin: 4px auto 0;
}

/* Centrer le menu dans la navbar */
.navbar-nav {
    justify-content: center;
}

/* Offcanvas pour le mode mobile */
.offcanvas-body {
    background-color: white;
}

/* Bouton burger */
.navbar-toggler {
    border: none;
    color: black;
}

/* Bouton fermer dans le offcanvas */
.btn-close {
    color: black;
}

/* Style global pour la carte */
.custom-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

/* Image de la carte */
.custom-card-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 10px; /* Si vous voulez des bords arrondis, remplacez par une valeur comme 10px */
    margin: 0 auto;
}

/* Texte principal */
.custom-card-body {
    padding: 0;
    width: 100%;
}

/* Texte principal */
.custom-card .custom-card-body .custom-card-text {
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
}

/* Texte secondaire */
.custom-card .custom-card-body .custom-card-subtext {
    font-size: 0.875rem;
    font-weight: 300;
    color: #666;
}

.spacer {
    min-height: 40px; /* Espace de 20px */
}

.custom-separator {
    width: 5%; /* Longueur du trait */
    margin: 20px auto; /* Centrer horizontalement */
    border: none; /* Supprime la bordure par défaut */
    border-top: 2px solid #333; /* Définit la couleur et l'épaisseur */
}

.social-buttons {
    display: flex;
    gap: 15px; /* Espacement entre les boutons */
    justify-content: center; /* Centre les boutons */
    margin-top: 20px; /* Ajoute un espace au-dessus */
}

/* Bouton rond */
.social-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px !important; /* Taille du bouton */
    height: 60px !important;
    border-radius: 50%; /* Rend le bouton rond */
    text-decoration: none;
    transition: transform 0.2s ease; /* Animation au survol */
}

/* Icône à l'intérieur */
.social-button img {
    width: 50%; /* Taille de l'icône (ajustez selon vos besoins) */
    height: 50%;
    object-fit: contain;
}

/* Effet au survol */
.social-button:hover {
    transform: scale(1.1); /* Agrandit légèrement le bouton */
    background-color: #d9d9d9; /* Couleur différente au survol */
}