#intro {
    color: white;
    background-image: url("../img/fleurs-3.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 5% 50px 5%;
}


.champsaur {
    color: var(--really-really-dark-purple);
    text-align: center;
    padding: 50px 5% 0 5%;
    gap:10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.region {
    color: var(--really-really-dark-purple);
    padding: 100px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.region div {
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.grande-image {
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('../img/grande-ourse/porte.JPG');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width:100%;
    height: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.grande-image h2, .grande-image h4 {
}


.photos {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    display: grid;
    margin: 50px 5%;
}

/* Conteneur de la galerie */
.gallery {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
    padding: 8px;
}

/* Images dans la galerie */
.gallery img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;

}

.details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    color: var(--really-really-dark-purple);
}





.dot-list {
    list-style: none;
    padding-left: 0;
}
/* Ajoute un point avant chaque li */
.dot-list li {
    position: relative;
    padding-left: 1.2em; /* espace pour le point */
    margin-bottom: 1em;
}
.dot-list li::before {
    content: '•';        /* caractère « point » */
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;      /* pour centrer verticalement */
    font-size: 1.2em;    /* ajustez la taille si besoin */
    color: #333;         /* couleur du point */
}


@media (max-width: 768px) {
    .region, .photos {
        grid-template-columns: 1fr;
    }
}

.details a {
    color: var(--really-dark-purple);
    transition: 0.2s ease-in-out;
}

.details a:hover {
    color: var(--really-really-dark-purple);
    text-decoration: underline;
}