/* Corps général */
body {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin: 0;
  padding: 0;
  background-color: #F3F3F3;
  max-width: 900px;
  margin: 0 auto;
}

#divbodyholder {
  padding: 0px;
  background-color: #DDD;
  width: 100%;
  max-width: 1024px;
  margin: auto;
}

#divbody {
  border: solid 1px #ccc;
  background-color: #fff;
  padding: 0 80px 7px;
  position: relative;
}

/* Menu */
.headerholder {
  background-color: #f9f9f9;
  border: solid 1px #ccc;
  border-top-width: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

.main-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1024px;
  padding: 0 20px;
  box-sizing: border-box;
}

.main-menu ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px; /* réduit l’espace entre les <li> */
}

/* Blocs gauche et droit */
.menu-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.menu-right {
  display: flex;
  justify-content: flex-start; /* Alignement des liens à gauche dans le bloc droit */
  align-items: center;
}

/* Liens */
.main-menu a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 8px 12px;
  line-height: 54px;
  transition: background-color 0.3s ease;
}

.main-menu a:hover {
  background-color: #eaeaea;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  #divbodyholder {
    max-width: 94%;
    margin: auto auto;
  }

  #divbody {
    padding: 0 15px 16px;
  }

  h3 {
    font-size: 1.3rem;
    margin-top: 24px;
  }

  blockquote {
    padding: 8px 16px;
  }

  .main-menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-right {
    margin-top: 10px;
  }
}
