* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(35deg, #000000 0%, #8b0000 50%, #4a148c 100%);
}

/*Presentation */

.logoAgprod {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  animation: glow 8s infinite;
}

@keyframes glow {

  0%,
  100% {
    border-color: black;
  }

  50% {
    box-shadow: 0 0 15px #7c4dff;
  }
}

header {
  color: #f5f5dc;
  text-align: center;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  margin-bottom: 20px;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: bolder;
}

/*Presentation texte   */
.textePresentation {
  color: whitesmoke;
  text-align: justify;

}

/*Presentation Image -Images  */
.imgPresentationAddjazz {
  border-radius: 20px;
  transition: all 0.4s ease;
  padding: 10px;
}

.imgPresentationAddjazz:hover {
  transform: translateY(-8px) rotateX(5deg);
}

/*Audios */
.music-player {
  background: #10193462;
  border-radius: 8px;
  max-width: 500px;
}

.player-header {
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  color: whitesmoke;
}

.current-artist {
  font-size: 12px;
  color: #ffffff;
}

.control-bar {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  gap: 10px;
  border-bottom: 1px solid #404040;
}

.volume-btn {
  background: #44444441;
  border: 2px solid whitesmoke;
  color: #ff4444;
  font-size: 24px;
  cursor: pointer;
  padding: 8px 12px;
  transition: all 0.3s ease;
  border-radius: 50%;
  min-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.volume-btn:hover {
  background: #55555549;
  border-color: #ffffff;
}

.volume-btn.muted {
  background: #333333;
  border-color: #555555;
}

.volume-icon {
  width: 12px;
  height: 8px;
  background: #ff4444;
  position: relative;
  clip-path: polygon(0% 30%, 40% 30%, 70% 0%, 70% 100%, 40% 70%, 0% 70%);
}

.volume-icon-muted {
  width: 12px;
  height: 8px;
  background: #888888;
  position: relative;
  clip-path: polygon(0% 30%, 40% 30%, 70% 0%, 70% 100%, 40% 70%, 0% 70%);
}

.volume-btn:hover .volume-icon {
  background: #ff6666;
}

.volume-btn.muted .volume-icon {
  background: #888888;
}

.volume-icon-muted::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 8px;
  width: 12px;
  height: 2px;
  background: #ff4444;
  transform: rotate(45deg);
  border-radius: 1px;
}

.play-btn {
  background: #44444441;
  border: 2px solid whitesmoke;
  cursor: pointer;
  padding: 8px 12px;
  transition: all 0.3s ease;
  border-radius: 50%;
  min-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-btn:hover {
  background: #55555549;
  border-color: #ffffff;
}

.play-icon {
  width: 0;
  height: 0;
  border-left: 12px solid whitesmoke;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
}

.play-btn:hover .play-icon {
  border-left-color: #ff6666;
}

/* Icône pause CSS */
.pause-icon {
  display: flex;
  gap: 3px;
}

.pause-icon::before,
.pause-icon::after {
  content: '';
  width: 4px;
  height: 16px;
  background: #ff4444;
  border-radius: 1px;
}

.play-btn:hover .pause-icon::before,
.play-btn:hover .pause-icon::after {
  background: #ff6666;
}

.time-current {
  font-size: 12px;
  color: whitesmoke;
  min-width: 35px;
  text-align: center;
}

.progress-container {
  flex: 1;
  height: 8px;
  background: whitesmoke;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  margin: 0 5px;
}

.progress-bar {
  height: 100%;
  background: #4CAF50;
  border-radius: 4px;
  width: 0%;
  transition: width 0.1s ease;
}

.time-total {
  font-size: 12px;
  color: whitesmoke;
  min-width: 35px;
  text-align: center;
  font-weight: bolder;
  background-color: #4a148c;
  border-radius: 5px;
}

.playlist {
  max-height: 300px;
  overflow-y: auto;
}

.playlist::-webkit-scrollbar {
  width: 8px;
}

.playlist::-webkit-scrollbar-track {
  background: #2a2a2a;
}

.playlist::-webkit-scrollbar-thumb {
  background: #404040;
  border-radius: 4px;
}

.playlist::-webkit-scrollbar-thumb:hover {
  background: #505050;
}

.song-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15px;
  border-bottom: 1px solid #404040;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.song-item:hover {
  background: #ff666639;
}

.song-item.active {
  background: #4a148c34;
  color: #ffffff;
  font-weight: bolder;
}

.song-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
  color: whitesmoke;
  border-radius: 5px;
  background-color: #11194838;
}

.song-artist {
  font-size: 11px;
  color: whitesmoke;
}

.song-item.active .song-artist {
  color: whitesmoke;
}

.song-duration {
  font-size: 12px;
  color: whitesmoke;
  min-width: 35px;
  text-align: center;
  font-weight: bolder;
  background-color: #4a148c;
  border-radius: 5px;
}

.song-item.active .song-duration {
  color: #ffffff;
}

audio {
  display: none;
}

.DivGalerie {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
}

.imgCentre {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
}

.imgDroiteHaut {
  grid-column-start: 3;
}

.imgDroiteBas {
  grid-column-start: 3;
  grid-row-start: 2;
}

footer {
  background: linear-gradient(90deg, #ffd700, #8b0000, #4a148c);
  color: whitesmoke
}

.social-links a {
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
  color: whitesmoke
}

.social-links {
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
  color: whitesmoke
}

@media screen and (min-width: 800px) {

  .icones {
    font-size: 200%;
  }
}

.bi-envelope {
  color: #e80675;
}

.bi-facebook {
  color: #3b5998;
}

.bi-youtube {
  color: #FF0000;
}

.bi-phone {
  color: #ef7707;
}

/*********************************/
/**********Animations*************/
/*********************************/

/**Div Texte et présentation **/

/* États initiaux */

.divTextePresentation {
  animation: slideWaveLeft 1.2s ease-in-out 0.1s both;
}

.divImgPresentation {
  animation: slideWaveRight 1.2s ease-in-out 0.3s both;
}


@keyframes slideWaveLeft {
  0% {
    transform: translateX(-120px) translateY(20px);
    opacity: 0;
  }

  50% {
    transform: translateX(-20px) translateY(-10px);
    opacity: 0.7;
  }

  100% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}

@keyframes slideWaveRight {
  0% {
    transform: translateX(120px) translateY(-20px);
    opacity: 0;
  }

  50% {
    transform: translateX(20px) translateY(10px);
    opacity: 0.7;
  }

  100% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}

.arc-text {
  position: relative;
  width: 400px;
  height: 150px;
  margin: 50px auto;
  text-align: center;
  color: ivory;
  border: #4a148c00 3px solid;
}

.arc-text span {
  position: absolute;
  left: 50%;
  transform-origin: 0 100px;
  font-size: 1.5rem;
  font-weight: bold;
}

.arc-text span:nth-child(1) {
  transform: translateX(-50%) rotate(-42deg);
}

.arc-text span:nth-child(2) {
  transform: translateX(-50%) rotate(-30deg);
}

.arc-text span:nth-child(3) {
  transform: translateX(-50%) rotate(-18deg);
}

.arc-text span:nth-child(4) {
  transform: translateX(-50%) rotate(-6deg);
}

.arc-text span:nth-child(5) {
  transform: translateX(-50%) rotate(6deg);
}

.arc-text span:nth-child(6) {
  transform: translateX(-50%) rotate(18deg);
}

.arc-text span:nth-child(7) {
  transform: translateX(-50%) rotate(30deg);
}

.arc-text span:nth-child(8) {
  transform: translateX(-50%) rotate(42deg);
}

