.carousel-accueil {
    position: relative;
    overflow: hidden;
    width: 100vw;
    max-width: 100%;
    height: 220px;
}
.carousel-accueil .carousel-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s;
    z-index: 0;
}
.carousel-accueil .carousel-slide.active {
    opacity: 1;
    z-index: 1;
}
.carousel-accueil img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.carousel-nav {
    position: absolute;
    left: 0; right: 0;
    bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    padding: 0;
    border-radius: 50%;
    border: none;
    background: #f1ebe5;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.2s;
    box-sizing: border-box;
}
.carousel-dot.active {
    opacity: 1;
    background: #c3b1a2;
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid #1d1d1b;
    font-size: 1.4em;
    color: #1d1d1b;
    cursor: pointer;
    z-index: 3;
    padding: 0 6px;
    border-radius: 50%;
    transition: background 0.2s;
}
.carousel-arrow-left {
    left: 8px;
}
.carousel-arrow-right {
    right: 8px;
}
.carousel-arrow:hover {
    background: #c3b1a2;
    border: 1px solid #f1ebe5;
    color: #f1ebe5;
}
.carousel-content-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    transform: translateY(-50%);
    padding: 0 48px; /* espace à gauche et à droite pour les flèches */
    box-sizing: border-box;
}
.carousel-desc {
    background: transparent;
    color: #1d1d1b;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 1em;
    font-family: 'The Seasons Bold', sans-serif;
    font-weight: bold;
    pointer-events: auto;
    margin: 0 8px;
    max-width: 100%;
    text-align: center;
    word-break: break-word;
}
.carousel-btn {
    pointer-events: auto;
    text-decoration: none;
    font-size: 1em;
    font-family: 'The Seasons Bold', sans-serif;
    padding: 8px 28px;
    margin: 0 8px;
    color: #1d1d1b;
    background: transparent;
    border: 1px solid #1d1d1b;
    border-radius: 50px;
}
.carousel-btn:hover {
    background: #c3b1a2;
    color: #f1ebe5;
    border-color: #f1ebe5;
}

/* Responsive pour desktop */
@media (min-width: 600px) {
    .carousel-accueil {
        height: 320px;
    }

    .carousel-desc {
        font-size: 1.1em;
        padding: 8px 20px;
        margin-top: 16px;
    }
    .carousel-btn {
        font-size: 1.1em;
        padding: 8px 28px;
    }
    .carousel-dot {
        width: 14px;
        height: 14px;
    }
    .carousel-arrow {
        font-size: 2em;
        padding: 0 12px;
    }
}

@media (min-width: 1200px) {
    .carousel-accueil {
        height: 700px;
    }

    .carousel-desc {
        font-size: 2.4em;
        padding: 12px 24px;
        margin-top: 20px;
    }
    .carousel-btn {
        font-size: 2.4em;
        padding: 10px 32px;
    }
    .carousel-dot {
        width: 16px;
        height: 16px;
    }
    .carousel-arrow {
        font-size: 2.4em;
        padding: 0 16px;
    }
}