* {
  margin: 10;
  padding: 10;
  box-sizing: border-box;



}

.pacifico-regular {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}

body {
  height: 100%;
  background-color: rgb(52, 52, 52);
  margin-bottom: auto;
  width: 100%;
  font-family: "Poppins", sans-serif;
}

.header {
  font-family: "Pacifico", cursive;
  position: fixed;
  height: 90px;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background-color: black;
  border-bottom: 2px solid rgb(224, 134, 82);
  padding: 0 20px;
  box-sizing: border-box;
}

.logo {
  font-size: 36px;
  color: rgb(28, 148, 28);
  text-decoration: none;
  font-weight: 300;
}

.navbar2 {
  display: flex;
  align-items: center;
  gap: 25px;
}

.navbar2 a {
  font-size: 30px;
  color: hsl(22, 70%, 60%);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: 0.2s ease;
}

.navbar2 a:hover {
  color: #fff;
  transform: scale(1.05);
}

/* MOBILE MENU BUTTON */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  height: 60px;
  width: 40px;
  gap: 6px;
  transition: transform 0.3s ease;
}

.menu-toggle span {
  display: block;
  height: 5px;
  background-color: #333;
  transition: all 0.3s ease;
}

/* Effet "styler rock" au clic */
.menu-toggle.clicked {
  animation: shake 0.6s ease forwards;
}

.menu-toggle.clicked span:nth-child(1) {
  transform: rotate(45deg) translateY(14px);
}

.menu-toggle.clicked span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.clicked span:nth-child(3) {
  transform: rotate(-45deg) translateY(-13px);
}


