@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: 'poppins', sans-serif;
  scroll-behavior: smooth;
}
p {
  font-weight: 300;
  color: #601172;
}

header {
  position: fixed;
  top: 0px;
  left: 0px;
  padding: 20px 10px;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  transition: 0, 5s;
}

.mobile_menu-bg {
  z-index: 10;
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #00000035;
  transform: translateX(-1500px);
  transition: transform 500ms ease-in-out;
  display: none;
}

.mobile_menu-bg.active {
  transform: translateX(0px);
}
.mobile_menu {
  position: fixed;
  left: 0;
  right: 30;
  background-color: #fff;
  bottom: 0;
  z-index: 40;
  top: 0;
  transform: translateX(-250px);
  transition: transform 500ms ease-in-out;
  display: none;
  padding: 20px;
}

.mobile_menu-navbar a {
  color: #601172;
}

.mobile_menu.active {
  transform: translateX(0px);
}
.mobile_menu-navbar {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
}

.logo {
  /* color: #fff; */
  color: #000;
  font-weight: bold;
  font-size: 2em;
  text-decoration: none;
}

.logo span {
  color: #a321c4;
}

.navbar {
  display: flex;
  align-items: center;
  padding: 20px;
}
.navbar li {
  list-style: none;
}
.navbar a {
  color: #0000;
  text-decoration: none;
  margin-left: 30px;
  font-weight: 700;
}
.menutoggle {
  display: none;
}

.menutoggle img {
  height: 20px;
  object-fit: cover;
}

header .navbar li a:hover {
  color: #601172;
  border-bottom: 2px solid #601172;
}
.btn {
  display: inline-block;
  border-radius: 5rem;
  background-color: var(--primaire);
  padding: 1.3rem 5rem;
  color: var(--blanche);
  font-weight: 600;
  box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.3);
  margin-top: 4rem;
}

.button {
  background-color: #fff;
  width: 50px;
  height: 50px;
  float: left;
  border-radius: 50px;
  margin: 0 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}

.button:hover {
  width: 160px;
}
.button:hover {
  background-color: #601172;
  color: #fff;
}

.button .s-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.button .s-icon i {
  font-size: 24px;
}
.button span {
  font-size: 18px;
  font-weight: 600;
}

.about {
  margin-top: 120px;
}

