/* ---------- Structure générale ---------- */

.container {
    margin: 0 16px;
}

/* ---------- Titre ---------- */
.contact-title {
    text-align: center;
}

/* ---------- Bloc carte + infos ---------- */
.contact-bloc {
    background-color: #FFFEFC;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* ---------- Carte Google Maps ---------- */
.contact-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

/* ---------- Infos horaires/email/tel ---------- */
.contact-infos {
    padding: 10px 20px;
    flex: 1;
}

.horaires>strong {
    display: block;
    margin-bottom: 0.75em;
}

.contact-infos ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1em 0;
}

.contact-infos li {
    margin-bottom: 4px;
}

.contact-infos a {
    color: inherit;
    text-decoration: none;
}

.contact-email {
    margin: 16px 0;
}

.contact-lisa,
.contact-tabea,
.contact-laure {
    margin-bottom: 16px;
}

/* ---------- Introduction ---------- */
.contact-intro {
    margin: 60px 0;
}

/* ---------- Formulaire ---------- */
.contact-form {
    margin: 0 auto 60px auto;
    width: 90%;
}

/* ---------- Styles Contact Form 7 ---------- */
.wpcf7-form label {
    display: block;
    margin-bottom: 1em;
    font-weight: bold;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 0.5em;
    border: 2px solid #C6E6E0;
    border-radius: 10px;
    background-color: #FFFEFC;
    box-sizing: border-box;
    margin-bottom: 1em;
}

.wpcf7-form select {
    font-size: 14px;
}

.btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto 0;
    width: 150px;
}

/* ---------- Responsive (Media Queries) ---------- */
@media screen and (min-width: 768px) {
    .container {
        margin: auto;
    }

    .contact-title {
        margin-bottom: 40px;
    }

    .contact-bloc {
        flex-direction: row;
        align-items: stretch;
        margin-bottom: 80px;
    }

    .contact-map {
        flex: 6;
    }

    .contact-map iframe {
        height: 100%;
        min-height: 400px;
    }

    .contact-infos {
        flex: 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 40px;
    }

    .contact-form {
        width: 65%;
    }

    .contact-map iframe {
        height: 600px;
    }

    .wpcf7-textarea {
        margin-bottom: 60px;
    }
}