.menu-toggle span {
  background: hsl(22, 70%, 60%);
  height: 4px;
  width: 100%;
  border-radius: 2px;
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .navbar2 {
    position: absolute;
    top: 90px;
    right: 0;
    background-color: black;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .navbar2.show {
    max-height: 500px;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar2 a {
    font-size: 25px;
    margin: 10px 0;
  }

  .logo {
    font-size: 28px;
  }

  .header img {
    display: none;
  }
}


.txtbio {
  font-family: "helvetica";
  font-size: 20;
  color: white;
  position: center;
  margin-top: 650px;
  background-color: #fff;
  opacity: 0.60;
  height: 50%;
  width: 100%;
  /*background-color: black;
  opacity: 0.60;*/
}

.image {
  position: absolute;
  top: 0%;
  background-image: url(../img/pres.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  height: 100%;
  width: 100%;
}

.prog_gauche,
.prog_droite,
.prog_centre {
  position: fixed;
  height: 100%;
}

.prog_gauche {
  left: 0;
  width: 19%;
}

.prog_droite {
  right: 0;
  width: 19%;
}

.prog_centre {
  left: 20%;
  right: 20%;
  width: 60%;
  top: 100px;
  height: 85vh;
  overflow-y: auto;
}

/* Responsive - smartphones et petits écrans */
@media (max-width: 768px) {

  .prog_gauche,
  .prog_droite {
    display: none;
  }

  .prog_centre {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    top: 90px;
    padding: 15px;
  }
}

.container-musique {
  margin-top: 90px;
  display: flex;
  width: 100%;
  height: 90vh;
  /* Prend toute la hauteur de l'écran */
}

.listMusique {
  width: 25%;
  /* 25% de la largeur pour la liste */
  background-color: hwb(150 31% 69%);
  /* Couleur de fond pour la différencier */
  padding: 20px;
  box-sizing: border-box;
  /* Pour inclure les marges internes dans la largeur */
  overflow-y: auto;
  /* Permet le défilement si la liste est longue */
  height: 100vh;
  border-left: 1px solid black;
}

.listMusique ul {
  list-style-type: none;
  /* Retire les puces de la liste */
  padding: 0;
}

.listMusique li {
  margin-bottom: 15px;
  color: white;
}

.listMusique li a {
  color: white;
}

.listMusique a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.musique {
  width: 75%;
  /* 75% pour le lecteur de musique */
  display: flex;
  justify-content: center;
  /* Centrer horizontalement */
  align-items: center;
  /* Centrer verticalement */
}

.music-player {
  width: 100%;
  /* Prend 100% de l'espace restant dans .musique */
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 90vh;
}

.container-logo {
  width: 25%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.container-logo img {
  width: 100%;
}

.music-caption {
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.image-player-music {
  width: 100%;
  margin-bottom: 10px;
  max-width: 100vh;
  height: 70vh;
  width: 70%;
}

.audio-player {
  width: 100%;
}

/* when we want to completely block scrolling */
html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
  height: 100% !important;
}

/* ---------- Layout desktop (par défaut) ---------- */
.ep1 {
  position: fixed;
  left: 0;
  top: 90px;
  width: 75%;
  height: calc(100% - 90px);
  overflow-y: auto;
  color: #f1eded;
  font-size: 1.05rem;
  scrollbar-color: grey hsl(22, 70%, 60%);
  scrollbar-width: thin;
  padding: 18px 20px;
  transition: margin-bottom 0.25s ease;
}

/* when player visible on small screen, leave space */
.ep1.with-player {
  margin-bottom: 78px;
}

.ep2 {
  position: fixed;
  right: 0;
  top: 60px;
  width: 25%;
  height: calc(100% - 60px);
  overflow-y: auto;
  background-color: #000;
  color: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* hidden class to collapse player (used on mobile floating player) */
.ep2.hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

/* ---------- Tableau ---------- */
.ep1 table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.ep1 table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ep1 table td {
  padding: 10px 8px;
  vertical-align: middle;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sons p {
  margin: 0;
  text-align: center;
  color: #fff;
}

.ep1 td[width="30%"] {
  background-color: #000000;
  padding: 10px;
}

.ep1 td a img {
  max-width: 45px;
  max-height: 45px;
}

.ep1 img,
.ep2 img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* close button inside player (top-right) */
#close-player-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 6px 8px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 30;
  font-size: 14px;
}

#close-player-btn:hover {
  opacity: 0.9;
}

/* open button floating when player closed */
#open-player-btn {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 120;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

#open-player-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

/* ---------- Player caption styling ---------- */
.ep2 figcaption {
  color: #fff;
  text-align: center;
  margin-top: 6px;
  font-size: 0.95rem;
}

.ep2 .img_player {
  padding: 60px;
  width: 100%;
  box-sizing: border-box;
}

/* ---------- Responsive : Tablette / Mobile ---------- */
@media (max-width: 900px) {
  .ep1 {
    position: relative;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px;
    /* margin-bottom set via class */
    font-size: 0.95rem;
  }

  /* Player becomes full-width floating bar at bottom on small screens */
  .ep2 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.96);
    padding: 8px 12px;
    z-index: 100;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.35);
        margin-top: 32px
  }

  .ep2 .img_player {
    display: none;
    /* hide big image to save space */
  }

  .ep2 audio {
    width: 100%;
    height: 36px;
  }

  .ep2 figcaption {
    font-size: 0.92rem;
  }

  /* Table -> cards (compact) */
  .ep1 table,
  .ep1 tbody,
  .ep1 tr,
  .ep1 td {
    display: block;
    width: 100%;
  }

  .ep1 tr {
    margin-bottom: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.03);
  }

  .ep1 td[width="30%"] {
    width: 100% !important;
    display: block;
    text-align: center;
    padding: 6px 0;
  }

  .ep1 td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px;
  }

  .ep1 td .sons p {
    text-align: left;
    color: #111;
    font-size: 0.95rem;
  }

  .ep1 td a img {
    max-width: 34px;
    max-height: 34px;
  }
}

/* ---------- Très petit écran ---------- */
@media (max-width: 420px) {
  .ep1 td {
    font-size: 0.9rem;
    padding: 6px;
  }

  .ep2 {
    padding: 8px;
  }

  #open-player-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .ep1.with-player {
    margin-bottom: 74px;
  }

  .ep2 audio {
    height: 34px;
  }

  .ep2 figcaption {
    font-size: 0.88rem;
  }
}

.carroussel {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background-color: hwb(150 31% 69%);
  display: flex;
  align-items: center;
  justify-content: center;
}

hr.sons {
  border: 2px solid hsl(22, 70%, 60%);
  margin: 0;
}

td.sons {
  border-bottom: 0.5px dashed hsl(22, 70%, 60%);
  min-height: 280px;
}

.audio {
  color: hsl(22, 70%, 60%);


}

