/* ============= FONTS ============= */
@font-face {
  font-family: "matura_mt_script_capitalsRg";
  src: url("assets/webfonts/maturasc_1-webfont.woff2") format("woff2"),
    url("assets/webfonts/maturasc_1-webfont.woff") format("woff"),
    url("assets/webfonts/maturasc_1-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* ============= GENERAL ============= */
html,
body {
  width: 100%;
  overflow-x: hidden;
  color: #ffffff;
  background-color: #121212;
}

/* ============= TYPOGRAPHY ============= */
h1 {
  font-size: 40px;
  font-family: "matura_mt_script_capitalsRg";
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

p {
  font-size: 16px;
}

.thetitle {
  margin-bottom: 30px;
  margin-top: 50px;
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  animation: fadeIn 1.5s ease-in-out;
}

.titre {
  margin-bottom: 50px;
}

.colortitle1 {
  color: rgb(219, 145, 145);
}

.credit-photo {
  font-size: 12px;
  color: rgb(219, 145, 145);
  text-align: center;
  font-style: italic;
}

.petite-police {
  font-size: 12px;
}

.note {
  font-size: 12px;
  font-style: italic;
}

/* ============= HEADER ============= */
.bloc_header {
  background-color: #000000;
  width: 100%;
}

.bandeau_dev {
  background-color: #ff0000;
  color: #ffffff;
}

/* ============= NAVIGATION ============= */
/* Menu navbar */
.link-navbar {
  font-size: 20px;
}

/* Menu header classic */
.menu {
  width: 100%;
  height: 10%;
  border-top: 2px solid #151e29;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
}

.menu ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: -2px;
}

.menu ul li {
  list-style: none;
  margin: 5px 50px;
  padding: 15px;
}

.menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 22px;
  font-family: "matura_mt_script_capitalsRg";
  font-weight: 300;
}

.menu ul li a:hover {
  border-bottom: rgb(0, 0, 0) solid 1px;
  color: rgb(0, 0, 0);
}

/* Menu Burger */
.menu_burger {
  display: none;
  border: 1px solid #151e29;
  margin: 5px;
  border-radius: 10px;
  padding: 5px;
  cursor: pointer;
}

.menu_burger svg {
  width: 30px;
  height: 30px;
}

.menu_burger_close {
  display: none;
  cursor: pointer;
}

.menu_burger_close svg {
  width: 30px;
  height: 30px;
}

.menu_nav {
  z-index: 9999;
    /* Valeur très élevée */
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
}

/* ============= HERO SECTIONS ============= */
.hero-section {
  position: relative;
  overflow: hidden;
  height: 70vh;
}

.parallax-container {
  height: 100%;
  position: relative;
}

.parallax-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateZ(0);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  color: white;
  text-align: center;
}

.heroimg {
  width: 100%;
  height: 20em;
  object-fit: cover;
  object-position: 0% 15%;
}

.heroimg2 {
  width: 100%;
  height: 5em;
  object-fit: cover;
  object-position: 0% 15%;
}

.hero2 {
  margin: 50px 0px;
}

/* ============= PROJECT SECTION ============= */
.project-intro {
  position: relative;
  padding: 25px 30px;
  margin-bottom: 35px;
  background-color: #222222;
  /* Fond sombre */
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  color: #ffffff;
}

.project-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #ff3b3b, #d9230f);
  /* Dégradé rouge */
  box-shadow: 0 0 15px rgba(217, 35, 15, 0.7);
  /* Lueur rouge */
}

.project-intro::after {
  content: '"';
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-size: 120px;
  color: rgba(255, 255, 255, 0.05);
  font-family: serif;
}

.project-intro .lead {
  position: relative;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  z-index: 1;
}

/* Animation subtile au survol */
.project-intro:hover::before {
  width: 7px;
  transition: width 0.3s ease;
}

.process-title {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.process-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #dc3545;
}

.process-items {
  margin-top: 30px;
}

