body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f8f8;
    
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border :0px solid black;
    margin : 5px 30px 5px 5px ;
    position: fixed;
    width: 99%;
    top: 0;
    z-index: 1000;
}

.logo img {
    max-height: 100px; /* Ajustez cette valeur selon vos besoins */
    width: auto;
}

main {
    margin-top: 60px; /* Ajustez cette valeur pour laisser de l'espace pour le header */
    padding: 0px;
}


.menu-icon {
    font-size: 30px;
    cursor: pointer;
    margin-right: 50px;
}

nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    z-index: 999;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

nav ul li {
    margin: 20px 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 24px;
}

/*main {                    deja présent ligne 26
    margin-top: 60px;
    padding: 20px;
}*/

.title-section {
    background-color: #f5f5f5;
    padding: 40px;
}

.title-container {
    max-width: 60%;
    margin: 0 auto;
    text-align: left;
}

.title-section h1 {
    color: black;
    font-size: 36px;
}

.title-section h3 {
    font-size: 18px;
    color: grey;
    font-weight: normal;
}

.title-section hr {
    width: 50px;
    border: 2px solid black;
    margin: 20px 0;
}

.content-section {
    padding: 20px  0px 20px 0px;
    width: 60%;
    margin: 20px auto;
}


.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 60%;
    margin: 0 auto;
    color: #888888;
}

@media (max-width: 768px) {
    .content-section, .title-container, .title-container, .footer-content {
        width: 100%; max-width: 100%;
    }
}

.carousel-container {
    background-color: white;
    /*padding: 50px 30px 50px 30px; /* Ajout du padding */
    padding: 10% 5% 10% 5%; /* Ajout du padding */
    /*border: 2px solid black;*/
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.carousel-inner {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    transition: transform 0.5s ease-in-out;
}

.carousel-item img {
    width: 100%;
    height: auto;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.carousel-control.prev {
    left: -20px;
}

.carousel-control.next {
    right: -20px;
}

.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: #717171;
}

.explanation {
    margin-top: 20px;
    text-align: left;
    text-align:justify;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #f5f5f5;
}



.footer-links a {
    text-decoration: none;
    color: #888888;
}
