/* TITRE */
h1 {
    text-align: center;
    margin-bottom: 20px !important;
}

/* IMAGE PAYSAGE */
.image-paysage {
    width: 90%;
    margin: 0 auto 20px auto;
    border-radius: 10px;
    overflow: hidden;
}

.image-paysage img {
    width: 100%;
    display: block;
    border-radius: 10px;
    height: 250px;
    object-fit: cover;
}

/* GALERIE MINIATURES */
.mini-gallery {
    display: flex;
    justify-content: center;
    gap: 1rem;
    overflow-x: auto;
    padding: 0 1rem;
    margin-bottom: 20px;
}

.mini-gallery .thumb img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

/* CONTENU PRINCIPAL */
.texte-single {
    max-width: 1100px;
    margin: 0 auto 20px auto;
    width: 90%;
}

/* TARIFS */
.tarifs {
    background: #FFFEFC;
    padding: 20px 30px;
    padding-bottom: 30px;
    width: 90%;
    margin: 0 auto 20px;
    border-radius: 10px;
}

.tarifs p {
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.tarifs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    font-weight: 500;
}

.tarifs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    margin: 0 auto;
    width: 100%;
}

.tarifs li .label,
.tarifs li .price {
    white-space: nowrap;
}

.tarifs li .leader {
    flex: 1;
    border-bottom: 1px dotted #999;
    margin: 0 0.5rem;
    height: 0;
}

/* BOUTONS */
.cta,
.retour {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem auto;
}

.retour {
    margin-top: 1rem;
}

/* RESPONSIVE - DESKTOP */
@media (min-width: 768px) {
    h1 {
        margin-bottom: 40px !important;
    }

    .image-paysage {
        width: 800px;
    }

    .image-paysage img {
        height: 500px;
    }

    .mini-gallery {
        justify-content: center;
        margin-bottom: 40px;
    }

    .mini-gallery .thumb img {
        width: 100px;
        height: 100px;
    }

    .texte-single {
        margin: 0 auto 40px auto;
    }

    .tarifs {
        margin: 0 auto 40px;
        padding: 20px 40px;
        padding-bottom: 40px;
    }

    .tarifs ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 2rem;
    }

    .tarifs li {
        /* on conserve le flex personnalisé */
        padding: 0;
        width: 300px;
        margin: 0 auto;
    }

    /* Les réglages de .tarifs li restent valides : la leader s’adapte */

    .cta {
        gap: 2rem;
    }

    .retour {
        margin-top: 3rem;
    }
}