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

header {
    background: linear-gradient(45deg, #ff5722, #f44336); /* Dégradé orange et rouge */
    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, #00bcd4, #03a9f4, #2196f3, #3f51b5); /* Dégradé bleu */
    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;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-item:hover {
    background: linear-gradient(45deg, #03a9f4, #00bcd4, #2196f3, #3f51b5);
}

.menu-letter {
    margin-left: 10px;
    font-weight: bold;
}

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: linear-gradient(45deg, #ff5722, #f44336); /* Dégradé orange et rouge */
    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;
    }
}
