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

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

#where img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

iframe {
    margin-bottom: 20px;
    height: 300px;
    width: 100%;
}

.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: 0.5em;
}
.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 */
}

strong {
    font-weight: normal;
}




#contact {
    color: var(--really-really-dark-purple);
    padding: 0 15%;
}

.contact-form h2 {
    text-align: center;
}

.contact-form p {
    margin-bottom: 25px;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 25px;
    border: none;
    border-bottom: 1px solid var(--light-purple);
    font-size: 1em;
}
.contact-form textarea {
    resize: none;
    height: 120px;
}
.contact-form button {
    width: 100%;
    padding: 10px;
    background-color: var(--dark-purple);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color:var(--dark-purple);
    outline: none;
}

.ligne {
    gap: 50px;
    display: flex;
}


#form-message {
    margin-top: 10px;
    font-weight: bold;
    transition: opacity 0.3s;
}

main a {
    color: var(--really-really-dark-purple);
}

@media (max-width: 768px) {
    #where {
        grid-template-columns: 1fr;
    }

    #where img {
        display: none;
    }
}