/* Styles généraux */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Conteneur principal */
.contact {
    max-width: 800px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Formulaire */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

label {
    font-weight: 600;
    color: #2c3e50;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

textarea {
    resize: none;
    height: 120px;
}

/* Bouton d'envoi */
button {
    background-color: #3a9d5d;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #2c7a46;
    transform: scale(1.05);
}

button:active {
    transform: scale(0.95);
}

/* Footer */
footer {
    background-color: #212529;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    font-size: 0.9rem;
}

/* ✅ Adaptation mobile */
@media (max-width: 768px) {
    .contact {
        max-width: 90%;
        padding: 20px;
    }

    .contact h1 {
        font-size: 1.8rem;
    }

    .contact p {
        font-size: 1rem;
    }

    input, textarea {
        font-size: 1rem;
    }

    button {
        font-size: 1rem;
        padding: 12px;
        max-width: 100%;
    }

    footer {
        padding: 10px;
        font-size: 0.8rem;
    }
}