/* Styles spécifiques pour la page Contact avec variables CSS */

.contact-container {
    background: var(--color-secondary);
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(76,68,94,0.12);
    padding: 40px 30px 30px 30px;
    max-width: 900px;
    margin: 40px auto;
    position: relative;
}

.contact-logo {
    display: block;
    margin: 0 auto 1em auto;
    height: 50px;
}

.contact-content {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.contact-left, .contact-right {
    flex: 1;
}

.contact-left h2, .contact-right h2 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.contact-left p {
    margin-bottom: 20px;
    color: var(--color-text);
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
    color: var(--color-text);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 20px;
    border-radius: 20px;
    border: none;
    background-color: var(--color-input-bg);
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--color-text);
    resize: none;
}

.contact-form {
    display: flex;
    flex-direction: column;

}

.contact-form button {
    background-color: var(--color-green);
    color: var(--color-white);
    border: none;
    border-radius: 20px;
    padding: 12px 40px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    align-self: center;
    transition: background 0.3s;
}

.contact-form button:hover {
    background-color: var(--color-green-hover);
}

.contact-right p {
    margin-bottom: 15px;
    color: var(--color-text);
}

.contact-map {
    width: 95%;
    height: 80%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(76,68,94,0.10);
    margin: 0 auto;
}

@media (max-width: 900px) {
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
}