/* Header général */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  height: 50px;
  z-index: 1000;
}

header .logo img {
  height: 40px;
}

/* Menu horizontal (PC) */
.divbtnMenu {
    display: flex;
    flex-wrap: wrap;        /* permet aux éléments de passer à la ligne */
    align-items: center;    /* vertical */
    justify-content: center;/* horizontal */
}

.btnMenu {
  text-decoration: none;
  color: #F6A272;
  padding: 5px 15px;
  margin:0px 10px;
  border-radius: 18px;
  transition: background-color 0.3s;
}

.btnMenu:hover {
  background-color: #FFFFFF;
}

/* Hamburger menu (mobile) */
#menuToggle {
  display: none; /* caché par défaut (PC) */
  font-size: 1.5em;
  background: none;
  border: none;
  cursor: pointer;
}

/* Off-canvas menu */
#sideMenu {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background-color: #FDF0DD;
  flex-direction: column;
  padding-top: 60px;
  transition: right 0.3s;
  z-index: 999;
  display: flex;
}

#sideMenu a {
  padding: 15px 20px;
  text-decoration: none;
  color: #F6A272;
  border-bottom: 1px solid #F6CBB3;
}

#sideMenu a:hover {
  background-color: #F6CBB3;
}

#sideMenu.open {
  right: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .divbtnMenu { display: none; }  /* cacher menu horizontal */
  #menuToggle { display: block; } /* afficher hamburger */
}