.about-header {
  width: 100vw;
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.about-header p {
  color: #7b1994;
}

.about-conatainer {
  width: 100%;
  background-color: #601172;
  padding: 10px 0px;
}

.about-conatainer__content {
  display: flex;
  justify-content: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.about-conatener_image {
  margin-right: 12px;
}

.about-conatener_image img {
  height: 400px;
  width: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.about-conatener_text h1 {
  color: #fff;
}

.about-conatener_text p {
  color: #dadada;
  margin-top: 20px;
}
.album {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav {
  flex: 1;
  text-align: right;
}

nav ul {
  display: inline-block;
  list-style: none;
}

nav ul li {
  display: inline-block;
  margin-right: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #601172;
}

.container {
  max-width: 1300px;
  margin: 20px auto;
  padding-left: 30px;
  padding-right: 30px;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.titre {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.extraits .titre-texte span {
  color: #601172;
  font-size: 2em;
}

.extraits-lists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 300px;
  gap: 20px;
  padding: 20px;
  list-style-type: none;
}

.extraits-list {
  height: 100%;
  width: 100%;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.15);
  background-color: #fff#;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.extraits-list__content {
  height: 200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  /* background-image: url('/images/Jaquette CD Intime verso.jpg'); */

  padding: 20px;
  position: relative;
  justify-content: end;
  align-items: center;
}

.playPauseButton {
  width: 50%;
  margin-bottom: 20px;
}
.extraits-list__content.c_1 {
  width: 100%;
  height: 230px;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  background-image: url('images/Dandy.jpg');
}
.extraits-list__content.c_2 {
  width: 100%;
  height: 230px;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  background-image: url('images/Marijo.jpg');
}
.extraits-list__content.c_3 {
  width: 100%;
  height: 230px;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  background-image: url('images/Ma Baraque.jpg');
}

.extraits-list__content.c_4 {
  width: 100%;
  height: 230px;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  background-image: url('images/evasion.jpg');
}

.extraits-list__content.c_5 {
  width: 100%;
  height: 230px;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  background-image: url('images/Leve toi.jpg');
}

.extraits-list__content.c_6 {
  width: 100%;
  height: 230px;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  background-image: url('images/Ma guerre des boutons.jpg');
}

.extraits-list__content.c_7 {
  width: 100%;
  height: 230px;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  background-image: url('images/Tendresse.jpg');
}
.extraits-list__content.c_8 {
  width: 100%;
  height: 230px;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  background-image: url('images/Meme Si.jpg');
}

.extraits-list__content.c_9 {
  width: 100%;
  height: 230px;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  background-image: url('images/Terre Tremble.jpg');
}

.extraits-list__content.c_10 {
  width: 100%;
  height: 230px;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  background-image: url('images/Desir.jpg');
}

.extraits-list__content.c_11 {
  width: 100%;
  height: 230px;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  background-image: url('images/Edith.jpg');
}

.extraits-list__content.c_12 {
  width: 100%;
  height: 230px;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  background-image: url('images/Petit Bout de Cordes.jpg');
}
.extraits-lists__title {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  font-weight: 600;
  padding: 0px 8px;
}

audio {
  display: none;
}

.playPauseButton {
  margin-right: 20px;
  padding: 10px;
  background-color: #601172;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.progress-container {
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  height: 5px;
  width: 90%;
  position: absolute;
  bottom: 20px;
  right: 5;
  left: 5;
}

.progress-bar {
  height: 100%;
  background-color: #601172;
  width: 0;
  transition: width 0.1s;
}

/*  */

.photos .contenu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.photos .contenu .box {
  width: 350px;
  margin: 10px;
  border: 5px solid #a24202;
  box-shadow: 20px 15px 35px rgba (0, 0, 0, 0.8);
}

.photos .contenu .box .imbox {
  position: relative;
  width: 100%;
  height: 330px;
}
.photos .contenu .box .imbox img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.photos .titre-text span {
  color: #601172;
  font-size: 2em;
}
.col-2 {
  flex-basis: 50%;
  min-width: 300px;
}

.col-2 img {
  width: 90%;
  padding: 30px 0;
}

.col-2 h1 {
  font-size: 50px;
  line-height: 60px;
  margin: 25px 0;
  text-decoration: none;
  color: #601172;
}

.col-2 a {
  display: inline-block;
  text-decoration: none;
  padding: 10px 30px;
  background: #663333;
  color: #fff;
  border-radius: 30px;
  margin-top: 25px;
  transition: background 0.5s;
}

.col-2 a:hover {
  background: #000000;
}
p {
  color: #601172;
}

.header-section {
  margin-top: -20px;
  background: radial-gradient(#fff, #ffffcc);
}
/*style de la section categorie */

.categories {
  margin: 70px 0;
}
.col-3 {
  flex-basis: 30%;
  min-width: 250px;
  margin: auto;
}

.col-3 img {
  width: 100%;
}

.contact {
  margin-top: 20px;
  background-image: url(./JoelFacePublic.jpg);
  background-size: cover;
  background-color: #9d20b94d;
  width: 100%;
  background-position: unset;
  color: #dfdfdf;
}

.titre-text {
  color: #000;
}
.contact .titre-text span {
  color: #601172;
  font-size: 2em;
}
.contactform {
  padding: 40px 50px;
  background-color: #601172f5;
  border-radius: 18px;

  max-width: 500px;
  margin-top: 50px;
  justify-content: center;
  align-items: center;
  margin-left: 0%;
}

.copyright {
  padding: 20px 40px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  color: #0c0a0a;
  text-align: center;
}
.copyright p:nth-child(1) {
  color: #0c0a0a;
}
.copyright a {
  color: #601172;
  text-decoration: none;
  font-weight: 600;
  font-style: italic;
}

header.sticky {
  background: #fff;
  padding: 10px 10px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
}

header.sticky .logo {
  color: #000;
}
header.sticky .navbar li a {
  color: #000;
}

header.sticky li a:hover {
  color: #601172;
  border-bottom: 2px solid #601172;
}

@media (max-width: 758px) {
  .about-conatainer__content {
    display: flex;
    justify-content: center;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
  }
  .about-conatener_image {
    display: flex;
    justify-content: center;
    margin-right: 0;
  }

  .about-conatener_image img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .about-conatener_text h1 {
    font-size: 28px;
  }
  .about-conatener_text p {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  header,
  header.sticky {
    padding: 10px 20px;
  }
  .mobile_menu-bg {
    display: block;
  }

  .mobile_menu {
    display: block;
  }
  header .navbar li {
    margin-left: 0px;
  }
  header .navbar li a {
    text-decoration: none;
    color: #111;
    font-size: 1.6em;
    font-weight: 300;
  }
  .navbar {
    display: none;
  }

  .accueil .contenu h2 {
    font-size: 2em;
  }
  .extraits {
    margin-top: 0px;
  }
  header.sticky .menutoggle {
    filter: invert(1);
  }

  .menutoggle {
    position: relative;
    width: 40px;
    height: 40px;
    background-image: url(logomenu.jpg);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menutoggle.active {
    background-image: url(close.jpg);
    background-size: 30px;
    background-repeat: no-repeat;
    background-origin: center;
  }

  .about-conatainer__content {
    display: flex;
    justify-content: center;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
  .navbar a {
    color: #000 !important;
  }
}

.navbar a {
  color: #000 !important;
}
