body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background: #003366; /* Bleu foncé */
    color: #fff;
    padding: 10px;
    position: relative;
}

.header-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.address {
    font-size: 14px;
    margin-right: auto;
}

h1 {
    margin: 0;
    text-align: center;
    flex-grow: 1;
}

.phone a {
    color: #fff;
    text-decoration: underline;
}

nav {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.menu-item {
    background: linear-gradient(45deg, #ff6f61, #6a1b9a, #fbc02d, #2e7d32);
    color: #fff;
    padding: 10px 20px;
    margin: 5px;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}

.menu-item:hover {
    background: linear-gradient(45deg, #ff8a80, #7e57c2, #fdd835, #66bb6a);
}

main {
    text-align: center;
    padding: 20px;
    padding-bottom: 60px; /* Ajoute de l'espace pour le pied de page */
}

img {
    max-width: 100%;
    height: auto;
}

footer {
    background: #003366; /* Bleu foncé */
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Styles pour les écrans plus petits */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .address {
        margin-bottom: 10px;
    }

    nav {
        flex-direction: column;
    }

    .menu-item {
        margin: 5px 0;
    }
}
