body {
    font-family: Arial, sans-serif;
}

.text-bold {
    font-weight: bold;
}

.text-blue {
    color: blue;
}


.carousel {
    width: 100%;
    height: 90%;
    background: #ccc;
    margin: 20px 0;
    text-align: center;
    line-height: 300px;
    font-size: 1.5em;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

header .d-flex {
    justify-content: space-between;
    align-items: center;
}

header .d-flex .mr-3 {
    margin-right: 1rem;
}

/* Fixer la hauteur et la largeur du carrousel */
.carousel-inner {
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
}

/* Style des boutons précédent et suivant */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Positionnement des boutons */
.carousel-control-prev,
.carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
}

/* Style du bouton au survol */
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

/* Style des images du carrousel */
.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-indicators {
    bottom: -50px;
}

/* Style pour la section avec image de fond */
.background-image {
    background: url('./img/00-background.png') no-repeat center center;
    background-size: cover;
    height: 500px;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.5); /* Ajoute une superposition transparente */
}

/* Style pour les vignettes */
.vignettes-section .vignette {
    margin-bottom: 20px;
}

.vignette img {
    width: 100%;
    height: auto;
}

.vignette-text {
    margin-top: 10px; /* Ajoute de l'espace entre l'image et le texte */
    color: white;
}

.vignette-text a {
    text-decoration: none;
    color: inherit; /* Utilise la couleur héritée pour les liens */
}


/* Fixer la hauteur des vignettes et conserver les proportions */ 
.vignette .vignette-image { 
    height: 300px; /* Vous pouvez ajuster cette valeur selon vos besoins */ 
    object-fit: cover; 
    width: 100%; 
}

/* Style pour le trait de séparation */ 
.divider { 
    width: 20%; /* Ajustez cette valeur selon vos besoins pour un trait plus court */ 
    margin: 20px auto; /* Centrer et ajouter de l'espace au-dessus et en dessous */ 
    border-top: 2px solid #000; /* Ajustez la couleur et l'épaisseur selon vos préférences */ 
}