html, body {
    height: 100%;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-image: url('fond.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}
body {
    padding-top: 120px;
    flex: 1 0 auto;
}
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url('banniere.png');
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-wrap: nowrap;
}
.header-gauche {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.header-gauche h1 {
    display: none;
}
.header-droite {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
}
.logo {
    height: 110px;
    margin-top: 5px;
    padding: 0;
    width: auto;
}
nav {
    margin: 0 40px 5px 0;
}
nav ul {
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
}
nav ul li a {
    font-family: 'Ribeye', cursive;
    font-size: 1.1rem;
    color: #000;
    text-decoration: none;
}
footer {
    background-color: #f2c98c;
    text-align: center;
    padding: 2rem 1rem;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    margin-top: auto;
    flex-shrink: 0;
}
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer ul li {
    display: inline-block;
    margin: 0 1rem;
}
footer ul li a {
    color: black;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}
footer p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    .header-droite {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    .logo {
        height: 80px;
    }
}