.process-item {
  display: flex;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.process-item:hover {
  transform: translateX(10px);
}

.process-icon {
  flex: 0 0 60px;
  font-size: 24px;
  color: #dc3545;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-content {
  flex: 1;
}

.process-content h4 {
  margin-bottom: 10px;
  color: #b8b8b8;
}

/* ============= AUDIO PLAYER ============= */
.custom-player-container {
  padding: 20px;
  background-color: #404040;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.custom-audio-player {
  display: flex;
  flex-direction: column;
}

.player-album-art {
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 5px;
}

.player-album-art img {
  width: 80%;
  /* Réduit de 100% à 80% */
  max-width: 200px;
  /* Limite la taille maximale */
  height: auto;
  margin: 0 auto;
  /* Centre l'image horizontalement */
  display: block;
  /* Nécessaire pour que margin:auto fonctionne */
  transition: transform 0.3s ease;
}

.player-album-art:hover img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(220, 53, 69, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  background-color: rgba(220, 53, 69, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.player-controls {
  padding: 15px;
}

.song-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.song-title {
  font-weight: bold;
}

.progress-container {
  height: 5px;
  background-color: #333;
  border-radius: 3px;
  margin-bottom: 10px;
  cursor: pointer;
}

.progress-bar-custom {
  height: 100%;
  width: 0;
  background-color: #dc3545;
  border-radius: 3px;
}

.time-info {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #aaa;
}

/* ============= BLOCS & CONTAINERS ============= */
.container_1 {
  color: #ffffff;
}

.bloc_1 {
  width: 50%;
  margin: 20px 0px;
}

/* Pochettes et logos */
.pochette1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-color: white;
}

.pochette2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-color: rgb(0, 0, 0);
}

.logo-container {
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.logo-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-container:hover .logo-img {
  transform: scale(1.05);
}

/* Sections de contenu */
.bloc_narration {
  background-color: #080000;
  border-radius: 10px;
  padding: 20px;
  margin: 50px 0px;
}

.bloc1 {
  background-color: #151e29;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 50px;
}

.bloc2 {
  background-color: #375a7f;
  border-radius: 10px;
  padding: 10px;
}

.bloc3 {
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #2c81ba;
  border-radius: 10px;
}

.bloc4 {
  background-color: #2c81ba;
  margin: 50px 0px;
}

.construction-alert {
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 5px;
  border-left: 4px solid #007bff;
}

/* ============= LOGOS ============= */
.logo {
  width: auto;
  height: 300px;
}

.logo_footer {
  width: auto;
  height: 200px;
  margin-top: 50px;
}

/* ============= FOOTER ============= */
.footer {
  background-color: rgb(99, 99, 99);
}

.menu_footer ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.menu_footer ul li {
  list-style: none;
  margin: 5px 50px;
  padding: 10px;
}

.menu_footer ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.menu_footer ul li a:hover {
  color: #000000;
}

.footer_bottom {
  background-color: rgb(0, 0, 0);
  font-size: 12px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  color: white;
}

.footer_bottom .span_red {
  color: #d9230f;
}

/* ============= LINKS & BUTTONS ============= */
.link-0 {
  text-decoration: none;
  font-size: 20px;
}

.link-0:hover {
  color: #d9230f;
}

.card-link {
  text-decoration: none;
}

.card-link:hover .card {
  text-decoration: none;
  color: #2c81ba;
}

.icone_message {
  color: white;
  text-decoration: none;
}

/* Back to top button */
#back-to-up {
  position: fixed;
  bottom: 0;
  right: 0;
  margin-right: 20px;
  margin-bottom: 20px;
  z-index: 1000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: white;
  background-color: #2c81ba;
  border: none;
}

/* ============= FORMS ============= */
.validate-form input:valid {
  background-color: rgb(192, 252, 192);
}

.validate-form input:invalid {
  background-color: rgb(253, 163, 163);
}

/* ============= ERROR PAGES ============= */
.error_404 {
  background-image: url("../assets/img/sabazios_8.jpg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  color: #000000;
  height: 110vh;
  display: flex;
  flex-direction: column;
  justify-content: top;
  align-items: center;
  width: 100%;
}

.bloc_error_404 {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 50px 0px;
  width: 50%;
  border-radius: 10px;
  margin-top: 50px;
}

/* ============= ADDITIONAL UTILITIES ============= */
.hr {
  width: 100%;
  border-top: 3px solid;
}

.warning {
  font-size: 24px;
}

.hidden {
  display: none;
}

/* Spans */
span.metod {
  color: #d9230f;
}

/* ============= ANIMATIONS ============= */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ============= RESPONSIVE STYLES ============= */
/* Menu responsive burger */
@media screen and (max-width: 1260px) {
  .menu ul li a {
    font-size: 16px;
  }
}

@media screen and (max-width: 960px) {
  .menu_burger {
    display: block;
  }

  .menu {
    position: relative;
  }

  .menu_nav {
    position: absolute;
    top: 0px;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #d9230f;
    transform: translateX(200%);
    display: none;
    transition: 0.3s transform ease-in-out;
  }

  .menu_nav.open {
    transform: initial;
    display: block;
  }

  .menu_nav ul {
    flex-direction: column;
    margin-right: 20px;
    margin: 0px;
    align-items: flex-start;
  }

  .menu_nav ul li {
    margin: 5px;
    padding: 5px;
  }

  .menu_burger_close {
    display: block;
  }
}

@media (max-width: 768px) {
  .thetitle {
    font-size: 2.5rem;
  }

  .hero-section {
    height: 50vh;
  }

  .process-item {
    flex-direction: column;
  }

  .process-icon {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 900px) {
  .logo_footer {
    width: auto;
    height: 100px;
    margin-top: 20px;
  }

  .menu_footer ul li a {
    font-size: 14px;
  }

  .footer_bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 16px;
  }

  p {
    font-size: 14px;
  }

  .logo {
    max-width: 200px;
    height: 200px;
  }

  .form-control {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
  }

  .btn {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
  }
}

.sound-clips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sound-clip-btn {
  background-color: #1a1a1a;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.sound-clip-btn:hover {
  background-color: #d9230f;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.sound-clip-btn.playing {
  background-color: #d9230f;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}

@media (max-width: 576px) {
  .sound-clips {
      flex-direction: column;
  }
}


.sound-clips2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sound-clip-btn2 {
  background-color: #1a1a1a;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.sound-clip-btn2:hover {
  background-color: #d9230f;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.sound-clip-btn2.playing {
  background-color: #d9230f;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

@media (max-width: 576px) {
  .sound-clips2 {
    flex-direction: column;
  }
}

/*bandeau infos*/

.news-ticker-container {
  display: flex;
  align-items: center;
  margin: 30px 0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #2c2c2c;
  /* Fond plus clair que précédemment */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.news-ticker-label {
  background-color: #ff3b3b;
  /* Rouge plus vif */
  color: white;
  padding: 10px 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 100px;
  justify-content: center;
}

.news-ticker {
  flex: 1;
  height: 40px;
  overflow: hidden;
  position: relative;
}

.news-ticker a {
  color: #ff6e5e;
}
.date_concert {
  background-color: white;
    color: #d9230f;
    /* Rouge */
    padding: 2px 5px;
    border-radius: 20px;
    /* Forme arrondie */
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.news-ticker a:hover {
  background-color: #efefef;
  /* Légèrement plus foncé au survol */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.ticker-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ticker-content {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  padding-left: 100%;
  align-items: center;
  /* Centrer verticalement */
  height: 100%;
  /* S'assurer que le contenu prend toute la hauteur */
}

.ticker-item {
  display: inline-block;
  padding: 0 30px;
  color: #ffffff;
  /* Blanc pour un meilleur contraste */
  font-weight: 500;
  /* Légèrement plus gras */
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  /* Ombre légère pour améliorer la lisibilité */
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Pause animation au survol */
.ticker-wrap:hover .ticker-content {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .news-ticker-container {
    flex-direction: column;
  }

  .news-ticker-label {
    width: 100%;
    padding: 5px;
  }

  .news-ticker {
    width: 100%;
  }
}

.rock-emoji {
  display: inline-block;
  font-size: 1.3rem;
  animation: rockOn 1.5s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes rockOn {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-15deg);
  }

  75% {
    transform: rotate(15deg);
  }
}

.project-intro:hover .rock-emoji {
  animation: rockOnFast 0.7s ease-in-out infinite;
}

@keyframes rockOnFast {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(15deg) scale(1.2);
  }
}

/*caroussel_galerie*/
/* Style pour la section galerie */
.gallery-section {
  padding: 20px 0 40px;
}

.gallery-section h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.gallery-section h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #d9230f;
}

/* Style du carousel */
#logoCarousel {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px 50px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.logo-container {
  width: 250px;
  height: 200px;
  margin: 0 15px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  background-color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.logo-container2 {
  width: 250px;
  height: 200px;
  margin: 0 15px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container2:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.logo-img {
  max-width: 90%;
  max-height: 90%;
  transition: transform 0.5s ease;
}

.logo-container:hover .logo-img {
  transform: scale(1.1);
}

/* Contrôles du carousel */
.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: rgba(217, 35, 15, 0.7);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background-color: #d9230f;
}

/* Indicateurs */
.carousel-indicators {
  bottom: -40px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #444;
  opacity: 0.5;
  margin: 0 5px;
}

.carousel-indicators button.active {
  background-color: #d9230f;
  opacity: 1;
}

/* Miniatures */
.carousel-thumbnails {
  margin-top: 25px;
  gap: 15px;
}

.thumbnail {
  width: 80px;
  height: 60px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thumbnail.active {
  opacity: 1;
  border-color: #d9230f;
}

.thumbnail:hover {
  opacity: 1;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Animation pour la transition des slides */
.carousel-item {
  transition: transform 0.8s ease-in-out;
}

/* Pour les écrans mobiles */
@media (max-width: 768px) {
  .carousel-logos {
    flex-direction: column;
  }

  .logo-container {
    width: 200px;
    height: 150px;
    margin: 10px auto;
  }

  #logoCarousel {
    padding: 20px;
  }
}

/*lecteur playlist*/

/* Conteneur principal de la playlist */
.audio-playlist-container {
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 30px;
  margin-bottom: 50px;
}

/* Zone du lecteur principal */
.player-main {
  padding: 20px;
}

.album-display {
  width: 240px;
  height: 240px;
  margin: 0 auto 25px;
  border-radius: 10px;
  overflow: hidden;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.album-display img {
  width: 80%;
  height: auto;
  transition: transform 0.5s ease;
}

.album-display:hover img {
  transform: scale(1.05);
}

.player-info {
  text-align: center;
  margin-bottom: 20px;
}

.player-info h3 {
  font-size: 24px;
  margin: 0 0 5px;
  color: #fff;
}

.player-info p {
  font-size: 16px;
  color: #aaa;
  margin: 0;
}

/* Barre de progression */
.player-progress {
  margin-bottom: 25px;
}

.time-info {
  display: flex;
  justify-content: space-between;
  color: #aaa;
  font-size: 14px;
  margin-bottom: 8px;
}

.progress-bar-container {
  position: relative;
  height: 6px;
  background-color: #333;
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
}

.progress-bar-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.2;
  background: linear-gradient(to right, #d9230f, #ff3b3b);
}

#progress-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(to right, #d9230f, #ff3b3b);
  width: 0;
  transition: width 0.1s linear;
}

/* Contrôles du lecteur */
.player-controls-main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.control-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background-color: #333;
}

.control-btn:hover {
  background-color: #444;
  transform: translateY(-2px);
}

.control-btn-main {
  width: 60px;
  height: 60px;
  font-size: 24px;
  background-color: #d9230f;
}

.control-btn-main:hover {
  background-color: #ff3b3b;
}

.control-btn-sm {
  width: 30px;
  height: 30px;
  font-size: 14px;
}

.control-btn.active {
  color: #d9230f;
}

/* Liste des morceaux */
.playlist-tracks {
  height: 100%;
  padding: 10px 0;
}

.playlist-title {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
  color: #fff;
}

.tracks-list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  max-height: 450px;
}

.track-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.track-item:hover {
  background-color: #2a2a2a;
}

.track-item.active {
  background-color: #2a2a2a;
}

.track-item.playing {
  background-color: rgba(217, 35, 15, 0.2);
}

.track-number {
  width: 30px;
  color: #aaa;
  font-size: 14px;
}

.track-info {
  flex: 1;
  padding-right: 15px;
  overflow: hidden;
  text-align: left;
}

.track-title {
  color: #fff;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-artist {
  color: #aaa;
  font-size: 14px;
}

.track-duration {
  color: #aaa;
  font-size: 14px;
  width: 50px;
  text-align: right;
}

.track-play {
  width: 30px;
  text-align: center;
  color: #fff;
  margin-left: 10px;
}

.track-item.playing .track-play i {
  color: #d9230f;
}

/* Pour la barre de défilement de la liste */
.tracks-list::-webkit-scrollbar {
  width: 6px;
}

.tracks-list::-webkit-scrollbar-track {
  background: #1a1a1a;
}

.tracks-list::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 992px) {
  .album-display {
    width: 200px;
    height: 200px;
  }

  .playlist-tracks {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .audio-playlist-container {
    padding: 15px;
  }

  .player-main {
    padding: 10px;
  }

  .album-display {
    width: 160px;
    height: 160px;
  }

  .track-info {
    max-width: 150px;
  }
}

/*page who*/
/* Hero section spécifique à la page Who */
.who-hero {
  height: 60vh;
}

/* Bloc d'histoire */
.story-block {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.story-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #d9230f, #ff3b3b);
}

.story-block-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
}

.story-icon {
  background-color: #d9230f;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(217, 35, 15, 0.4);
}

.story-block h2 {
  margin: 0;
  color: #fff;
  font-size: 26px;
}

.story-content {
  padding-left: 10px;
}

.story-content p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #ddd;
}

.story-content .lead {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 300;
  border-left: 3px solid #d9230f;
  padding-left: 15px;
}

/* Conteneur vidéo */
.video-container {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  margin: 40px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.video-container h2 {
  position: relative;
  padding-bottom: 15px;
  color: #fff;
}

.video-container h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #d9230f;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* Ratio 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin: 30px 0 20px;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
}

.video-caption {
  text-align: center;
  color: #aaa;
  font-style: italic;
  font-size: 14px;
}

/* Section membres du groupe */
.band-members {
  padding: 30px 0;
}

.band-members h2 {
  color: #fff;
  position: relative;
  padding-bottom: 15px;
}

.band-members h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #d9230f;
}

.member-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.member-photo {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.member-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.member-card:hover .member-photo img {
  transform: scale(1.05);
}

.member-info {
  padding: 20px;
}

.member-info h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 22px;
}

.member-role {
  color: #d9230f;
  font-weight: bold;
  margin-bottom: 15px;
}

.member-desc {
  color: #ddd;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .who-hero {
    height: 40vh;
  }

  .story-block {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .video-container {
    padding: 20px;
  }

  .member-photo {
    height: 200px;
  }
}