/* ==========================================================================
   PAGE CONTACT - DESIGN ÉLÉGANT
   ========================================================================== */

.contact-header {
    margin-top: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--black);
    padding-bottom: 40px;
}

.contact-main-title {
    font-family: "FetteEngD W03 Regular", sans-serif !important;
    font-size: clamp(3rem, 5vw, 5rem);
    text-transform: uppercase;
    line-height: 0.9;
    margin: 20px 0;
}

.contact-intro {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-weight: 300;
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
}

.contact-grid {
    display: flex;
    gap: 80px;
    margin-bottom: 100px;
}

/* FORMULAIRE */
.contact-form-container {
    flex: 1;
}

.artlab-form .form-group {
    margin-bottom: 40px;
    border-bottom: 1px solid #ddd; /* Ligne fine sous chaque champ */
    transition: border-color 0.3s;
}

.artlab-form .form-group:focus-within {
    border-color: var(--black);
}

.artlab-form label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 10px;
}

.artlab-form input, 
.artlab-form textarea {
    width: 100%;
    border: none;
    padding: 10px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.btn-submit {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
}

.btn-submit:hover {
    background: var(--yellow);
    color: var(--black);
}

/* INFOS & MAP */
.contact-infos {
    flex: 1;
}

.map-wrapper {
    margin-bottom: 40px;
    filter: grayscale(1); /* Carte en noir et blanc pour le style Artlab */
    border: 1px solid var(--black);
}

.info-item {
    margin-bottom: 25px;
}

.info-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.info-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.6;
}

.google-link {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    text-decoration: none;
    color: var(--black);
    border-bottom: 1px solid var(--black);
    padding-bottom: 2px;
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-grid {
        flex-direction: column;
    }
}

/* Indicateur visuel de validité */
.artlab-form input:focus:invalid, 
.artlab-form textarea:focus:invalid {
    border-bottom: 1px solid #ff4d4d; /* Rouge si invalide */
}

.artlab-form input:focus:valid, 
.artlab-form textarea:focus:valid {
    border-bottom: 1px solid #2ecc71; /* Vert si valide */
}

/* On s'assure que le champ honeypot est bien caché */
.hp-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}