html, body {
  margin: 0;
  padding: 0;
  font-family: 'Cinzel', serif;
  background-color: #0e0e0e;
  color: #f1e7d0;
  font-size: 16px;
}

header {
  background-color: #460c0c;
  padding: 0.5rem 2rem;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e0c179;
  font-weight: bold;
  font-size: 1.3rem;
}

.logo img {
  height: 80px;
}

.logo span {
  position: relative;
  left: 25px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  right: 30px;
}

.nav-links a {
  color: #f4e4c0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
  font-size: 1.1rem;
}

.nav-links a:hover {
  color: #ffd983;
}

.footer {
  background-color: #1c1c1c;
  text-align: center;
  padding: 1rem;
  font-size: 0.95rem;
}

.menu-icon {
  display: none;
  font-size: 2rem; 
  color: #fff;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

main {
  max-width: 900px;
  margin: auto;
}

section {
  margin-bottom: 3rem;
}

main h2 {
  color: #d4a24c;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

main ul {
  list-style: none;
  padding-left: 0;
}

main li::before {
  content: "•";
  color: #d4a24c;
  margin-right: 0.6em;
}

main em {
  color: #c3b090;
  font-style: italic;
}

/* EN-TÊTE */
.middle h1 {
  font-size: 2.6rem;
  color: #d4a24c;
  text-align: center;
  margin-top: 2rem;
}

.middle p {
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 1rem;
    background-color: #460c0c;
    padding: 1rem;
    border-radius: 5px;
    z-index: 10;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }
}