body {
  font-family: "Ubuntu", sans-serif;
  color: #2a3a4a;
}
.h1-home {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
}
.color-orange {
  color: #da9189;
}
.color-violet {
  color: #240972;
}
.mb-not {
  margin-bottom: 0px;
}
.text-justify {
  text-align: justify;
}
.a-not-decoration {
  text-decoration: none;
}

.btn-cta {
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
}

.btn-cta-1 {
  background-color: #da9089;
  color: white;
}
.btn-cta-2 {
  background-color: #240972;
  color: white;
}
.btn-cta-3 {
  background-color: #404040;
  color: white;
}
.color-rs {
  color: #c39683;
}
.header-podcast {
  background-image: url("../images/fond-header.png");
  background-size: cover;
  background-position: center;
  height: 200px;
}

.text-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
  height: 200px;
}
.img-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 200px;
}
.h1-header {
  color: white;
  font-size: 62px;
}
.section-1 {
  padding-top: 80px;
  padding-bottom: 30px;
  color: #2a1574;
}
.custom-hr {
  opacity: 1;
  height: 10px;
  color: #2a1574;
  margin-top: 10px;
}
.p-saison-1 {
  color: #002a77;
}
.image-1 {
  width: 80%;
}
.img-micro {
  width: 130px;
}
.section-2 {
  background-image: url("../images/fond.png");
  background-size: 100% 100%;
  padding-top: 40px;
  padding-bottom: 70px;
  margin-top: -30px;
}
.title-episode {
  color: #da9189;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

/* Effet rollover */
.title-episode:hover {
  color: #b53c31;
}

.p-episode-semaine {
  color: #da9189;
}
.custom-line {
  width: 90px;
  height: 3px;
  background-color: rgba(42, 21, 116, 1);
  margin-bottom: 30px;
}
.custom-line-resume {
  width: 90px;
  height: 3px;
  background-color: rgba(42, 21, 116, 1);
  margin-bottom: 10px;
}
.custom-line-center {
  width: 90px;
  height: 3px;
  background-color: rgba(42, 21, 116, 1);
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

/* Lecteur audio */
.audio-player {
  display: flex;
  align-items: center;
  gap: 10px;
}
.audio-player-resume {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #2a1574;
  float: left;
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 5px;
}

.play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2c0077;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.play-btn-resume {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  background-color: #2c0077;
}

/* Icône Play (triangle) */
.play-btn .icon-play {
  width: 0;
  height: 0;
  border-left: 12px solid white;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
  display: block;
}

.play-btn-resume .icon-play-resume {
  width: 0;
  height: 0;
  border-left: 17px solid white;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
  display: block;
}

/* Icône Pause (2 barres blanches) */
.play-btn .icon-pause {
  display: none;
  width: 12px;
  height: 16px;
  position: relative;
}

.play-btn-resume .icon-pause-resume {
  display: none;
  width: 12px;
  height: 16px;
  position: relative;
}

.play-btn .icon-pause:before,
.play-btn .icon-pause:after {
  content: "";
  position: absolute;
  top: 0;
  width: 4px;
  height: 100%;
  background: white;
}

.play-btn .icon-pause:before {
  left: 0;
}
.play-btn .icon-pause:after {
  right: 0;
}

.play-btn.pause .icon-play {
  display: none;
}
.play-btn.pause .icon-pause {
  display: block;
}

.play-btn-resume .icon-pause-resume:before,
.play-btn-resume .icon-pause-resume:after {
  content: "";
  position: absolute;
  top: 0;
  width: 4px;
  height: 100%;
  background: white;
}

.play-btn-resume .icon-pause-resume:before {
  left: 0;
}
.play-btn-resume .icon-pause-resume:after {
  right: 0;
}

.play-btn-resume.pause .icon-play-resume {
  display: none;
}
.play-btn-resume.pause .icon-pause-resume {
  display: block;
}

.audio-info {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}

.audio-info-resume {
  display: flex;
  flex-direction: column;
}

.title {
  color: #2c0077;
  font-weight: bold;
}
.title-resume {
  color: #2c0077;
  font-weight: bold;
}

.time {
  font-size: 12px;
  color: #2c0077;
  display: flex;
  align-items: center;
  gap: 5px;
}
.time-resume {
  font-size: 12px;
  color: #2c0077;
  display: flex;
  align-items: center;
  gap: 5px;
}

.progress {
  position: relative;
  width: 150px;
  height: 6px;
  background: white;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

.progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #d48282;
}

.description-audio {
  margin-top: 10px;
  color: #0a2a36;
}

.section-1-resume {
  background-image: url("../images/fond.png");
  background-size: 100% 100%;
  padding-top: 80px;
  padding-bottom: 70px;
  margin-top: 80px;
}

.date-resume {
  font-size: 14px;
}

/* Footer */
.footer {
  background-color: #f9efed;
  padding-top: 40px;
  padding-bottom: 30px;
  margin-top: 60px;
  border-top: 1px solid #2c0077;
}
.custom-line-footer {
  width: 60px;
  height: 3px;
  background-color: rgba(42, 21, 116, 1);
  margin-bottom: 20px;
}

.link-footer:hover {
  color: #d48282;
}

@media (max-width: 768px) {
  .header-podcast {
    background-image: url("../images/fond-header.png");
    background-size: 100% 100%;
    height: auto;
  }
  .text-header,
  .img-header {
    padding-top: 10px;
  }

  .text-header {
    margin-bottom: 20px;
  }

  .img-micro {
    width: 100px;
  }

  .h1-header {
    color: white;
    font-size: 40px;
  }
}
