.slider-container {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.slider-word {
    cursor: pointer;
    padding: 0 5px;
    font-size: 22px;
    font-weight: 300;
}

.slider-word:hover,
.slider-word.active {
    text-decoration: underline;
    font-weight: bold;
    transform: scale(1.1);
}

.slider-text {
    font-size: 22px;
    font-weight: 300;
    margin-top: 10px;
    position: relative;
    padding: 20px;
    color: #000; /* Texte en noir par dÃ©faut */
    width: 100%;
    max-width: 600px; /* Largeur maximale pour le bureau */
    height: auto;
    background-size: cover;
    background-position: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.slider-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.slider-text > * {
    position: relative;
    z-index: 2;
}

.en-savoir-plus {
    display: block;
    margin-top: 10px;
    color: #000;
    cursor: pointer;
    text-decoration: none;
    transition: text-decoration 0.3s ease-in-out;
    text-align: center;
}

.en-savoir-plus:hover {
    text-decoration: underline;
}

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

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

.slider-dot.active,
.slider-dot:hover {
    background-color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .slider-text {
        width: 90%;
        max-width: none;
        padding: 10px;
    }
}
