body {
    background-color: #c6be99; /* Fond marron pour toutes les pages */
}

#background-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #c6be99;
    overflow: hidden;
    display: none; /* Caché par défaut */
}

body.home #background-slideshow {
    display: block; /* Visible uniquement sur la page d'accueil */
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    will-change: opacity;
    pointer-events: none;
}

.slide-bg.active {
    opacity: 1;
}

.slide-bg.previous {
    opacity: 1;
}

.overlay-content {
    background-color: #e4dfcf;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
