/* --- Mobile first (par défaut) --- */

.titre {
    margin-bottom: 5%;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    white-space: normal;  /* autorise retour à la ligne */
    max-width: 250px;     /* limite la largeur */
    margin-left: auto;    /* centre horizontalement */
    margin-right: auto;
    width: 100%;
}

.form-wrapper {
    align-items: center;
    margin-bottom: 10%;
    margin-left: 10%;
    margin-right: 10%;
}

form.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;                 /* espace entre les champs */
}

form.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: clamp(1rem, 2.5vw, 2rem);
}

form.contact-form input,
form.contact-form select,
form.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: clamp(1rem, 1vw, 1.5rem);
    background-color: #F3E1CF; /* beige */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
}

form.contact-form textarea {
    resize: vertical;
    min-height: 300px;
}

form.contact-form button {
    background-color: #2A4031; /* vert */
    color: white;            /* texte beige */
    padding: 0.75rem;
    font-size: clamp(1rem, 2.5vw, 2rem);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form.contact-form button:hover {
    background-color: #1f2d25; /* vert plus foncé */
}

.flash-success {
    background-color: #28a745;
    color: white;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    text-align: center;
}