.player {
  height: 95vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.details {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: 25px;
}

.track-art {
  margin: 25px;
  height: 250px;
  width: 250px;
  background-image: URL("../img/Humano-virus.png");
  background-size: cover;
  background-position: center;
  border-radius: 15%;
}



.now-playing {
  font-size: 1rem;
  color: white;
}

.track-name {
  font-size: 3rem;
  color: white;
}

.track-artist {
  font-size: 1.5rem;
}

.buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  justify-content: center;
}

.playpause-track,
.prev-track,
.next-track {
  padding: 25px;
  opacity: 0.8;
  color: hsl(22, 70%, 60%);
  transition: opacity .2s;
  right: 0;
}

.playpause-track:hover,
.prev-track:hover,
.next-track:hover {
  opacity: 1.0;
  left: 0;
  color: hsl(22, 70%, 60%);
}

.slider_container {
  width: 75%;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-spacing: 5px;
}

.seek_slider,
.volume_slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 5px;
  background: hsl(22, 70%, 60%);
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.seek_slider::-webkit-slider-thumb,
.volume_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: white;
  cursor: pointer;
  border-radius: 50%;
}

.seek_slider:hover,
.volume_slider:hover {
  opacity: 1.0;
}

.seek_slider {
  width: 60%;
}

.volume_slider {
  width: 30%;
}

.current-time,
.total-duration {
  padding: 10px;
}

i.fa-volume-down,
i.fa-volume-up {
  padding: 10px;
}

i.fa-play-circle,
i.fa-pause-circle,
i.fa-step-forward,
i.fa-step-backward {
  cursor: pointer;
}

.modal-content {
  height: 100%;
  width: 100%;
}

.modal-body {

  height: 100%;
  width: 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23D28A0F' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23D28A0F' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}

/* span {
    display: inline-block;
    padding: 10px 20px;
  }

  .icon-green {
    color: green;
  } */

.form-group {
  margin-top: 40px;
  font-size: 20px;
  color: hsl(22, 70%, 60%);
}

.container {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1 {
  color: hsl(22, 70%, 60%);
}

.starter-template {
  width: 550px;
  background-position: center;
  margin-right: 50px;
}

.btn-primary {
  background-color: hsl(22, 70%, 60%);
  border: hsl(22, 70%, 60%);
}

.td.sons {
  margin-top: 70px;
}

.tour {
  text-align: center;
}

.h1 {
  left: 70px;
}

.pres {
  position: absolute;
  background-image: url(../img/pres.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}

@media (max-width: 768px) {
  .pres {
    background-image: url(../img/pres.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
  }
}

.txtbio {
  font-family: "helvetica";
  font-size: 20px;
  color: rgb(255, 255, 255);
  text-align: center;
  width: 100%;
  background-color: black;
  opacity: 0.70;
}


.p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: bolder;
  align-items: center;
}

.h3 {
  color: hsl(22, 70%, 60%);
}

.tete {
  color: hsl(22, 70%, 60%);
  font-family: "Poppins", sans-serif;
  font-size: 65px;
  font-weight: 600;
  text-transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 65px;
  left: 15px;
}

.img2 {
  top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img3 {
  top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img4 {
  top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.img5 {
  top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img6 {
  top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img7 {
  top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

/*
  .navtour a{
  color: hsl(22, 70%, 60%);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top: 70px;
}

.navtour2 a{
  color: hsl(22, 70%, 60%);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top: 70px;
}*/


.col-sm-3 {
  color: hsl(22, 70%, 60%);
  display: flex;
  align-items: center;
  justify-content: center;

}

.btn-lg {
  margin-left: 1400px;
  font-size: 25px;
  margin-top: 300px;
}

.btn-2 {
  margin-left: 1400px;
  font-size: 25px;
  margin-top: 100px;
}

a {
  color: white;
  text-decoration: none;
}

.btn-second {
  background-color: hsl(22, 70%, 60%);
  border: hsl(22, 70%, 60%);
  margin-left: 950px;
  font-size: 25px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroller {
  width: 600px;
  height: 250px;
  overflow-y: scroll;
  scrollbar-color: hsl(22, 70%, 60%);
  scrollbar-width: thin;
  margin-left: 700px;
  margin-top: 90px;
}

@media screen and (max-width: 768px) {
  .evolution-logo {
    display: none !important;
  }

}