/* Fond sombre pour bien faire ressortir la carte */
body {
    background-color: #1293b2;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

/* Conteneur principal */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 40px;
    justify-content: space-between;
}

/* Zone infos de contact */
.contact-info {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

/* Titres */
h1, h2 {
    color: #FFA500; /* Orange dynamique */
    text-transform: uppercase;
}
h3 {
	font-size: 24px;
	font-weight: bold;
}

/* Liens */
.contact-info a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Icônes des réseaux sociaux */
.social-links {
    margin-top: 15px;
}

.social-links a img {
    width: 40px;
    margin: 0 10px;
    transition: transform 0.3s ease-in-out;
}

.social-links a img:hover {
    transform: scale(1.1);
}

/* Zone carte Google Maps */
.map-container {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.map-container iframe {
    width: 100%;
    max-width: 800px;
    height: 400px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-info, .map-container {
        width: 90%;
        margin-bottom: 20px;
    }

    .map-container iframe {
        max-width: 100%;
    }
}
