#view-detail {
  padding: 10px 10px 40px 10px; /* marge horizontale */
  position: relative;
  background:#FFFFFFAA;
  color:#000;
  
}

.icon {
	width:50px;
	margin:20px 20px 20px 0;
	
}

#view-detail .detail {
  max-width: 700px;   /* largeur maximale de la fiche */
  margin: 0 auto;     /* centrage horizontal */
  padding: 0 10px;    /* marge intérieure */
}

/* Back button */
.back-btn, #back-button {
  position: absolute;
  top:10px;
  left:10px;
  font-size:1.5em;
  background:none;
  border:none;
  color:#fff;
  cursor:pointer;
  z-index:10;
}

/* Detail header */
.detail-header {
  display:flex;
  justify-content: space-between;
  align-items:center;
  margin-top:40px; /* espace sous la flèche */
}

/* Nom de l'artiste */
.detail-header h2 {
  margin:0;
  text-transform: uppercase;
  font-family: "Crystal-Black", sans-serif;
  color:#000;
  font-size:1.5em;
}

/* Bouton cœur dans la fiche détail */
.detail-fav {
  width:48px;
  height:48px;
  background:none;
  border:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Date et heure sous le nom de l'artiste */
.date-time {
  margin: 5px 0 10px 0;
  font-size: 0.95em;
  color:#000;
}

/* Artiste style + pays */
.style-country {
  margin:2px 0 5px 0;
  font-size:0.9em;
  color:#000;
}



/* Badge long */
.badge-long {
  background:#e91e63;
  padding:3px 6px;
  border-radius:4px;
  display:inline-block;
  margin:5px 0;
  color:#000;
}

/* Description longue spéciale */
.special-long-description {
  margin:8px 0;
  font-style: italic;
  color:#000;
  line-height:1.4;
}

/* Description normale */
.description {
  margin:10px 0;
  color:#000;
  line-height:1.4;
}

/* Nom du lieu */
.venue-name {
  margin:10px 0 2px 0;
  font-family: "Crystal-Black", sans-serif;
  text-transform: uppercase;
  font-size: 1.2em;
}

/* Adresse du lieu */
.venue-address {
  float:right;
  margin-top:-20px;
  font-size:0.8em;
  text-align:right;
  
}

/* Conteneur image artiste avec badge court */
.artist-img-container {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  max-height: 300px;
  overflow: hidden;
  border:10px solid #cbd503;
  margin-bottom:10px;
  border-radius:6px;
}

.artist-img-container .artist-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.artist-img-container .badge.special-short {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #eb4f80;
  color: #000;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: bold;
}

/* Carte OpenStreetMap */
.map-container iframe {
  border-radius:6px;
  width:100%;
  height:300px;
  border:10px solid #eb4f80;
  box-sizing: border-box;

}

/* Police Crystal pour majuscules */
.uppercase {
  text-transform: uppercase;
  font-family: "Crystal-Black", sans-serif;
}

/* Overlay léger sur image de fond si nécessaire (pour cartes) */
.concert-card::before {
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.25);
  border-radius:6px;
}
