body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 10px 0;
  z-index: 1000;
  overflow-x: hidden;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  margin: 0 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  transition: color 0.3s;
  white-space: nowrap;
}

nav a:hover {
  color: gold;
}

.background-overlay {
  padding-top: 60px;
  min-height: 100vh;
  box-sizing: border-box;
}

.content-wrapper {
  max-width: 1000px;
  margin: 80px auto 0 auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.section {
  display: none;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.highlight {
  color: gold;
  font-weight: 600;
  font-size: 1.5em;
}

.highlight.small {
  font-size: 1.2em;
}

.origine-phrase {
  text-align: center;
  line-height: 1.8em;
  margin: 40px auto 30px auto;
  max-width: 800px;
}

.origines-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.origine-profil {
  text-align: center;
  max-width: 100%;
}

.origine-profil img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.origine-profil img:hover {
  transform: scale(1.05);
}

.bio-text {
  color: white;
  margin-top: 20px;
  font-size: 1.2em;
  line-height: 1.9em;
  text-align: justify;
  padding: 0 40px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.reseaux-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.reseau-icon {
  opacity: 0;
  transform: translateX(-30px);
  animation: apparition 0.6s ease-out forwards;
}

.reseau-icon:nth-child(1) { animation-delay: 0.2s; }
.reseau-icon:nth-child(2) { animation-delay: 0.4s; }
.reseau-icon:nth-child(3) { animation-delay: 0.6s; }
.reseau-icon:nth-child(4) { animation-delay: 0.8s; }

@keyframes apparition {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reseau-icon img {
  width: 55px;
  height: 55px;
  transition: transform 0.3s, filter 0.3s;
  filter: brightness(1.1);
}

.reseau-icon img:hover {
  transform: scale(1.2);
  filter: brightness(1.5);
}

#reseaux .icon {
  color: #FFD700;
  font-size: 1.6em;
}

#contact p {
  margin: 10px 0;
  font-size: 1.1em;
}

.label {
  color: gold;
  font-weight: bold;
}

#contact a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 90%;
  max-width: 500px;
  margin-bottom: 15px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
}

.contact-form button {
  padding: 10px 20px;
  background-color: gold;
  color: black;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #e6c200;
}

.logo-container {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

.logo {
  width: 240px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s;
  position: relative;
  z-index: 5;
  border-radius: 20px;
}

.logo:hover {
  transform: scale(1.05);
}

.glow {
  filter: drop-shadow(0 0 15px gold);
}

#overlay-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  color: gold;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 10;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* ------- NOUVELLE GALERIE CONCERTS ------- */
.concerts-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-top: 20px;
}

.concerts-gallery img {
  width: 300px;
  max-width: 90%;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
  transition: transform 0.3s ease;
}

.concerts-gallery img:hover {
  transform: scale(1.05);
}

/* ----------- VERSION MOBILE ------------ */
@media (max-width: 768px) {
  .background-overlay {
    padding-top: 80px;
  }

  .content-wrapper {
    margin: 60px 10px;
    padding: 15px;
  }

  nav ul {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 0 10px;
    scrollbar-width: none;
  }

  nav ul::-webkit-scrollbar {
    display: none;
  }

  nav li {
    flex: 0 0 auto;
    margin: 0 15px;
  }

  .highlight {
    font-size: 1.3em;
  }

  .origine-phrase {
    font-size: 1em;
    margin: 20px auto;
  }

  .origines-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .origine-profil img {
    width: 140px;
    height: 140px;
  }

  .bio-text {
    font-size: 1em;
    padding: 0 20px;
  }

  .reseaux-icons {
    gap: 15px;
  }

  .reseau-icon img {
    width: 45px;
    height: 45px;
  }

  .logo {
    width: 160px;
  }

  #overlay-play-button {
    font-size: 48px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    max-width: 100%;
  }

  .concerts-gallery img {
    width: 80%;
  }
}
