body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: #fff;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 90%;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 0.1rem 3rem;
  z-index: 1000;
  transition: transform 0.3s ease;
}

nav.hidden {
  transform: translateY(-100%);
}

.logo {
  display: flex;
  align-items: center;
  height: 50px;
}

.imageLogo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-toggle {
  display: none; /* Masqué par défaut sur grand écran */
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.navRight {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.navRight ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navRight ul li a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out, font-size 0.3s;
  font-size: 0.9rem;
}

.navRight ul li a:hover {
  color: #e16900;
  font-size: 0.95rem;
}

.navRight .social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.navRight .social-icons a {
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.3s, color 0.3s;
}

.navRight .social-icons a:hover {
  transform: scale(1.2);
  color: rgba(255, 255, 255, 0.7);
}

/* Music Container */
.music-container {
  max-width: 850px;
  margin: 70px auto;
  padding: 10px;
  text-align: center;
}

h1 {
  font-size: clamp(2rem, 8vw, 4rem);
  letter-spacing: 6px;
  margin-bottom: 45px;
  color: orange;
}

.music-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 20px;
  margin-bottom: 40px;
  gap: 20px;
}

.music-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 4px;
}

.details {
  text-align: center;
  flex: 1;
}

.details h3 {
  margin: 10px 0;
  font-size: clamp(1rem, 3vw, 1.5rem);
}

button {
  background-color: transparent;
  border: 1px solid orange;
  color: orange;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

button:hover {
  background-color: orange;
  color: #000;
}

hr {
  border: 0;
  border-top: 3px solid #fdc97c;
  margin: 20px 0;
}

footer {
  margin-top: 25px;
  background: #101010;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

/* Media Queries pour la responsivité */
@media (max-width: 768px) {
  .menu-toggle {
      display: block; /* Affiche le menu burger sur petits écrans */
  }

  .navRight {
      display: none; /* Masqué par défaut sur mobile */
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.9);
      padding: 1rem;
      flex-direction: column;
  }

  .navRight.active {
      display: flex; /* Affiche le menu quand actif */
  }

  .navRight ul {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
  }

  .navRight .social-icons {
      justify-content: center;
  }

  .music-container {
      margin: 60px auto;
      padding: 15px;
  }

  .music-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding-inline: 0;
  }

  .music-item img {
      max-width: 200px;
  }

  .details {
      margin-top: 15px;
  }
}

@media (max-width: 480px) {
  nav {
      padding: 0.3rem 1rem;
  }

  .logo {
      height: 40px;
  }

  h1 {
      margin-bottom: 30px;
      letter-spacing: 4px;
  }

  .music-item {
      margin-bottom: 30px;
  }

  .music-item img {
      max-width: 150px;
  }

  button {
      padding: 8px 15px;
      font-size: 0.9rem;
  }
}