/* --- SECTION CONTACT & FORMULAIRE --- */

.contact-form-container {
    margin-top: 20px;
}

#form-response {
    margin-bottom: 20px; 
    padding: 15px; 
    border-radius: 12px; 
    display: none; 
    font-weight: 600; 
    text-align: center;
    transition: all 0.3s ease;
}

.contact-style-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-style-form .input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-style-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.contact-style-form label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--bleu-lagon-sombre);
}

.contact-style-form input, 
.contact-style-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    border: 1.5px solid var(--bordure);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    background-color: var(--blanc);
    transition: all 0.3s ease;
}

.contact-style-form input:focus, 
.contact-style-form textarea:focus {
    outline: none;
    border-color: var(--bleu-lagon-moyen);
    background-color: var(--bleu-lagon-clair);
}

.contact-style-form textarea {
    resize: vertical;
}

.contact-style-form .form-footer {
    margin-top: 10px;
}

#form-response {
    margin-bottom: 20px;
    padding: 10px;
    font-weight: bold;
    border-radius: 4px;
    text-align: center;
}

/* --- RESPONSIVE CONTACT --- */

@media (max-width: 600px) {
    .contact-style-form .input-row {
        grid-template-columns: 1fr;
    }
    
    .contact-style-form .btn-primary {
        width: 100%;
    }
}