@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #f8f8f8;
    color: #333;
}

/* HEADER */
.header-top {
    background: #004466;
    color: #ffcc00;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

/* MENU RESPONSIVE */
nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: #005580;
    padding: 10px;
}
nav a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 20px;
    background: #0077aa;
    border-radius: 5px;
    margin: 5px;
    transition: 0.3s;
}
nav a:hover {
    background: #ffcc00;
    color: black;
}

/* CONTENU PRINCIPAL */
.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 85, 128, 0.3);
}

/* IMAGES */
.image-container {
    width: 90%;
    margin: 20px auto;
}
.image-container img {
    width: 100%;
    border-radius: 10px;
}

/* GOOGLE MAP */
.map-container {
    margin-top: 30px;
}

/* FOOTER */
footer {
    background: #004466;
    color: #ffcc00;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    margin-top: 40px;
}