/* Carousel styles */
.carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

/* Box remplaçant le SVG (ligne 27) */
.presta-box {
    background: #fff;
    padding: 28px 26px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.presta-box-title {
    font-family: 'Flatlion', 'Dancing Script', 'Brush Script MT', cursive;
    font-size: 6.2rem;
    font-weight: 400;
    line-height: 1;
    margin: 6px 0 60px;
    color: #000;
}

.presta-box-text {
    font-family: 'Antic Didone', Georgia, 'Times New Roman', serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}
/* Variations pour la box presta2 (titre sur 2 lignes) */
.presta-box-title--sm { font-size: 5rem; }
.presta-box-title--tight { margin: 6px 0 10px; }
.presta-box-title--second { margin: 6px 0 40px; }

@media (max-width: 768px) {
    .carousel-container {
        height: 200px;
        margin-top:30px
    }

    .presta-box-title {
        font-size: 4.2rem;
    }

    .co-header{
        display:none;
    }

}
