/* --- Styles pour la Page Contact --- */

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h1 {
    font-family: var(--font-title);
    font-size: 3rem;
    color: var(--primary-color);
}
.contact-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0.5rem auto 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Responsive : passe à 1 colonne sur mobile */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Style commun pour les titres de section */
.contact-form-wrapper h3, .contact-info-wrapper h3 {
    font-family: var(--font-title);
    color: var(--fpv-green);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}
.contact-form-wrapper h3 i, .contact-info-wrapper h3 i {
    margin-right: 0.75rem;
}

/* --- Styles du Formulaire --- */
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-tech, 'Source Code Pro', monospace);
    margin-bottom: 0.5rem;
    color: #ccc;
}

.form-group input, .form-group textarea {
    background-color: #0a0a0c;
    border: 1px solid #333;
    color: var(--text-color);
    padding: 0.8rem;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
}

textarea {
    resize: vertical; /* Permet le redimensionnement vertical */
}

#contact-form button {
    margin-top: 1rem;
    align-self: flex-start; /* Aligne le bouton à gauche */
}

#form-status {
    margin-top: 1rem;
    font-family: var(--font-tech, 'Source Code Pro', monospace);
    font-weight: bold;
}

/* --- Styles de la partie Droite (Carte & Sociaux) --- */
.map-container {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    filter: invert(90%) hue-rotate(180deg); /* La magie pour un thème sombre ! */
}

.socials-wrapper {
    margin-top: 2rem;
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-social-links a {
    background-color: var(--light-bg);
    padding: 1rem;
    border-radius: 5px;
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}
.contact-social-links a:hover {
    background-color: #2a2a2a;
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.contact-social-links a i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}