/* ===== Header commun ===== */
header {
  width: 100%;
  position: relative;
  padding: 10px 20px;
  box-sizing: border-box;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logos */
.logo-desktop {
  display: block;
  max-height: 100px;
  margin:20px 0;
}

.logo-mobile {
  display: none;
  width: 50%;
  max-width: 150px;
  height: auto;
}

/* Menu centré */
.controls {
  display: flex;
  gap: 10px;
}

/* Boutons du menu */
.controls .btn {
  background: #222;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  font-family: 'Crystal-Black', sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}
.controls .btn.active {
  background: #cbd503;
  color: #000;
}

/* Hover pour tous les boutons du menu */
.controls .btn:hover,
nav .btn:hover {
  background: #fff;
  color: #000;
}

/* Cacher certains éléments sur mobile */

@media(max-width: 767px){
  .desktop-only {
    display: none; /* caché sur mobile */
  }
}

/* Bouton cœur spécifique */
#btn-fav {
  font-family: inherit;
  font-size: 1.2em;
}

/* Dates à droite */
.header-right {
  text-align: right;
  font-family: 'Crystal-Black', sans-serif;
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Back-button général */
#back-button {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1.5em;
  background: none;
  font-weight:bold;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

/* ===== Responsive ===== */
@media(max-width:767px){
  .logo-desktop { display: none; }
  .logo-mobile { display: block; margin: 0 auto; }

  .header-right { display: none; }

  .header-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}


/* A supprimer pour afficher le bouton "bientôt" */
#btn-upcoming{display:none;}