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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1c1814; 
}

.bandeau {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 50px;
    background: rgba(28, 24, 20, 0.95);
    border-bottom: 2px solid #C5A059;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    z-index: 1000;
}

.bandeau h1 {
    font-family: 'Cinzel', serif;
    color: #C5A059;
    font-size: 1.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
}

nav li {
    display: inline-block;
    margin-left: 2rem;
}

nav a {
    text-decoration: none;
    color: #e8e2d2;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #C5A059;
}