/* Styles pour le menu principal et le menu fixe en bas de page */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
}

header {
    background-color: #005133;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    display: flex;
    align-items: center;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav__link {
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
}

/* Styles pour le menu burger sur mobile */
.burger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
}

.burger-line {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
}

/* Styles pour le menu fixe en bas de page */
footer {
    background-color: #005133;
    color: #fff;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.bottom-nav__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

/* Ajoutez d'autres styles personnalisés selon vos besoins */
