* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html,
body {
  overflow-x: hidden;
}

h2,
h3 {
  font-family: 'Bebas Neue', sans-serif;
}

p {
  font-weight: lighter !important;

}

/* NAVIGATION */
nav {
  /*background-color: rgba(255, 255, 255, 0.83);*/
  text-align: center;
  position: fixed;
  height: 13vh;
  z-index: 1000;
  /*box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);*/
  top: 0;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

nav.scrolled {
  background-color: white;
  height: 10vh;
  /*box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);*/
  z-index: -20;
}

nav.scrolled .nav-list li a {
  height: 9vh;
  font-size: 16px;
}

.font-nav {
  font-family: "Bebas Neue", sans-serif;
}

.nav-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wmp {
  z-index: 10;
  width: 64px;
  height: auto;
}

.nav-list li a {
  text-decoration: none;
  font-size: 16px;
  padding: 10px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 13vh;
  transition: all 0.3s ease-in-out;
  /*color: black;*/
  color: white;
}

.nav-list li a:hover {
  color: #7d1148;
}

.nav-list li:nth-child(6) {
  margin-right: 4vw;
}

.nav-list li:nth-child(9) {
  margin-right: -30px;
}

.nav-list li:nth-child(10) {
  margin-right: -30px;
}

.nav-list li:nth-child(11) {
  margin-right: -30px;
}

.second-music-nav {
  color: #9c1458;
}

.poppins-bold {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: normal;
}

.menu-checkbox {
  display: none;
}

.menu-icon {
  display: none;
}

.search-modal-form {
  position: absolute;
  top: 100%;
  right: 25%;
  margin-top: 10px;
  background: white;
  border: 1px solid #ccc;
  padding: 1rem;
  z-index: 1000;
  border-radius: 8px;
  width: 250px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.search-modal-form input {
  width: 100%;
  padding: 6px;
  margin-bottom: 0.5rem;
}

.search-suggestions {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 150px;
  overflow-y: auto;
}

.search-suggestions li {
  margin: 4px 0;
}

.search-toggle-container button {
  border: none;
  background-color: rgba(255, 255, 255, -10.83);
}

.search-input {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 10px;
}

/*
.social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}*/

.lang-switcher {
  display: flex;
  justify-content: flex-start;
  gap: 0.5rem;
}

.lang-switcher :nth-child(2) {
  margin-left: -30px;
  margin-right: 30px;
}

#btn-submit {
  background-color: #9f0e58;
  border: none;
  border-radius: 4px;
  color: white;
  padding: 0.5rem 1rem;
}

/*
.social-icons li {
  width: 5%;
}*/

.social-icons {
  display: flex;
  gap: 10px;
  /* espace entre les éléments, ajustable */
  align-items: center;
}

.social-icons li a {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.social-icons li a img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  /* ou 'cover' si tu veux que ça remplisse */
}

/* NAVIGATION RESPONSIF */

@media (max-width: 1100px) {
  .nav-list li a {
    padding: 10px 15px;
  }
}

@media (max-width: 870px) {
  .nav-list {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    justify-content: flex-end;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 999;
  }

  .nav-list li {
    width: 100%;
    text-align: left;
  }

  .nav-list li a {
    display: block;
    /*   width: 100%; */
    padding: 15px;
    height: auto;
  }

  .menu-icon {
    display: block;
    font-size: 30px;
    color: #9f0e59;
    position: absolute;
    right: 10%;
    top: 10px;
    cursor: pointer;
    z-index: 1000;
  }

  .menu-checkbox {
    display: none;
  }

  .menu-checkbox:checked~.nav-list {
    display: flex;
  }

  .nav-list li:nth-child(7) a {
    text-align: center;
  }

  .nav-list li:nth-child(1) {
    background-color: white;
  }

  .nav-list li:nth-child(1) a {
    width: 30%;
    justify-self: center;
  }

  .lang-switcher {
    display: flex;
    text-align: left;
    width: 100%;
    margin-right: -2vw;
  }

  .lang-switcher li {
    margin-left: 0;
    width: 5%;
  }

  .social-icons {
    width: 100%;
    justify-content: center;
  }

  .social-icons li {
    margin-left: 0;
    width: 5%;
  }

  #search-toggle {
    display: none !important;
  }

  #search-modal {
    display: flex !important;
    position: static !important;
    width: 100% !important;
    align-items: center;
    gap: 0.5rem;
  }

  .search-modal-form {
    border: none;
    box-shadow: none;
  }

  #search-input {
    flex: 1;
    width: auto;
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  #search-modal button {
    padding: 0.5rem;
    border: none;
    background: none;
    cursor: pointer;
  }

  .nav-list li:nth-child(6) {
    margin-right: 0vw;
  }
}

/* FOOTER 

.font-footer {
  font-family: "Tahoma", sans-serif;
  font-weight: 500;
}

footer {
  background-color: #f8f4f4;
}

.contain-footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.contain-footer ul {
  list-style-type: none;
}

footer ul {
  margin-top: 15vh;
}

footer li {
  color: black;
}

.logo-footer {
  width: 100px;
  margin-right: 15px;
}

.col-1 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 5vw;
  margin-right: 25vw;
  width: 400px;
}

.logo-et-adresse {
  display: flex;
  align-items: center;
}

.adresse-wrapper {
  display: flex;
  flex-direction: column;
}

.menu-footer {
  margin-bottom: 3vh;
}

.col-2 {
  margin-left: -15vw;
}

.col-3 {
  margin-left: -5vw;
}

.col-2 ul li {
  font-size: 16px;
}

.col-2 li a {
  color: black;
  text-decoration: none;
}

.col-3 ul li {
  font-size: 16px;
}

.col-3 ul li a {
  text-decoration: none;
  color: inherit;
}

.underline-footer {
  width: 150px;
  height: 4px;
  background-color: #f0940a;
  z-index: 4;
  margin-bottom: 3vh;
}

.col-1 ul .nom-entreprise {
  font-size: 18px;
  width: 500px;
}

.col-1 ul .adresse-entreprise {
  font-size: 14px;
}

.separator-footer {
  width: 1300px;
  height: 2px;
  background-color: #fff3;
  z-index: 4;
  margin-top: 10vh;
  margin-left: 110px;
}

.end-footer {
  color: rgba(0, 0, 0, 0.673);
  text-decoration: none;
  font-size: 14px;
  font-family: "OpenSauceLight", sans-serif;
  padding: 10px 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 5vh;
}

.end-footer a {
  color: rgba(0, 0, 0, 0.673);
  text-decoration: underline;
  font-size: 14px;
  font-family: "OpenSauceLight", sans-serif;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.poli-confi {
  margin-left: 35vw;
}

.reseaux-sociaux {
  margin-top: 5vh;
}

.reseaux-sociaux a {
  text-decoration: none;
  font-family: "OpenSauceLight", sans-serif;
  color: black;
  padding: 10px 18px 10px 18px;
  background-color: #33333388;
  border-radius: 50px;
  margin-right: 10px;
  margin-left: 10px;
}

.adresse-entreprise {
  margin-bottom: 5vh;
}

.col-2 ul .menu-footer {
  font-size: 26px;
}

.col-3 ul .menu-footer {
  font-size: 26px;
}

*/

/*.color-accent1 {
  color: #f0940a;
}

.color-accent2 {
  color: #7d1148;
}/*

/* Grille principale du footer */
.contain-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 60px 80px;
  /*background-color: #f6f6f6;*/
  background: linear-gradient(to right, #f39c12, #7d1148);
  /*color: #3e4753;*/
  color: white;
  /* Footer optimisé 4 colonnes - 2025 */
}

.col-1 ul,
.col-2 ul,
.col-3 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.col-1 p {
  font-family: 'OpenSauceLight', sans-serif;
}

.col-2 p,
.col-3 p,
.col-4 p {
  margin-bottom: 3vh;
  font-family: 'OpenSauceLight', sans-serif;
}

.col-1>h3 {
  margin-bottom: 5vh;
  /*color: black;*/
  color: white;
  font-size: 24px;
}

.col-2>h3 {
  margin-bottom: 5vh;
  /*color: black;*/
  color: white;
  font-size: 24px;
}

.col-2>a {
  /*color: #7d1148;*/
  color: white;
  font-family: 'OpenSauceLight', sans-serif;
}

.col-3>h3 {
  margin-bottom: 5vh;
  /*color: black;*/
  color: white;
  font-size: 24px;
}

.col-4>h3 {
  margin-bottom: 5vh;
  /*color: black;*/
  color: white;
  font-size: 24px;
}

/* Logo + adresse */
.logo-et-adresse {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.logo-footer {
  height: 80px;
  width: auto;
}

.adresse-wrapper p:first-child {
  font-size: 18px;
  font-weight: 600;
  /*color: #1c2431;*/
  color: white;
  margin-bottom: 8px;
}

.adresse-wrapper p:last-child {
  font-size: 16px;
  line-height: 1.6;
  /*color: #3e4753;*/
  color: white;
}

/* Réseaux sociaux
.reseaux-sociaux {
  margin-top: 25px;
}

.reseaux-sociaux a {
  display: inline-block;
  font-size: 20px;
  color: #1c2431;
  margin-right: 12px;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: 'OpenSauceMedium', sans-serif;
}

.reseaux-sociaux a:hover {
  color: #a01551;
}*/


.reseaux-sociaux {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 5vh;
}

.reseaux-sociaux a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.reseaux-sociaux img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  /* ou 'cover' si tu veux que ça remplisse */
}





/* Navigation */
.menu-footer {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1c2431;
}



/* Coordonnées */
.col-3 li,
.col-4 li {
  font-size: 16px;
  line-height: 2;
}

.col-3 ul,
.col-4 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.col-3 a,
.col-4 a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: 'OpenSauceLight', sans-serif;
}

.col-3 a:hover,
.col-4 a:hover {
  color: #f39c12;
}

/* Force le rechargement du footer */
.contain-footer {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr 1fr 1fr !important;
  gap: 20px !important;
}

/* Séparateur */
.separator-footer {
  height: 1px;
  background-color: #dcdcdc;
  width: 90%;
}

/* Bas du footer */
.end-footer {
  background: linear-gradient(to right, #f39c12, #7d1148);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  /* Permet le retour à la ligne si l'écran est trop petit */
  padding: 20px 20px;
  font-size: 14px;
  color: rgb(255, 255, 255);
  font-family: 'OpenSauceLight', sans-serif;
}

.end-footer p {
  margin: 0;
  margin-right: 30vw;
}

.end-footer a {
  color: rgb(255, 255, 255);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.end-footer a:hover {
  color: #7d1148;
}


.newsletter-form>input {
  width: 300px;
  padding: 10px 5px;
}

.newsletter-form>button {
  color: white;
  background-color: #7d1148;
  padding: 10px 15px;
  border: none;
}



@media (max-width: 1050px) {
  .contain-footer {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 60px 60px;
  }

  .col-1 {
    grid-column: 1 / -1;
    text-align: center;
  }

  .col-2,
  .col-3,
  .col-4 {
    text-align: center;
  }
}

@media (max-width: 880px) {
  .contain-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    padding: 40px 40px;
  }

  .col-1 {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-right: 0;
  }

  .col-1,
  .col-2,
  .col-3,
  .col-4 {
    margin-left: 0;
  }

  .logo-footer {
    width: 150px;
    margin-bottom: 20px;
  }

  .col-1 ul .nom-entreprise {
    font-size: 24px;
  }

  .col-1 ul .adresse-entreprise {
    font-size: 18px;
  }

  .col-2 ul li,
  .col-3 ul li {
    font-size: 16px;
  }

  .separator-footer {
    width: 30%;
    margin-left: 35%;
  }

  .end-footer {
    font-size: 16px;
    width: 90%;
    margin: 0 auto;
  }

  .end-footer a {
    font-size: 12px;
    padding: 10px 20px;
  }

  .underline-footer {
    width: 50px;
    height: 4px;
    background-color: #f0940a;
    z-index: 4;
    margin-bottom: 1vh;
    margin-left: 44.5%;
  }

  .menu-footer {
    margin-bottom: 1vh;
  }

  footer ul {
    margin-top: 5vh;
  }

  .logo-et-adresse {
    flex-direction: column;
  }

  .logo-footer {
    margin-right: 0px;
  }
}

@media (max-width: 650px) {
  .poli-confi {
    margin-left: 0;
  }
}


@media (max-width: 767px) {
  .contain-footer {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 30px;
    text-align: center;
  }


  .logo-et-adresse {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .reseaux-sociaux {
    text-align: center;
    margin-top: 3vh;
  }

  .reseaux-sociaux a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 0 auto;
  }

  .reseaux-sociaux img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }

  .newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .newsletter-form>input {
    width: 80%;
  }

  .newsletter-form>button {
    width: auto;
  }

  .end-footer {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    text-align: center;
  }

  .end-footer p {
    margin: 0;
  }

  .end-footer a {
    margin: 0;
  }
}





/* BASE */
.h1-accueil {
  font-family: "OpenSauceBold", sans-serif;
  color: #9f0e59;
  text-align: center;
  font-size: 58px;
  margin-top: 25vh;
}

.p-accueil {
  font-family: "OpenSauceBold", sans-serif;
  text-align: center;
  font-size: 29px;
}

.h2-accueil {
  text-align: center;
  font-size: 48px;
  margin-top: 15vh;
}

.h2-accueil-chiffres {
  color: #9f0e59;
}

@media (max-width: 768px) {
  .h2-accueil {
    margin-top: 5vh;
  }
}

/* SLIDER */

.slider-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  margin: auto;
  z-index: 1;
  /* PAS -1000 sinon contenu invisible */
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  min-width: 100vw;
}

.slide {
  min-width: 100vw;
  overflow: hidden;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
}

/* Dégradé sombre de bas en haut */
.slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 1;
  pointer-events: none;
  /* important pour que les liens restent cliquables */
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 2;
  /* au-dessus du dégradé */
  color: white;
  padding: 20px;
}

.text-overlay div {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 5vh;
}

.text-overlay a {
  text-decoration: none;
  padding: 10px 15px;
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  width: 200px;
}

.header-accueil-lien1 {
  background-color: #7d1148;
  color: white;
}

.header-accueil-lien2 {
  border: solid 2px #f39c12;
  color: #f39c12;
}

/* Titres et textes */
.h1-accueil-test {
  /*font-size: 86px;*/
  font-size: 120px;
  margin: 0;
  margin-bottom: 20px;
  
}

.h1-accueil-test-nos-spectacles {
  font-size: 120px;
  margin: 0;
  margin-bottom: 20px;
}

.h1-accueil-test-a-propos {
  color: #7d1148;
}

.h1-accueil-test-music {
  color: #f39c12;
}

.h1-accueil-test-music2 {
  color: #7d1148;
}

.h1-accueil-test-spectacle {
  color: #4cd137;
}

.h1-accueil-test-action {
  color: #f8acda;
}

.h1-cours-test-nos-spectacles {
  color: #4cd137;
}

.h1-accueil-test-artiste {
  color: #f39c12;
}

.h1-accueil-test-event {
  color: #f0d445;
}

.p-accueil-test {
  font-family: "OpenSauceLight", sans-serif;
  font-size: 20px;
  margin: 0;
}

.p-accueil-test-event {
  font-family: "OpenSauceLight", sans-serif;
  font-size: 20px;
  margin: 0;
}

.slider-dots {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 20;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots button.active {
  background: #f39c12;
  border-color: #f39c12;
}

@media (max-width: 768px) {
  .h1-accueil-test {
    font-size: 42px;
  }

  .txt-accueil {
    z-index: 2 !important;
  }

  .h1-accueil-test-nos-spectacles {
    font-size: 42px;
  }

  .titre-artiste-nom {
    font-size: 42px;
  }

  .h1-animation-nos-spectacles {
    font-size: 42px;
  }

  .stats-title,
  .h2-accueil,
  .cta-title,
  .titre-intro-artistes,
  .titre-liste-artiste,
  .titre-intro-spectacles,
  .col1-bio>h2,
  .h2-nos-professeurs,
  .titre-evenementiel>h2,
  .title-musique,
  .title-presse,
  .tournee-artiste-detail>h2,
  .h2-actions-cult,
  .lieux-intervention>h2,
  .programme-section>h2,
  .h2-apercu,
  .contact-info>h2,
  .contact-form>h2,
  .faq-section>h2,
  .titre-plus-info-event {
    font-size: 32px !important;
  }

  .p-a-propos-wm,
  .nos-valeurs-texte,
  .nos-visions-texte,
  .p-a-propos {
    width: 80% !important;
  }

  .nos-valeurs-texte,
  .nos-visions-texte {
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .nos-valeurs-texte {
    padding-bottom: 0 !important;
    padding-top: 10vh !important;
  }

  .nos-visions {
    margin-top: 20vh !important;
  }

  .nos-engagements-bg {
    padding: 5px 0 80px 0;
    margin-top: 10vh !important;
  }

  .h2-a-propos-valeur {
    text-align: left !important;
  }

  .h2-a-propos-visions {
    text-align: right !important;
  }

  .p-accueil-test {
    font-size: 20px;
  }

  .text-overlay div {
    flex-direction: column;
    align-items: center;
  }

  .text-overlay a {
    width: 95%;
  }

  .slider-dots {
    flex-direction: row !important;
  }
}

/* HEADER */

.header-actions {
  background-image: url(img/musiciens_latinos_header-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.h1-section {
  color: white;
  text-align: center;
  font-size: 88px;
}

.header-evenementiel {
  background-image: url(img/team_buildingbatuc_header.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-spectacles {
  background-image: url(img/maracatu_oju_oba_scene-header.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-nos-artistes {
  background-image: url(img/Percu_bele.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-cours-stages {
  background-image: url(img/cours-stages-header.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .header-spectacles h1 {
    font-size: 40px;
  }

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

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

  .header-nos-artistes h1 {
    font-size: 40px;
  }
}

/* CONTENU ACCUEIL*/

.activite-accueil {
  margin-top: 25vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3%;
  width: 100%;
  height: auto;
}

.item {
  position: relative;
  overflow: hidden;
  /*border-radius: 10px;*/
  display: flex;
  align-items: center;
  justify-content: center;
}

.spectacles {
  margin-left: 7%;
}

.cours {
  margin-right: 7%;
}

.ateliers {
  margin-left: 7%;
}

.evenement {
  margin-right: 7%;
}

.img-accueil {
  width: 100%;
  max-height: 50vh;
  object-fit: cover;
  transition: transform 0.5s ease;
  z-index: 1;
  position: relative;
  /* Nécessaire pour le z-index */
}

.item:hover .img-accueil {
  transform: scale(1.1);
}

.item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* Couleurs spécifiques */
.item.ateliers::before {
  background-color: #f8acdaba;
}

.item.spectacles::before {
  background-color: #4cd137ad;
}

.item.evenement::before {
  background-color: #f0d345d2;
}

.item.cours::before {
  background-color: #3fb9ffc0;
}

.txt-accueil {
  font-family: 'Bebas Neue', sans-serif;
  text-align: center;
  position: absolute;
  color: white;
  font-size: 48px;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 10 !important;
  left: 2vw;
  top: 30vh;
}

@media (max-width: 1100px) {
  .activite-accueil {
    margin-top: 10vh;
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .item:nth-child(3) .txt-accueil {
    top: 25vh;
  }
}


/* Section du bandeau */
.bandeau {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url("img/maracatu_oju_oba_scene-header.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10%;
  margin-top: 25vh;
}

@media (max-width: 1100px) {
  .bandeau {
    margin-top: 10vh;
  }
}

/* Filtre sombre */
.bandeau .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

/* Contenu */
.contenu {
  position: relative;
  max-width: 600px;
  z-index: 2;
}

.contenu h1 {
  font-size: 50px;
  line-height: 1.2;
  font-family: "OpenSauceBold", sans-serif;
}

.bandeau-wm {
  color: orange;
}

.bandeau-festival {
  color: white;
}

/* Texte */
.contenu p {
  font-size: 18px;
  margin: 15px 0 30px;
  color: white;
  font-family: "OpenSauceLight", sans-serif;
}

/* Boutons */
.boutons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-reserver {
  background: #a00058;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 18px;
  font-family: "OpenSauceMedium", sans-serif;
  display: inline-block;
}

.btn-video {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-family: "OpenSauceMedium", sans-serif;
}

.icon-play {
  width: 40px;
  height: 40px;
  border: 2px solid orange;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 10px;
  color: orange;
}

.titre-actu>.square-accueil {
  width: 50px;
  height: 50px;
  background-color: #ffe6c7;
  margin-left: 39%;
  margin-top: -5.5%;
}

.titre-actu>.underline-accueil {
  width: 200px;
  height: 5px;
  background-color: #f0940a;
  margin-left: 43%;
  margin-top: 2%;
  margin-bottom: 25vh;
}

/*
.titre-chiffres {
  margin-bottom: 15vh;
  text-transform: uppercase;
  font-size: 48px;
}

.titre-chiffres>.square-accueil {
  width: 50px;
  height: 50px;
  background-color: #ffe6c7;
  margin-left: 28%;
  margin-top: -5.5%;
}

.chiffres {
  margin-bottom: 15vh;
}

.chiffres ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
}

.chiffres ul li {
  text-align: center;
  font-family: "OpenSauceBold", sans-serif;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 20vw;
  padding: 15px 20px 10px 20px;
}

.chiffres ul li:hover {
  transform: scale(1.02);
  box-shadow: 5px 5px 15px rgba(156, 156, 156, 0.2);
}

.chiffres ul li:nth-child(odd) {
  color: #9c1458;
  font-size: 58px;
}

.chiffres ul li:nth-child(even) {
  color: #f0940a;
  font-size: 58px;
}

.texte-chiffres {
  color: rgb(75 85 99);
  font-size: 20px;
}*/


.cta-section {
  /*background: linear-gradient(to bottom, #000000b3, #000000);*/
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
}

.cta-title {
  /*font-size: 48px;*/
  font-size: 86px;
  font-weight: bold;
  margin-bottom: 20px;
}

.cta-highlight {
  color: #f89b1c;
  /* orange */
}

.cta-subtitle {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
  font-family: "OpenSauceMedium", sans-serif;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: "OpenSauceLight", sans-serif;
}

.cta-btn {
  padding: 15px 30px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  color: white;
  border: none;
  transition: background 0.3s ease;
}

.contact-btn {
  background-color: #a40e5c;
  /* magenta */
}

.contact-btn:hover {
  background-color: #8b0b4f;
}

.spectacles-btn {
  background-color: #f89b1c;
  /* orange */
}

.spectacles-btn:hover {
  background-color: #d87e00;
}

@media (max-width: 1100px) {
  .chiffres ul li:nth-child(odd) {
    font-size: 48px;
  }

  .chiffres ul li:nth-child(even) {
    font-size: 48px;
  }

  .chiffres ul li {
    padding: 0px;
  }
}

@media (max-width: 768px) {
  .chiffres ul li:nth-child(odd) {
    font-size: 58px;
  }

  .chiffres ul li:nth-child(even) {
    font-size: 58px;
  }

  .titre-chiffres {
    margin-bottom: 5vh;
  }

  .chiffres ul {
    display: block;
    text-align: center;
  }

  .chiffres ul li {
    margin: 20px 0;
    margin-left: 30px;
    margin-bottom: 5vh;
    width: 90%;
  }

  .txt-accueil {
    font-size: 20px;
  }

  .titre-actu>.square-accueil {
    width: 40px;
    height: 40px;
    background-color: #ffe6c7;
    margin-left: 10%;
    margin-top: -17%;
  }

  .titre-actu>.underline-accueil {
    width: 200px;
    height: 5px;
    background-color: #f0940a;
    margin-left: 26%;
    margin-top: 7%;
    margin-bottom: 25vh;
  }

  .activite-accueil {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 15px;
  }

  .item {
    width: 80%;
    justify-self: center;
  }

  .txt-accueil {
    font-size: 30px;
    left: 5vw;
  }

  .spectacles,
  .cours,
  .ateliers,
  .evenement {
    margin-left: 0;
    margin-right: 0;
  }

  .titre-chiffres>.square-accueil {
    width: 50px;
    height: 50px;
    background-color: #ffe6c7;
    margin-left: 1%;
    margin-top: -38.5%;
  }

  .cta-title {
    font-size: 28px;
  }
}

/* ACTIONS CULTURELLES */

.intro-actions-cult {
  margin-top: 15vh;
  margin-bottom: 15vh;
  text-align: justify;
  justify-self: center;
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 18px;
  width: 60%;
  
}

.h2-actions-cult {
  font-family: "OpenSauceBold", sans-serif;
  text-align: center;
  font-size: 30px;
  margin-bottom: 8vh;
  position: relative;
  top:40px;
 
}

.h2-actions-cult-test {
  color: white;
}

.columns-action {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px;
  justify-items: center;
  align-items: stretch;
  width: 90%;
  margin: 0 auto;
}

.columns-action .column-1,
.columns-action .column-2,
.columns-action .column-3,
.columns-action .column-4 {
  background-color: #f9f9f9;
  /*border-radius: 12px;*/
  border: solid 1px rgba(0, 0, 0, 0.152);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.columns-action ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "OpenSauceMedium", sans-serif;
}

.columns-action li img {
  margin-bottom: 20px;
}

.icon-atelier-culturel {
  font-size: 30px;
  background-color: #f1f1f1;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  /* centré + espacement bas */
}

.columns-action h3 {
  color: #f8acda;
  /* vert vif, comme sur l'image */
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.columns-action li:last-child {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Optionnel : petit effet au survol */
.columns-action .column-1:hover,
.columns-action .column-2:hover,
.columns-action .column-3:hover,
.columns-action .column-4:hover {
  transform: translateY(-5px);
}

.programme-section {
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 20vh;
}

.programme-section h2 {
  /*font-size: 48px;*/
  font-size: 86px;
  color: #f8acda;
  margin-bottom: 50px;
}

.programme-container {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  justify-content: center;
  align-items: flex-start;
}

.programme-item {
  flex: 1 1 400px;
  max-width: 550px;
  background: #fff;
  text-align: left;
}

.programme-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.icon-container {
  background-color: #f0f1f7;
  font-size: 1.8rem;
  border-radius: 10px;
  padding: 10px;
}

.programme-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0e132a;
  margin: 0;
}

.programme-item p {
  font-size: 1rem;
  color: #414852;
  margin-bottom: 15px;
  font-family: "OpenSauceMedium", sans-serif;
}

.programme-item ul {
  list-style: none;
  padding: 0;
}

.programme-item ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #0e132a;
  font-family: "OpenSauceMedium", sans-serif;
}

.programme-item ul li::before {
  content: "✓";
  color: #f8acda;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.lieux-intervention {
  text-align: center;
  padding: 60px 20px;
  width: 90%;
  margin: 0 auto;
}

.lieux-intervention h2 {
  /*font-size: 48px;*/
  font-size: 86px;
  margin-bottom: 50px;
  color: #111;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  width: 30%;
  /*border-radius: 16px;*/
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.image-top {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.image-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.image-title {
  position: absolute;
  bottom: 15px;
  left: 20px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  z-index: 1;
}

.card-info {
  background-color: #f9f9f9;
  padding: 20px;
  text-align: left;
}

.card-info h3 {
  color: #f8acda;
  font-weight: bold;
  margin-bottom: 3vh;
}

.card-info ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  font-family: "OpenSauceLight", sans-serif;
}

.card-info ul li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
  }

  .card {
    width: 90%;
    margin: 0 auto;
  }
}

.h2-apercu {
  text-align: center;
  /*font-size: 48px;*/
  font-size: 86px;
  margin-bottom: 5vh;
  margin-top: 10vh;
}

.span-h2-apercu {
  color: #f8acda;
}

.titre-apercu {
  margin-bottom: 5vh;
}

.apercu-contenu {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 40px 20px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 15vh;
}

.apercu-video {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 560px;
  transition: transform 0.3s ease;
}

.apercu-video:hover {
  transform: translateY(-5px);
}

.apercu-video iframe {
  width: 100%;
  height: 315px;
  display: block;
  border: none;
}

.apercu-video p {
  padding: 15px 20px;
  margin: 0;
  background-color: #f9f9f9;
  text-align: left;
}

.video-titre {
  font-family: "OpenSauceBold", sans-serif;
  font-size: 1.1rem;
  color: #f8acda;
  display: block;
}

.info-video {
  font-size: 0.95rem;
  color: #555;
  font-family: "OpenSauceLight", sans-serif;
}

@media (max-width: 768px) {
  .apercu-contenu {
    margin-bottom: 5vh;
  }

  .columns-action {
    flex-direction: column;
    align-items: center;
    margin-top: 0vh;
  }

  .columns-action>div {
    flex: none;
    margin-bottom: 20px;
  }

  .columns-action ul li h3 {
    font-size: 14px;
  }

  .columns-action ul li {
    font-size: 14px;
  }

  .columns-action ul li img {
    max-width: 150px;
  }

  .columns-action>div:not(:last-child)::after {
    display: none;
  }

  .lieu-intervention {
    flex-direction: column;
  }

  .item-intervention {
    max-width: 90%;
  }

  .col-programme {
    flex-direction: column;
    align-items: center;
  }

  .col-programme>div {
    flex: none;
    margin-bottom: 20px;
  }

  .col-programme ul li {
    font-size: 18px;
  }

  .col-programme ul li h3 {
    font-size: 24px;
  }

  .col-programme>div:not(:last-child)::after {
    display: none;
  }

  .col-programme {
    width: 100%;
  }

  .apercu-contenu {
    flex-direction: column;
    gap: 3vh;
  }

  .apercu-video {
    width: 90%;
    margin-bottom: 5vh;
  }

  /*.apercu-video>iframe {
        width: 80%;
        height: auto;
    }*/

  .apercu-video iframe {
    height: 200px;
  }

  .video-titre {
    font-size: 20px;
  }

  .info-video {
    font-size: 13px;
  }

  .titre-intervention>.underline-intervention {
    width: 50%;
    height: 4px;
    background-color: #f0940a;
    margin-top: 25%;
    margin-bottom: 15vh;
    justify-self: center;
  }

  .h2-intervention {
    color: #9f0e59;
    text-align: center;
    font-size: 45px;
    margin-top: 25vh;
    margin-bottom: 15vh;
  }

  .titre-intervention>.square-intervention {
    width: 45px;
    height: 45px;
    background-color: #ffe6c7;
    margin-left: 31.6%;
    margin-top: -65.7%;
  }

  .square-lieu-intervention {
    position: absolute;
    width: 35px;
    height: 35px;
    background-color: #ffe6c7;
    margin-left: -4%;
    margin-top: -25%;
    margin-bottom: 5vh;
    z-index: -4;
  }

  .h2-programme {
    font-size: 35px;
  }

  .h2-apercu {
    font-size: 35px;
    margin-bottom: 10vh;
  }

  .titre-apercu>.square-apercu {
    width: 35px;
    height: 35px;
    background-color: #ffe6c7;
    margin-left: 7.1%;
    margin-top: -78%;
  }

  .h2-actions-cult {
    font-size: 30px;
    margin-bottom: 10vh;
  }

  .titre-conception>.square-conception {
    width: 30px;
    height: 30px;
    margin-left: 6%;
    margin-top: -94%;
   
  }
}

.degradé{
  background: linear-gradient(180deg, #f8acda 0%, white 100%);
}

/* EVENEMENTIEL */

.titre-evenementiel>h2 {
  text-align: center;
  /*font-size: 48px;*/
  font-size: 86px;
  margin-top: 15vh;
  margin-bottom: 5vh;
}

.titre-evenementiel>p {
  text-align: justify;
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 16px;
  width: 65%;
  margin: 0 auto;
  margin-bottom: 7vh;
}

.color-evenementiel {
  color: #fadf5b;
}

.degrade2{
  background: linear-gradient(to bottom, #fadf5b 0%, #fadf5b 50%, #ffffff 100%)!important;
}

.h3-nos-spectacles-event {
  text-align: center;
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 24px;
  margin-bottom: 15vh;
  position: relative;
  top:30px;
  
}



.events-liste {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.item-events {
  width: 30%;
  height: 80%;
  background: white;
  /*border-radius: 15px;*/
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 3vh;
}

.img-events {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: -5px;
}

.item-events>p {
  margin: 10px;
  font-size: 16px;
  font-family: "OpenSauceMedium", sans-serif;
}

.h3-events {
  font-size: 24px;
  font-weight: bold;
  margin: 10px;
  position: absolute;
  color: white;
}

.square-events {
  width: 100px;
  height: 3px;
  background-color: #fadf5b;
  margin-top: 6vh;
  margin-bottom: 10px;
  margin-left: 10px;
  position: absolute;
  z-index: 10;
}

.events-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.events-link:hover {
  opacity: 0.8;
}

.events-a-en-savoir-plus {
  text-decoration: none;
  color: #fadf5b;
  margin-left: 30px;
  margin-bottom: 10px;
  font-family: "OpenSauceMedium", sans-serif;
}

@media (max-width: 768px) {
  .titre-evenementiel>p {
    width: 90%;
  }

  .events-liste {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  .item-events {
    width: 90%;
    margin: 0 auto;
    height: auto;
  }
}

.participer-cours-event {
  width: 90%;
  margin: 0 auto;
  text-align: left;
  background: linear-gradient(to right, #fadf5b, #7d1148);
  padding: 80px 20px 80px 40px;
  margin-bottom: 20vh;
  margin-top: 15vh;
  border-radius: 18px;
}

.participer-cours-bg-event {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(to right, #fadf5b, #7d1148);
  padding: 80px 0 80px 0;
  box-sizing: border-box;
}

.participer-cours-bg-event .participer-cours-event {
  width: 90%;
  margin: 0 auto;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .participer-cours-bg-event .participer-cours-event {
    width: 98%;
    border-radius: 10px;
  }
}

.participer-cours-event>h3 {
  color: white;
  font-size: 35px;
  margin-bottom: 5vh;
}

.participer-cours-event>p {
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 18px;
  color: white;
  margin-bottom: 5vh;
  width: 55%;
}

.participer-cours-event div {
  display: flex;
  justify-content: start;
  gap: 10px;
}

.participer-cours-event a {
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 18px;
}

.participer-cours-a1-event {
  background-color: white;
  color: #fadf5b;
}

.participer-cours-a2-event {
  border: solid 2px white;
  color: white;
}

.newsletter-email {
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 18px;
  width: 350px;
}

.newsletter-submit {
  all: unset;
  cursor: pointer;
  border: solid 2px white;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 18px;
}

@media (max-width: 1200px) {
  .participer-cours-event {
    margin-top: 10vh;
    margin-bottom: 10vh;
  }
}

@media (max-width: 768px) {
  .newsletter-email {
    width: 95%;
  }

  .newsletter-submit {
    margin-top: 3%;
  }
}

/*
.evenements-liste {
    margin-top: 25vh;
    margin-bottom: 25vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5%;
    width: 75%;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.item-evenementiel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 25vh;
}

.img-evenementiel {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.h2-evenementiel {
    text-align: left;
    position: absolute;
    color: #f0d445;
    font-size: 40px;
    top: -15%;
    width: 100%;
    z-index: 10;
}

.square-evenementiel {
    width: 45px;
    height: 45px;
    background-color: #ffe6c7;
    position: absolute;
    top: -17%;
    left: -5%;
}

*/

@media (max-width: 768px) {
  .evenements-liste {
    grid-template-columns: 1fr;
    width: 80%;
    margin-top: 10vh;
  }

  .item-evenementiel {
    margin-bottom: 10vh;
  }

  .item-evenementiel:last-child {
    margin-bottom: 30vh;
  }

  .h2-evenementiel {
    font-size: 25px;
    text-align: center;
  }

  .img-evenementiel {
    border-radius: 10px;
  }
}

/* LISTE SPECTACLE */

/*.nos-spectacle-bg {
 background-color: #4cd137;
}*/

.nos-spectacle-bg-test {
  /*background-color: #4cd137;*/
  height: 15vh;
}

.titre-nos-spectacles>h2 {
  text-align: center;
  font-size: 86px;
  margin-bottom: 5vh;
  color: white;
  background-color: #4cd137;
}

.titre-nos-spectacles>p {
  text-align: justify;
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 16px;
  width: 65%;
  margin: 0 auto;
  margin-bottom: 15vh;
  color: white;
}

/*
.color-nos-spectacles {
  color: #4cd137;
}*/

.nos-spectacles-liste {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.item-nos-spectacles {
  width: 30%;
  height: 80%;
  background: white;
  /*border-radius: 15px;*/
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 5vh;
}

.img-nos-spectacles {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: -5px;
}

.item-nos-spectacles>p {
  margin: 10px;
  font-size: 16px;
  font-family: "OpenSauceMedium", sans-serif;
}

.h3-nos-spectacles {
  font-size: 24px;
  font-weight: bold;
  margin: 10px;
}

.square-nos-spectacles {
  width: 100px;
  height: 3px;
  background-color: #4cd137;
  margin-top: -10px;
  margin-bottom: 10px;
  margin-left: 10px;
}

.nos-spectacles-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.nos-spectacles-link:hover {
  opacity: 0.8;
}

.nos-spectacles-a-en-savoir-plus {
  text-decoration: none;
  color: #4cd137;
  margin: 10px;
  font-family: "OpenSauceMedium", sans-serif;
}

.no-result-nos-spectacles {
  text-align: center;
  font-family: "OpenSauceBold", sans-serif;
  margin-top: 10vh;
  margin-bottom: 10vh;
}

@media (max-width: 768px) {
  .nos-spectacles-liste {
    flex-direction: column;
    margin-bottom: 5vh;
  }

  .item-nos-spectacles {
    width: 90%;
    margin: 0 auto;
  }
}

/* SPECTACLES */

/*.square-intro-spectacles {
  width: 300px;
  height: 3px;
  background-color: #4cd137;
  margin-inline: auto;
  z-index: -4;
  margin-bottom: 3vh;
  margin-top: 15vh;
}*/

.titre-intro-spectacles {
  margin-top: 10vh;
  margin-bottom: 5vh;
  /*font-size: 48px;*/
  font-size: 86px;
  text-align: center;
}

.intro-spectacles1 {
  color: #4cd137;
}

.p-intro-spectacles {
  text-align: justify;
  font-family: "OpenSauceMedium", sans-serif;
  width: 70%;
  margin: 0 auto;
  margin-bottom: 15vh;
}

.liste-spectacle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  gap: 40px;
}

.liste-spectacle div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.img-wrapper-spectacle {
  position: relative;
  width: 320px;
  height: 320px;
  /*border-radius: 10px;*/
  overflow: hidden;
}

.liste-spectacle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*border-radius: 10px;*/
  display: block;
}

.img-wrapper-spectacle img {
  transition: transform 0.4s ease;
}

.img-wrapper-spectacle:hover img {
  transform: scale(1.1);
}

.img-overlay-spectacle1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #7d1149c8;
  /*border-radius: 10px;*/
}

.img-overlay-spectacle2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4cd137b9;
  /*border-radius: 10px;*/
}

.img-overlay-spectacle3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #dd7f4dc7;
  /*border-radius: 10px;*/
}

.img-overlay-spectacle4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e74d3cd1;
  /*border-radius: 10px;*/
}

.h3-nom-spectacle {
  position: absolute;
  font-family: "OpenSauceMedium", sans-serif;
  text-transform: uppercase;
  margin-top: 30px;
  margin-left: -140px;
  font-size: 24px;
  color: white;
  z-index: 10;
}

.h3-nom-spectacle span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.h3-nom-spectacle span.visible {
  opacity: 1;
  transform: translateY(0);
}

.p-nom-spectacle {
  position: absolute;
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 16px;
  color: white;
  max-width: 200px;
  z-index: 10;
  text-align: left;
  margin-left: -80px;
  margin-top: 220px;
}

.decouvrir-spectacle {
  position: absolute;
  margin-top: 280px;
  margin-left: -210px;
}

.decouvrir-spectacle>a {
  text-decoration: none;
}

.decouvrir-spectacle p {
  margin: 0;
  font-size: 14px;
  font-family: "OpenSauceMedium", sans-serif;
  color: white;
}

.decouvrir-spectacle svg {
  position: absolute;
  margin-left: 7vw;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  stroke: white;
}

@media (max-width: 1280px) {
  .liste-spectacle {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }

  .decouvrir-spectacle svg {
    margin-left: 10vw;
  }
}

@media (max-width: 768px) {
  .liste-spectacle {
    grid-template-columns: repeat(1, 1fr);
  }

  .decouvrir-spectacle svg {
    margin-left: 20vw;
  }
}

.participer-cours-bg-spectacles {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 15vh;
  background: linear-gradient(to right, #4cd137, #7d1148);
  padding: 80px 0 80px 0;
  box-sizing: border-box;
}

.participer-cours-bg-spectacles .participer-cours-spectacles {
  width: 90%;
  margin: 0 auto;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .participer-cours-bg-spectacles .participer-cours-spectacles {
    width: 98%;
    border-radius: 10px;
  }
}

.participer-cours-spectacles {
  width: 90%;
  margin: 0 auto;
  text-align: left;
  background: linear-gradient(to right, #4cd137, #7d1148);
  padding: 80px 20px 80px 40px;
  margin-bottom: 0;
  margin-top: 15vh;
  border-radius: 18px;
}

.participer-cours-spectacles>h3 {
  color: white;
  font-size: 35px;
  margin-bottom: 5vh;
}

.participer-cours-spectacles>p {
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 18px;
  color: white;
  margin-bottom: 5vh;
  width: 55%;
}

.participer-cours-spectacles div {
  display: flex;
  justify-content: start;
  gap: 10px;
}

.participer-cours-spectacles a {
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 18px;
}

.participer-cours-a1-spectacles {
  background-color: white;
  color: #4cd137;
}

.participer-cours-a2-spectacles {
  border: solid 2px white;
  color: white;
}

.titre-spectacle {
  color: #43d03d;
  margin-bottom: 15vh;
  margin-top: 25vh;
  font-size: 35px;
  text-align: center;
}

.titre-spectacle>.square-spectacle-music {
  width: 50px;
  height: 50px;
  background-color: #ffe6c7;
  margin-left: 30%;
  margin-top: -5.5%;
}

.titre-spectacle>.underline-spectacle {
  width: 500px;
  height: 5px;
  background-color: #f0940a;
  margin-top: 2%;
  margin-bottom: 15vh;
  justify-self: center;
  display: none;
}

.spectacles-musicaux {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.item-spectacles-musicaux {
  flex: 1;
  max-width: 30%;
  padding: 10px;
}

.h3-spectacles-musicaux {
  color: #43d03d;
  text-align: left;
  font-size: 35px;
  margin-bottom: 5vh;
}

.square-spectacles-musicaux {
  position: absolute;
  width: 45px;
  height: 45px;
  background-color: #ffe6c7;
  margin-left: -1%;
  margin-top: -7%;
  margin-bottom: 5vh;
  z-index: -4;
}

.img-spectacles-musicaux {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.titre-spectacle>.square-spectacle-danse {
  width: 50px;
  height: 50px;
  background-color: #ffe6c7;
  margin-left: 30.3%;
  margin-top: -5.5%;
}

.intro-spectacle-danse {
  text-align: center;
  justify-self: center;
  font-family: "OpenSauceBold", sans-serif;
  color: #43d03d;
  margin-bottom: 25vh;
  margin-top: 20vh;
  width: 70%;
  font-size: 20px;
}

.spectacles-danse {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 15vh;
}

.item-spectacles-danse {
  flex: 1;
  max-width: 30%;
  padding: 10px;
}

.h3-spectacles-danse {
  color: #43d03d;
  text-align: left;
  font-size: 14px;
  margin-bottom: 3vh;
  width: 100%;
}

.square-spectacles-danse {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #ffe6c7;
  margin-left: -0.6%;
  margin-top: -3.2%;
  margin-bottom: 5vh;
  z-index: -4;
}

.img-spectacles-danse {
  width: 250px;
  height: auto;
  border-radius: 15px;
}

@media (max-width: 900px) {
  .spectacles-danse {
    flex-direction: column;
  }

  .item-spectacles-danse {
    max-width: 100%;
  }

  .spectacles-musicaux {
    flex-direction: column;
  }

  .item-spectacles-musicaux {
    max-width: 100%;
  }

  .img-spectacles-musicaux {
    width: 250px;
    height: auto;
    border-radius: 15px;
  }

  .titre-spectacle>.underline-spectacle {
    width: 50%;
    height: 5px;
    background-color: #f0940a;
    margin-top: 2%;
    margin-bottom: 15vh;
    justify-self: center;
  }

  .square-spectacles-danse {
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #ffe6c7;
    margin-left: -3%;
    margin-top: -23%;
    margin-bottom: 5vh;
    z-index: -4;
  }

  .square-spectacles-musicaux {
    position: absolute;
    width: 35px;
    height: 35px;
    background-color: #ffe6c7;
    margin-left: -3%;
    margin-top: -24.5%;
    margin-bottom: 5vh;
    z-index: -4;
  }

  .titre-spectacle>.square-spectacle-music {
    width: 50px;
    height: 50px;
    background-color: #ffe6c7;
    margin-left: 2%;
    margin-top: -45.5%;
  }

  .titre-spectacle>.underline-spectacle {
    width: 50%;
    height: 4px;
    background-color: #f0940a;
    margin-top: 30%;
    margin-bottom: 15vh;
    justify-self: center;
  }

  .titre-spectacle>.square-spectacle-danse {
    width: 50px;
    height: 50px;
    background-color: #ffe6c7;
    margin-left: 2%;
    margin-top: -45.5%;
  }

  .titre-spectacle {
    width: 90%;
    justify-self: center;
  }
}

/* SPECTACLE DETAIL */

.img-spectacle-detail {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.img-spectacle-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.titre-spectacle-nom {
  font-family: "OpenSauceBold", sans-serif;
  color: #43d03d;
  margin-bottom: 15vh;
  margin-top: 25vh;
  font-size: 80px;
  text-align: center;
}

.intro-spectacle {
  margin-top: 25vh;
  margin-bottom: 25vh;
  text-align: center;
  justify-self: center;
  font-family: "OpenSauceBold", sans-serif;
  font-size: 20px;
  width: 80%;
  color: #43d03d;
}

/*

.video-spectacle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 25vh;
}

.video-spectacle iframe {
    border-radius: 15px;
    overflow: hidden;
    width: 65%;
    height: 75vh;
}

.plus-info-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.titre-plus-info {
    color: #43d03d;
    font-size: 30px;
    margin-bottom: 15vh;
    margin-right: 20px;
}

.plus-info-spectacle {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-family: "OpenSauceBold", sans-serif;
}

.plus-info-spectacle p {
    margin-bottom: 3vh;
}

.plus-info-spectacle strong {
    color: #43d03d;
}

.plus-info {
    width: 85%;
    justify-self: center;
    font-family: "OpenSauceBold", sans-serif;
    margin-bottom: 25vh;
}

*/

/* NOS ARTISTES */

.titre-liste-artiste {
  margin-top: 20vh;
  margin-bottom: 10vh;
  width: 85%;
  justify-self: center;
  /*font-size: 48px;*/
  font-size: 86px;
}

.titre-artiste-zone {
  margin-top: 20vh;
  margin-bottom: 10vh;
  width: 85%;
  justify-self: center;
  font-size: 24px;
}

.a-z {
  color: #f39c12;
}

.intro-artistes {
  margin-bottom: -15vh;
}

.square-intro-artistes {
  margin-top: 15vh;
}

.titre-intro-artistes {
  margin-bottom: 5vh;
  /*font-size: 48px;*/
  font-size: 86px;
  text-align: center;
}

.intro-artistes1 {
  color: #f39c12;
}

@media (max-width: 1200px) {
  .titre-liste-artiste {
    margin-top: 10vh;
    text-align: center;
    margin-inline: auto;
    width: unset;
  }
}

@media (max-width: 1200px) {
  .titre-artiste-zone {
    margin-top: 10vh;
    text-align: center;
    margin-inline: auto;
    width: unset;
  }
}

/* carré zone  

.artiste-genre,
.artiste-zone {
    font-size: 25px;
    font-family: "OpenSauceBold", sans-serif;
    margin-bottom: 3vh;
}

.liste-zones {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.liste-zones a {
    text-decoration: none;
    color: inherit;
}

.liste-zones a:hover {
    text-decoration: underline;
    color: #f0940a;
}

.item-zones {
    display: flex;
    gap: 20px;
}

.nb-artistes-zones {
    display: flex;
    gap: 5vw;
    list-style: none;
}

.artistes-zones {
    font-size: 18px;
    padding: 5vh 5vw;
    border: 2px solid #f0940a;
    border-radius: 10px;
}

.nb-artistes {
    font-family: "OpenSauceMedium", sans-serif;
}

*/

/* Zone de filtres géographiques */
.liste-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.item-zones {
  flex: 1 1 100%;
}

.nb-artistes-zones {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.artistes-zones {
  border: 1px solid #f5a100;
  border-radius: 10px;
  padding: 20px 25px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 120px;
}

.artistes-zones:hover {
  background-color: #fff3e0;
}

.nom-zone a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 18px;
}

.nb-artistes {
  color: #6c757d;
  font-size: 14px;
}

/* Zone sélectionnée (ex: Amérique) */
.artistes-zones.active {
  background-color: #f5a100;
  color: white;
  border-color: transparent;
}

.artistes-zones.active .nom-zone a,
.artistes-zones.active .nb-artistes {
  color: white;
}

.nb-artistes {
  font-family: "OpenSauceMedium", sans-serif;
}

/* liste artiste */

.artiste-liste {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
}

.item-artiste {
  width: 30%;
  height: 80%;
  background: white;
  border-radius: 0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 3vh;
}

.img-artiste {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: -5px;
}

.item-artiste>p {
  font-size: 16px;
  font-family: "OpenSauceMedium", sans-serif;
}

.stage-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h3-artiste {
  font-size: 24px;
  font-family: "OpenSauceMedium", sans-serif;
  margin: 10px;
  margin-bottom: 0px;
}

.square-artiste {
  width: 100px;
  height: 3px;
  background-color: #f39c12;
  margin: 10px;
  margin-top: -10px;
  margin-bottom: 10px;
}

.h3-artiste::first-letter {
  color: #f39c12;
}

.item-artiste>.list-artiste-genre {
  font-family: "OpenSauceMedium", sans-serif;
  margin: 10px;
  margin-top: 15px;
}

.list-artiste-genre>.color-genre {
  color: #f39c12;
}

.item-artiste>.list-artiste-zone {
  font-family: "OpenSauceMedium", sans-serif;
  margin: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.list-artiste-zone>span {
  font-size: 20px;
  color: #7d1148;
}

.square-stages {
  width: 100px;
  height: 3px;
  background-color: #3fb8ff;
  margin-top: -10px;
  margin-bottom: 10px;
  margin-left: 10px;
}

.artiste-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.artiste-link:hover {
  opacity: 0.8;
}

.artiste-a-en-savoir-plus {
  text-decoration: none;
  color: #f39c12;
  margin: 10px;
  font-family: "OpenSauceMedium", sans-serif;
}

/* PAGINATION */

.pagination {
  margin-top: 10vh;
  margin-bottom: 25vh;
  display: flex;
  justify-content: center;
  font-family: "OpenSauceBold", sans-serif;
}

.pagination a {
  text-decoration: none;
  padding: 8px 12px;
  margin: 0 5px;
  border: 1px solid #333;
  border-radius: 5px;
  color: #333;
  background-color: #fff;
}

.pagination a:hover {
  background-color: #f0940a;
  color: #fff;
}

.pagination .disabled {
  pointer-events: none;
  color: #aaa;
  border-color: #aaa;
}

.nb-pages {
  margin-left: 15px;
  margin-right: 15px;
}

/* tkt */
.filtre {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.filtre .genre,
.filtre .zone {
  width: 50%;
}

.genre,
.zone {
  padding: 20px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .filtre {
    display: block;
  }

  /*  .zone {
        margin-left: 5%;
    } */

  .filtre .genre,
  .filtre .zone {
    width: 100%;
  }
}

/* TRI PAR ZONE 

.form-zone {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 50px auto;
    width: fit-content;
}

.input-zone {
    width: 600px;
    height: 6vh;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #f5f1f2;
    font-size: 16px;
    outline: none;
    font-family: "OpenSauceBold", sans-serif;
}

.bouton-zone {
    font-family: "OpenSauceBold", sans-serif;
    padding: 10px 20px;
    border: 2px solid #a40061;
    border-radius: 5px;
    background: transparent;
    color: #a40061;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bouton-zone:hover {
    background: #a40061;
    color: white;
}

.resultat-recherche {
    font-family: "OpenSauceBold", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 5vh;
}

.liste-artiste-genre {
    display: inline-block;
    font-weight: bold;
    font-size: 16px;
    color: #9f0e59;
    margin-top: 5vh;
}

.liste-artiste-genre a {
    text-decoration: none;
    color: #8B005D;
}

.liste-artiste-genre a:hover {
    text-decoration: underline;
}

.resultat-message {
    color: #9f0e59;
}

.separator-artistes {
    width: 1300px;
    height: 2px;
    background-color: #9f0e59;
    z-index: 4;
    margin-top: 25vh;
    margin-left: 110px;
}

*/
/* Formulaire de recherche par genre artistique */
.form-zone {
  display: flex;
  align-items: center;
  max-width: 800px;
  margin-bottom: 40px;
  gap: 0;
}

.genre-search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.genres-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.genres-dropdown.show {
  display: block;
}

.genre-option {
  padding: 8px 12px;
  cursor: pointer;
}

.genre-option:hover {
  background-color: #f5f5f5;
}

.genre-option input[type="checkbox"] {
  margin-right: 8px;
}

#genre-search {
  cursor: pointer;
}

.input-zone {
  flex: 1;
  padding: 15px 20px;
  border: 1px solid #e4e4e4;
  border-radius: 8px 0 0 8px;
  font-size: 18px;
  background-color: #f8f9fa;
  color: #495057;
  width: 500px;
  margin-left: 2vw;
}

.genres-dropdown {
  font-family: "OpenSauceLight", sans-serif;
  margin-left: 2vw;
}

.bouton-zone {
  padding: 15px 25px;
  background-color: #f5a100;
  border: none;
  border-radius: 0 8px 8px 0;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bouton-zone:hover {
  background-color: #e39000;
}

.resultat-recherche {
  font-family: "OpenSauceBold", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 5vh;
}

.liste-artiste-genre {
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  color: #9f0e59;
  margin-top: 3vh;
}

.liste-artiste-genre a {
  text-decoration: none;
  color: #8b005d;
}

.liste-artiste-genre a:hover {
  text-decoration: underline;
}

.resultat-message {
  color: #9f0e59;
}

/* BANDEAU FIN */

.participer-cours-artiste {
  width: 90%;
  margin: 0 auto;
  text-align: left;
  background: linear-gradient(to right, #f39c12, #7d1148);
  padding: 80px 20px 80px 40px;
  margin-bottom: 25vh;
  margin-top: 15vh;
  border-radius: 18px;
}

.participer-cours-bg-artiste {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(to right, #f39c12, #7d1148);
  padding: 80px 0 80px 0;
  box-sizing: border-box;
}

.participer-cours-bg-artiste .participer-cours-artiste {
  width: 90%;
  margin: 0 auto;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .participer-cours-bg-artiste .participer-cours-artiste {
    width: 98%;
    border-radius: 10px;
  }
}

.participer-cours-artiste>h3 {
  color: white;
  font-size: 35px;
  margin-bottom: 5vh;
}

.participer-cours-artiste>p {
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 18px;
  color: white;
  margin-bottom: 5vh;
  width: 55%;
}

.participer-cours-artiste div {
  display: flex;
  justify-content: start;
  gap: 10px;
}

.participer-cours-artiste a {
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 18px;
}

.participer-cours-a1-artiste {
  background-color: white;
  color: #f39c12;
}

.participer-cours-a2-artiste {
  border: solid 2px white;
  color: white;
}

@media (max-width: 1100px) {
  .pagination {
    margin-top: 5vh;
    margin-bottom: 10vh;
  }

  .participer-cours-artiste {
    margin-bottom: 10vh;
  }
}

@media (max-width: 768px) {
  .participer-cours-artiste {
    margin-left: 5%;
    margin-top: 10vh;
  }

  .item-zones {
    flex-direction: column;
    gap: 15px;
  }

  .nb-artistes-zones {
    flex-direction: column;
    gap: 5vh;
  }

  .artistes-zones {
    font-size: 16px;
    padding: 5vh 15vw;
  }

  .separator-artistes {
    width: 30%;
    margin-left: 35%;
  }

  .input-zone {
    width: 250px;
    padding: 10px 15px;
    height: 6vh;
    font-size: 12px;
  }

  /*  .form-zone {
    width: 90%;
  } */

  .bouton-zone {
    font-family: "OpenSauceBold", sans-serif;
    padding: 10px 15px;
    font-size: 12px;
  }

  .titre-liste-artiste {
    font-size: 25px;
  }

  .titre-artiste-zone {
    font-size: 25px;
  }

  .artiste-liste {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .item-artiste {
    width: 90%;
    gap: 20px;
  }

  .img-artiste {
    object-fit: cover;
    width: 100%;
    height: 300px;
  }

  .h3-artiste-nom {
    font-size: 24px;
  }

  .artiste-genre,
  .artiste-zone {
    font-size: 20px;
  }
}

/* EVENEMENTIEL DETAIL */

.img-stage-detail {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.img-stage-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plus-info {
  width: 85%;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "OpenSauceMedium", sans-serif;
  margin-bottom: 25vh;
}

.titre-plus-info-event {
  color: #fadf5b;
  /*font-size: 30px;*/
  font-size: 86px;
  margin-bottom: 5vh;
  margin-right: 20px;
}

.titre-plus-info-nom {
  color: #008cde;
  font-size: 30px;
  margin-bottom: 5vh;
  margin-right: 20px;
}

.titre-plus-info-spectacle {
  color: #9f0e59;
  font-size: 30px;
  margin-bottom: 5vh;
  margin-right: 20px;
}

.titre-stage-nom {
  font-family: "OpenSauceBold", sans-serif;
  color: #008cde;
  margin-bottom: 25vh;
  margin-top: 25vh;
  font-size: 60px;
  text-align: center;
}

.stage-info-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 15vh;
}

.plus-info,
.stage-contenu-media {
  flex: 1 1 50%;
  width: 50%;
  box-sizing: border-box;
  padding: 20px;
}

.stage-contenu-media img {
  max-width: 100%;
  height: auto;
  display: block;
}

.video-stage {
  position: relative;
  padding-bottom: 56.25%;
  /* Ratio 16:9 (9/16 = 0.5625) */
  height: 0;
  overflow: hidden;
  width: 100%;
  margin-top: 5vh;
}

.video-stage iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {

  .plus-info,
  .stage-contenu-media {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

/* ARTISTES DETAILS */

.img-artiste-detail {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-bottom: 15vh;
}

.img-artiste-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.titre-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 2rem;
}

.titre-artiste-nom {
  color: white;
  /*font-size: 86px;*/
  font-size: 120px;
  margin: 0;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
}

.genre-color-header {
  font-family: "OpenSauceMedium", sans-serif;
  color: white;
  background-color: #f39c12;
  padding: 5px 0 5px 0;
  border-radius: 20px;
  width: 200px;
  text-align: center;
  margin: 0 auto;
  /*la*/
}

.zone-color-header {
  /*font-family: "OpenSauceMedium", sans-serif;*/
  color: white;
  text-align: center;
}

.img-artiste-detail::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 1;
}

.biographie-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.titre-biographie-artiste {
  color: #f0940a;
  font-size: 30px;
  margin-bottom: 15vh;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .titre-artiste-nom {
    font-size: 42px;
  }
}

.info-artiste {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-family: "OpenSauceBold", sans-serif;
}

.info-artiste p {
  margin-bottom: 3vh;
}

.info-artiste strong {
  color: #f0940a;
}

.biographie-artiste {
  width: 85%;
  justify-self: center;
  font-family: "OpenSauceMedium", sans-serif;
  margin-bottom: 10vh;
}

.sous-menu-artiste,
.sous-menu-spectacle {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: -10vh;
  margin-bottom: 10vh;
  /*border-bottom: 1px solid #e5e7eb;*/
}

.sous-menu-spectacle {
  margin-top: 0;
}

.sous-menu-button {
  background-color: rgba(255, 255, 255, 0);
  font-size: 16px;
  border: none;
  border-radius: 10px;
  padding: 12px 10px;
  cursor: pointer;
  color: black;
  /*la*/
}

.contenu-artiste {
  display: none !important;
  /*background: linear-gradient(to bottom, #4cd137, #ffffff);*/
}

.contenu-artiste.active {
  display: block !important;
}

/*
.sous-menu-spectacle-detail {
  background-color: #4cd137;
}*/

.sous-menu-button.active-button {
  color: #7d1148;
  text-decoration: underline;
}

.biographie {
  display: flex;
  justify-content: center;
  width: 90%;
  gap: 5%;
  margin: 0 auto;
  margin-bottom: 20vh;
}

.biographie-container {
  position: relative;
}

.read-more-btn {
  background: none;
  border: 2px solid #f39c12;
  color: #f39c12;
  cursor: pointer;
  font-weight: 500;
  padding: 8px 20px;
  margin-top: 15px;
  font-family: "OpenSauceMedium", sans-serif;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.read-more-btn:hover {
  background-color: #f39c12;
  color: white;
  text-decoration: none;
}

@media (max-width: 768px) {
  .biographie {
    flex-direction: column;
    margin-bottom: 10vh;
  }

  .col1-bio {
    order: 2;
  }

  .col2-bio {
    order: 1;
  }
}

.col1-bio {
  flex: 0 0 60%;
  padding: 1rem;
}

.col1-bio>h2 {
  font-family: 'Bebas Neue', sans-serif;
  /*font-size: 30px;*/
  font-size: 86px;
  margin-bottom: 5vh;
  border-left: solid 5px #f39c12;
  padding-left: 15px;
}

.col1-bio>p {
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 18px;
}

.col2-bio {
  flex: 0 0 30%;
  padding: 1rem;
  background-color: rgb(249 250 251);
  margin-top: -5vh;
  height: fit-content;
  margin-bottom: 5vh;
}

.col2-bio>h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  margin-bottom: 5px;
  margin-top: 5vh;
}

.col2-bio>p {
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 16px;
}

.genre-color {
  color: #9c1458;
}

.musique {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contenu-musique-artiste {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 20vh;
}

.title-musique {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 86px;
  margin-bottom: 5vh;
  border-left: solid 5px #f39c12;
  padding-left: 15px;
  margin-left: 10vw;
}

.title-presse {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 86px;
  margin-bottom: 5vh;
  border-left: solid 5px #f39c12;
  padding-left: 15px;
  margin-left: 10vw;
}

/* Styles supprimés - remplacés par les styles de médias adaptatifs */

.discographie-artiste-detail>h2 {
  margin-bottom: 3vh;
  font-family: "OpenSauceBold", sans-serif;
  font-size: 20px;
}

.discographie-container {
  font-family: "OpenSauceMedium", sans-serif;
  margin-bottom: 2vh;
}

.discographie-container h2 {
  font-family: "OpenSauceBold", sans-serif;
  font-size: 14px;
}

.tournee-artiste-detail>h2 {
  margin-bottom: 3vh;
  font-family: "OpenSauceBold", sans-serif;
  font-size: 20px;
}

.tournee-container h2 {
  font-family: "OpenSauceBold", sans-serif;
  font-size: 14px;
}

.musique-artiste {
  width: 85%;
  justify-self: center;
  margin-bottom: 25vh;
}

.musique-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.titre-musique-artiste {
  color: #f0940a;
  font-size: 30px;
  margin-bottom: 15vh;
  margin-right: 20px;
}

.presse-liste {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.presse {
  margin-bottom: 25vh;
}

.item-presse {
  width: 30%;
  height: 80%;
  background: white;
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.item-presse>p {
  margin: 10px;
  font-size: 16px;
  font-family: "OpenSauceMedium", sans-serif;
}

.info-presse {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-family: "OpenSauceMedium", sans-serif;
  margin: 10px;
}

.journal-presse {
  color: #7d1148;
}

.h3-presse {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 10px;
}

.square-presse {
  width: 100px;
  height: 3px;
  background-color: #3fb8ff;
  margin-top: -10px;
  margin-bottom: 10px;
  margin-left: 10px;
}

.presse-a-en-savoir-plus {
  text-decoration: none;
  color: #f39c12;
  margin: 10px;
  font-family: "OpenSauceBold", sans-serif;
}

@media (max-width: 768px) {
  .item-presse {
    width: 80%;
  }

  .title-musique {
    margin-left: 3vw;
  }
}

/*
.separateur-artiste {
    width: 90%;
    height: 2px;
    background-color: #9f0e58;
    margin-bottom: 15vh;
    justify-self: center;
}



@media (max-width: 768px) {
    .contenu-musique-artiste {
        flex-direction: column;
        gap: 5vh;
    }

    .video-artiste-detail,
    .audio-artiste-detail {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .video-artiste-detail iframe {
        height: fit-content;
    }

    .titre-artiste-nom {
        font-family: "OpenSauceBold", sans-serif;
        color: #9f0e58;
        margin-bottom: 15vh;
        margin-top: 25vh;
        font-size: 50px;
        text-align: center;
    }

    .sous-menu-artiste {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .sous-menu-button {
        width: 80%;
        font-size: 24px;
        padding: 10px 20px;
    }

    .biographie-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .titre-biographie-artiste {
        margin-bottom: 2vh;
        font-size: 24px;
    }

    .info-artiste {
        order: 1;
        margin-bottom: 5vh;
    }

    .biographie-artiste p {
        font-size: 16px;
    }

    .info-artiste p {
        font-size: 18px;
        margin-bottom: 1vh;
    }
}

*/

/* COURS ET STAGES */

.h1-stage-cours-test {
  color: #3fb8ff;
}

.p-cours-stages {
  text-align: justify;
  margin-inline: auto;
  font-family: "OpenSauceMedium", sans-serif;
  margin-top: 15vh;
  margin-bottom: 15vh;
  width: 70%;
  font-size: 16px;
}

.h2-nos-professeurs {
  text-align: center;
  /*font-size: 48px;*/
  font-size: 86px;
  margin-bottom: 8vh;

  font-family: "Tahoma", sans-serif;
}

.h2-nos-professeurs-span {
  color: #3fb8ff;
}

.p-prof {
  text-align: justify;
  justify-self: center;
  font-family: "OpenSauceMedium", sans-serif;
  margin-bottom: 15vh;
  width: 50%;
  font-size: 16px;
  color: white;
}

.liste-prof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 90%;
  margin: 0 auto;
}

.liste-prof div {
  padding: 15px;
  /*border-radius: 10px;*/
  position: relative;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.liste-prof .img-wrapper-prof {
  position: relative;
  overflow: hidden;
  width: 400px;
  height: auto;
}

.liste-prof img {
  width: 100%;
  height: auto;
  /*border-radius: 10px;*/
  display: block;
  transition: transform 0.3s ease-in-out;
}

.liste-prof .img-wrapper-prof:hover img {
  transform: scale(1.1);
}

.h3-nom-prof {
  color: white;
  font-size: 24px;
  /*font-family: "OpenSauceBold", sans-serif;*/
}

.p-nom-prof {
  font-size: 16px;
  font-family: "OpenSauceMedium", sans-serif;
  color:white;
}

.etiquette-prof {
  position: absolute;
  bottom: 110px;
  left: 11.3vw;
  transform: translateX(-50%);
  background-color: #3fb8ff;
  ;
  padding: 5px 10px;
  /*border-radius: 5px;*/
  text-align: left;
  width: 88%;
}

@media (max-width: 768px) {
  .p-cours-stages {
    width: 90%;
  }

  .p-prof {
    width: 100%;
  }
}

@media (max-width: 1300px) {
  .etiquette-prof {
    left: 13vw;
  }
}

@media (max-width: 1000px) {
  .square-nos-professeurs {
    margin-bottom: 10vh;
  }

  .h2-nos-professeurs {
    margin-bottom: 10vh;
  }

  .liste-prof {
    grid-template-columns: repeat(2, 1fr);
  }

  .etiquette-prof {
    left: 18vw;
  }
}

@media (max-width: 600px) {
  .liste-prof {
    grid-template-columns: repeat(1, 1fr);
  }

  .etiquette-prof {
    left: 40vw;
    width: 80%;
  }
}


.stages-bg {
  width: 100vw;
  
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background:  linear-gradient(to bottom, #3fb8ff 0%, #3fb8ff 50%, #ffffff 100%);
  padding: 80px 0 160px 0;
  box-sizing: border-box;
}




.stages-liste {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.item-stages {
  width: 30%;
  height: 80%;
  background: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.img-stages {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: -5px;
}

.item-stages>p {
  margin: 10px;
  font-size: 16px;
  font-family: "OpenSauceMedium", sans-serif;
}

.stage-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h2-stages {
  font-size: 24px;
  font-weight: bold;
  margin: 10px;
  font-family: "Tahoma", sans-serif;
}

.square-stages {
  width: 100px;
  height: 3px;
  background-color: #3fb8ff;
  margin-top: -10px;
  margin-bottom: 10px;
  margin-left: 10px;
}

.stage-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.stage-link:hover {
  opacity: 0.8;
}

.cours-a-en-savoir-plus {
  text-decoration: none;
  color: #3fb8ff;
  margin: 10px;
  font-family: "OpenSauceMedium", sans-serif;
}

.participer-cours-bg {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(to right, #3fb8ff, #7d1148);
  padding: 80px 0 80px 0;
  box-sizing: border-box;
}

.participer-cours-bg .participer-cours-stages {
  width: 90%;
  margin: 0 auto;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .participer-cours-bg .participer-cours-stages {
    width: 98%;
    border-radius: 10px;
  }
}

.participer-cours-stages {
  width: 90%;
  margin: 0 auto;
  text-align: left;
  background: linear-gradient(to right, #3fb8ff, #7d1148);

  padding: 80px 20px 80px 40px;
  margin-bottom: 25vh;
  border-radius: 18px;
}

.participer-cours-stages>h3 {
  color: white;
  font-size: 35px;
  margin-bottom: 5vh;
}

.participer-cours-stages>p {
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 18px;
  color: white;
  margin-bottom: 5vh;
  width: 55%;
}

.participer-cours-stages div {
  display: flex;
  justify-content: start;
  gap: 10px;
}

.participer-cours-stages a {
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 18px;
}

.participer-cours-a1-stages {
  background-color: white;
  color: #3fb8ff;
}

.participer-cours-a2-stages {
  border: solid 2px white;
  color: white;
}

@media (max-width: 768px) {
  .item-stages {
    width: 90%;
  }

  .stages-liste {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* STAGE DETAIL */

.img-stage-detail {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.img-stage-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*


.titre-stage-nom {
    font-family: "OpenSauceBold", sans-serif;
    color: #008cde;
    margin-bottom: 25vh;
    margin-top: 25vh;
    font-size: 60px;
    text-align: center;
}


.video-stage {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 25vh;
}

.video-stage iframe {
    border-radius: 15px;
    overflow: hidden;
    width: 65%;
    height: 75vh;
}

*/
.plus-info {
  width: 85%;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "OpenSauceMedium", sans-serif;
  margin-bottom: 25vh;
}

/*

.img-plus-info {
    flex: 1;
    max-width: 40%;
}

.img-plus-info img {
    width: 80%;
    height: auto;
    border-radius: 10px;
}

.plus-info-content {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.plus-info-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

*/

.titre-plus-info {
  color: #008cde;
  font-size: 30px;
  margin-bottom: 5vh;
  margin-right: 20px;
}

/*

.plus-info-stage {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-family: "OpenSauceBold", sans-serif;
}

.plus-info-stage p {
    margin-bottom: 3vh;
}
*/

.titre-stage-nom {
  font-family: "OpenSauceBold", sans-serif;
  color: #008cde;
  margin-bottom: 25vh;
  margin-top: 25vh;
  font-size: 60px;
  text-align: center;
}

.stage-info-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 15vh;
}

.plus-info,
.stage-contenu-media {
  flex: 1 1 50%;
  width: 50%;
  box-sizing: border-box;
  padding: 20px;
}

.stage-contenu-media img {
  max-width: 100%;
  height: auto;
  display: block;
}

.video-stage {
  position: relative;
  padding-bottom: 40.25%;
  /* Ratio 16:9 (9/16 = 0.5625) */
  height: 0;
  overflow: hidden;
  width: 100%;
  margin-top: 5vh;
}

.video-stage iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .stage-info-container {
    flex-direction: column;
    align-items: center;
    margin-top: 5vh;
  }

  .plus-info {
    width: 100%;
    margin-bottom: 2vh;
  }

  .stage-contenu-media {
    width: 100%;
  }

  .plus-info,
  .stage-contenu-media {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

/* ACTUALITES */

.actus-liste {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  margin-top: 10vh;
  
}

.item-actu {
  background-color: #f8f8f8;
  margin-bottom: 5vh;
  position: relative;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;

}
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* noir semi-transparent */
  z-index: 1;
}

.img-wrapper-actu {
  overflow: hidden;
  
  /*border-radius: 10px;*/
}

.img-wrapper-actu:hover .img-actu {
  transform: scale(1.1);
  /* zoom */
}

.item-actu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  pointer-events: none;
  z-index: 2;
}

.item-actu img {
  width: 100%;
  max-width: 400px;
  height: auto;
  /*border-radius: 10px;*/
  display: block;
  transition: transform 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

.actualite-a-en-savoir-plus {
  display: inline-block;         /* se comporte comme un bouton */
  padding: 10px 20px;            /* espace interne */
  background-color:#ff6b35
  ;     /* couleur de fond bleu */
  color: #fff;                   /* texte blanc */
  font-weight: bold;
  text-decoration: none;         /* enlever le soulignement */
  border-radius: 5px;            /* coins arrondis */
  transition: background-color 0.3s, transform 0.2s;
}

.actualite-a-en-savoir-plus:hover {
  background-color: #0056b3;     /* couleur plus foncée au survol */
  transform: translateY(-2px);   /* léger effet de survol */
}

.date-cat {
  position: absolute;
  font-size: 14px;
  color: white;
  margin-top: -25vh;
  margin-left: 20px;
  z-index: 15;
  font-family: "OpenSauceMedium", sans-serif;
  text-transform: uppercase;
}

.span-cat {
  color: rgb(243, 156, 18);
}

.h3-actu {
  font-size: 24px;
  font-family: "OpenSauceBold", sans-serif;
  position: absolute;
  z-index: 15;
  margin-top: -20vh;
  margin-left: 20px;
  text-align: left;
  color: white;
  width: 80%;
}

.savoir-plus {
  font-size: 14px;
  color: #f0940a;
  cursor: pointer;
  margin-top: 10px;
  display: none;
}

.savoir-plus:hover {
  text-decoration: underline;
}

.titre-actu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 25vh;
  margin-left: 13vh;
  width: 90%;
}

.h2-actu {
  text-transform: uppercase;
  font-size: 48px;
  position: relative;
  top:80px;
  left: 80px;
  
}

.decouvrir-actu {
  display: flex;
  align-items: center;
  /* Aligne verticalement "Toutes les actualités" et la flèche */
  margin-right: 5vh;
  position: relative;
  top: 80px;
  /* Ajuste cet espacement selon ton besoin */
}

.decouvrir-actu a {
  text-decoration: none;
  text-transform: uppercase;
}

.decouvrir-actu p {
  margin: 0;
  font-size: 16px;
  font-family: "OpenSauceMedium", sans-serif;
  color: #7d1148;
}

.decouvrir-actu svg {
  margin-left: 8px;
  width: 16px;
  height: 16px;
  stroke: #7d1148;
}

.savoir-plus-actu {
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 14px;
  color: #f0940a;
  cursor: pointer;
  position: absolute;
  top: 50vh;
  left: 18px;
  text-align: center;
  z-index: 15;
}

.savoir-plus-actu:hover {
  text-decoration: underline;
}

@media (max-width: 1145px) {
  .date-cat {
    font-size: 12px;
    margin-top: -22vh;
  }
}

@media (max-width: 1000px) {
  .h3-actu {
    margin-top: -14vh;
  }

  .date-cat {
    margin-top: -18vh;
  }
}

@media (max-width: 840px) {
  .actus-liste {
    grid-template-columns: repeat(1, 1fr);
  }

  .item-actu {
    max-width: 600px;
    margin-left: 2%;
  }

  .item-actu img {
    max-width: 500px;
  }

  .titre-actu {
    margin-left: 5vh;
    flex-direction: column;
    width: 100%;
    margin-left: 0%;
  }

  .h2-actu {
    font-size: 30px;
  }

  .decouvrir-actu {
    margin-right: 0;
  }

  .decouvrir-actu svg {
    display: none;
  }
}

/*
.h3-actu {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-family: "OpenSauceBold", sans-serif;
    color: #3fb8ff;
    background-color: white;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    width: max-content;
}

*/

/* FONTS */

@font-face {
  font-family: "OpenSauceBold";
  src: url("font/Open-Sauce-Sans/OpenSauceSans-Bold.woff") format("woff"),
    url("font/Open-Sauce-Sans/OpenSauceSans-Bold.woff2") format("woff2"),
    url("font/Open-Sauce-Sans/TTF/OpenSauceSans-Bold.ttf") format("truetype");
  font-style: normal;
}

@font-face {
  font-family: "OpenSauceMedium";
  src: url("font/Open-Sauce-Sans/OpenSauceSans-Medium.woff") format("woff"),
    url("font/Open-Sauce-Sans/OpenSauceSans-Medium.woff2") format("woff2"),
    url("font/Open-Sauce-Sans/TTF/OpenSauceSans-Medium.ttf") format("truetype");
  font-style: normal;
}

@font-face {
  font-family: "OpenSauceLight";
  src: url("font/Open-Sauce-Sans/OpenSauceSans-Light.woff") format("woff"),
    url("font/Open-Sauce-Sans/OpenSauceSans-Light.woff2") format("woff2"),
    url("font/Open-Sauce-Sans/TTF/OpenSauceSans-Light.ttf") format("truetype");
  font-style: normal;
}

@font-face {
  font-family: "Tahoma";
  src: url("font/tahoma/tahoma-3.woff") format("woff"),
    url("font/tahoma/tahoma-3.woff2") format("woff2"),
    url("font/tahoma/tahoma-3.ttf") format("truetype");
  font-style: normal;
}

.tahoma {
  font-family: "Tahoma", sans-serif;
}

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font-size86 {
  font-size: 86px;
}


/* MENTIONS LEGALES */

.h1-mention {
  color: #9f0e58;
  margin-bottom: 15vh;
  margin-top: 25vh;
  font-size: 35px;
  text-align: center;
}

.h2-mention {
  font-family: "OpenSauceBold", sans-serif;
  color: #9f0e58;
  margin-bottom: 5vh;
  font-size: 25px;
  text-align: left;
  width: 70%;
  justify-self: center;
}

.p-mention {
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 15px;
  text-align: left;
  width: 70%;
  justify-self: center;
  margin-bottom: 15vh;
}

/* PARTENAIRES */

.h1-partenaires {
  color: #9f0e58;
  margin-bottom: 15vh;
  margin-top: 25vh;
  font-size: 35px;
  text-align: center;
}

.contain-partenaires {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #f9f9f9;
  margin-bottom: 10vh;
}

.contain-partenaires img {
  width: 100%;
  max-height: 100px;
  object-fit: contain;
  background-color: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.contain-partenaires img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .h1-partenaires {
    font-size: 25px;
  }
}

/* QUI SOMMES NOUS */

.p-a-propos-wm {
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 16px;
  text-align: justify;
  width: 60%;
  margin: 0 auto;
  margin-bottom: 15vh;
  line-height: 1.7;
}

.p-a-propos-test {
  font-family: "OpenSauceLight", sans-serif;
  font-size: 20px;
  text-align: center;
  width: 60%;
  margin: 0 auto;
}

.h2-a-propos {
  margin-bottom: 5vh;
  margin-top: 20vh;
  /*font-size: 48px;*/
  font-size: 86px;
  text-align: center;
}

.h2-a-propos-span {
  color: #9f0e58;
}

.h2-a-propos-span1 {
  color: #d87e00;
}

.h2-a-propos-valeur {
  margin-bottom: 5vh;
  /*font-size: 48px;*/
  font-size: 86px;
  text-align: left !important;
}

.h2-a-propos-visions {
  margin-bottom: 5vh;
  /*font-size: 48px;*/
  font-size: 86px;
  text-align: left !important;
}

.h2-a-propos-enga {
  margin-bottom: 5vh;
  /*font-size: 48px;*/
  font-size: 86px;
  text-align: center;
}

@media (max-width: 1100px) {
  .h2-a-propos {
    margin-top: 10vh;
  }

  .h2-a-propos-valeur {
    margin-top: 10vh;
  }

  .h2-a-propos-visions {
    margin-top: 10vh;
  }

  .h2-a-propos-enga {
    margin-top: 10vh;
  }

  .p-a-propos-wm {
    width: 80%;
  }
}

.nos-valeurs {
  display: flex;
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.nos-valeurs-image {
  width: 50vw;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.nos-valeurs-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 900px) {
  .nos-valeurs-image {
    height: 33vh;
  }

  .nos-valeurs-image img {
    height: 33vh;
  }
}

.nos-valeurs-texte {
  width: 50vw;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*align-items: center;*/
  padding: 0 7vw;
  margin: 0;
  box-sizing: border-box;
}

.nos-valeurs-texte h2 {
  margin-bottom: 30px;
  text-align: left;
  /*font-size: 48px;*/
  font-size: 86px;
}

.h2-a-propos-valeur1 {
  color: #7d1148;
}

.h2-a-propos-valeur2 {
  color: #f0940a;
}

.nos-valeurs-texte p {
  text-align: justify;
  font-size: 16px;
  color: black;
  line-height: 1.7;
  font-family: 'OpenSauceMedium', sans-serif;
}

@media (max-width: 900px) {
  .nos-valeurs {
    flex-direction: column;
    min-height: unset;
    width: 100vw;
    left: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .nos-valeurs-image {
    width: 100vw;
    min-height: 250px;
  }

  .nos-valeurs-texte {
    width: 100vw;
    padding: 5vw 5vw;
    padding-bottom: 15vh;
    align-items: flex-start;
    justify-content: center;
  }

  .nos-valeurs-texte h2 {
    font-size: 2rem;
  }

  .nos-valeurs-texte p {
    font-size: 1rem;
  }
}

.nos-visions {
  display: flex;
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.nos-visions-texte {
  width: 50vw;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*align-items: center;*/
  padding: 0 7vw;
  margin: 0;
  box-sizing: border-box;
  text-align: left;
}

.nos-visions-texte h2 {
  margin-bottom: 30px;
  text-align: left;
  /*font-size: 48px;*/
  font-size: 86px;
}

.h2-a-propos-visions1 {
  color: #7d1148;
}

.h2-a-propos-visions2 {
  color: #f0940a;
}



.nos-visions-texte p {
  text-align: justify;
  font-size: 16px;
  color: black;
  line-height: 1.7;
  font-family: 'OpenSauceMedium', sans-serif;
}

.nos-visions-image {
  width: 50vw;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.nos-visions-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 900px) {
  .nos-visions-image {
    height: 33vh;
  }

  .nos-visions-image img {
    height: 33vh;
  }
}

@media (max-width: 900px) {
  .nos-visions {
    flex-direction: column;
    min-height: unset;
    width: 100vw;
    left: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 5vh;
  }

  .nos-visions-image {
    order: 1;
    /* Image en premier */
    width: 100vw;
    min-height: 250px;
  }

  .nos-visions-texte {
    order: 2;
    /* Texte en second */
    width: 100vw;
    margin-top: 0;
    padding: 2vw 5vw 5vw 5vw;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    margin-bottom: 10vh;
  }

  .nos-visions-texte h2 {
    font-size: 2rem;
  }

  .nos-visions-texte p {
    font-size: 1rem;
  }
}

/*
.p-a-propos {
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 16px;
  width: 60%;
  margin: 0 auto;
  margin-bottom: 25vh;
}

.p-a-propos-last {
  text-align: center;
}

.p-a-propos-list {
  text-align: left;
}*/

.nos-engagements-bg {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #f0940a;
  padding: 80px 0 80px 0;
  box-sizing: border-box;
}

.nos-engagements-bg .h2-a-propos-enga {
  color: white;
  text-align: center;
  font-weight: 400;
}

.nos-engagements-bg .p-a-propos {
  color: white;
  width: 60%;
  margin: 0 auto;
  font-size: 16px;
  text-align: justify;
  font-family: "OpenSauceMedium", sans-serif;
  line-height: 1.7;
}

.nos-engagements-bg .p-a-propos-list {
  color: white;
}

@media (max-width: 900px) {
  .nos-engagements-bg .p-a-propos {
    width: 90%;
    font-size: 16px;
  }
}

.participer-cours {
  width: 90%;
  margin: 0 auto;
  text-align: left;
  background-color: #8b005d;
  padding: 80px 20px 80px 40px;
  margin-bottom: 25vh;
  border-radius: 18px;
}

@media (max-width: 768px) {
  .p-a-propos {
    margin-bottom: 10vh;
    width: 80%;
  }

  .participer-cours {
    margin-bottom: 10vh;
  }
}

.participer-cours>h3 {
  color: white;
  font-size: 35px;
  margin-bottom: 5vh;
}

.participer-cours>p {
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 18px;
  color: white;
  margin-bottom: 5vh;
  width: 55%;
}

.participer-cours div {
  display: flex;
  justify-content: start;
  gap: 10px;
}

.participer-cours a {
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 18px;
}

.participer-cours-a1 {
  background-color: white;
  color: #8b005d;
}

.participer-cours-a2 {
  border: solid 2px white;
  color: white;
}

.liste-spectacle-a-propos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 15vh;
}

.liste-spectacle-a-propos div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.img-wrapper-spectacle-a-propos {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 10px;
  overflow: hidden;
}

.img-wrapper-spectacle-a-propos img {
  transition: transform 0.4s ease;
}

.img-wrapper-spectacle-a-propos:hover img {
  transform: scale(1.1);
}

.liste-spectacle-a-propos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.img-overlay-spectacle1-a-propos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  border-radius: 10px;
}

.img-overlay-spectacle2-a-propos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  border-radius: 10px;
}

.img-overlay-spectacle3-a-propos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  border-radius: 10px;
}

.img-overlay-spectacle4-a-propos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  border-radius: 10px;
}

.h3-nom-spectacle-a-propos {
  position: absolute;
  font-family: "OpenSauceMedium", sans-serif;
  text-transform: uppercase;
  margin-top: 30px;
  margin-left: -140px;
  font-size: 24px;
  color: white;
  z-index: 10;
  width: 136px;
  text-align: left;
}

.p-nom-spectacle-a-propos {
  position: absolute;
  font-family: "OpenSauceMedium", sans-serif;
  font-size: 16px;
  color: white;
  max-width: 200px;
  z-index: 10;
  text-align: left;
  margin-left: -80px;
  margin-top: 220px;
}

.decouvrir-spectacle-a-propos {
  position: absolute;
  margin-top: 280px;
  margin-left: -210px;
}

.decouvrir-spectacle-a-propos>a {
  text-decoration: none;
}

.decouvrir-spectacle-a-propos p {
  margin: 0;
  font-size: 14px;
  font-family: "OpenSauceMedium", sans-serif;
  color: white;
}

.decouvrir-spectacle-a-propos svg {
  position: absolute;
  margin-left: 7vw;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  stroke: white;
}

@media (max-width: 1280px) {
  .liste-spectacle-a-propos {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }

  .decouvrir-spectacle-a-propos svg {
    margin-left: 10vw;
  }
}

@media (max-width: 768px) {
  .liste-spectacle-a-propos {
    grid-template-columns: repeat(1, 1fr);
  }

  .decouvrir-spectacle-a-propos svg {
    margin-left: 20vw;
  }
}

/* CONTACT */

.container-contact {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  margin-top: 10vh;
}

.contact-section {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form>h2 {
  font-size: 48px;
  margin-bottom: 20px;
  margin-bottom: 5vh;
}

.contact-info>h2 {
  font-size: 48px;
  margin-bottom: 5vh;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.info-block .icon {
  background: #fce6f0;
  color: #b0005d;
  font-size: 24px;
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-block h3 {
  margin: 0;
  font-size: 24px;
}

.info-block div>p {
  font-family: "OpenSauceLight", sans-serif;
}

.formulaire-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-family: "OpenSauceLight", sans-serif;
}

.contact-full {
  width: 100%;
}

.input-contact {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  font-family: "OpenSauceLight", sans-serif;
}

.checkbox label {
  font-size: 16px;
  font-family: "OpenSauceLight", sans-serif;
}

.checkbox input {
  margin-right: 8px;
  font-family: "OpenSauceLight", sans-serif;
}

.checkbox a {
  color: #b0005d;
  text-decoration: none;
}

.contact-submit {
  background-color: #a30d58;
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
  width: 100%;
}

.contact-submit:hover {
  background-color: #870349;
}

.faq-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  margin-top: 20vh;
  margin-bottom: 20vh;
}

.faq-section h2 {
  font-size: 48px;
  color: #1a1a2e;
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 colonnes fixes */
  gap: 24px;
  text-align: left;
}

.faq-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
}

.faq-card h3 {
  color: #a30d58;
  font-size: 24px;
  margin-bottom: 12px;
}

.faq-card p {
  color: #3b3b3b;
  font-size: 16px;
  line-height: 1.6;
  font-family: "OpenSauceLight", sans-serif;
}

.h1-search {
  margin-top: 1vh;
  margin-left: 2vw;
}

.h2-search {
  margin-left: 2vw;
  color: #9c1458;
  text-decoration: underline #9c1458;
  font-family: "OpenSauceLight", sans-serif;
}

@media (max-width: 1200px) {
  .faq-section {
    margin-top: 10vh;
  }
}

/* Responsive : 1 colonne en dessous de 768px */
@media (max-width: 767px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Garder les indentation, saut de ligne ect */

.description-txt-pre {
  white-space: pre-wrap;
  margin-top: -8vh;
}

.img-supplementaire {
  margin-top: 5vh;
}



/* Animations */


/* Animation fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.item-actu {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.item-actu.visible {
  opacity: 1;
  transform: translateX(0);
}

.chiffre-chiffres {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease-in-out;
}

.chiffre-chiffres.visible {
  opacity: 1;
  transform: scale(1);
}

.contain-partenaires img {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.contain-partenaires img.visible {
  opacity: 1;
  transform: scale(1);
}



/* TABLEAU TOURNEES */

.tournees-bg {
  background: linear-gradient(to bottom, #f39c12, #e67e22);
  padding: 40px 20px;
  color: white;
  font-family: "OpenSauceMedium", sans-serif;
}

.tournee-artiste-detail>h2 {
  text-align: center;
  /*font-size: 48px;*/
  font-size: 86px;
  margin-bottom: 30px;
  letter-spacing: 2px;
  font-family: "Bebas Neue", sans-serif;
}

.tournee-container {
  background: #f39c12;
  border-radius: 16px;
  padding: 30px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tournee-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.tournee-table thead th {
  background-color: #f39c12;
  color: white;
  text-align: left;
  padding: 12px 18px;
  font-size: 24px;

}

.tournee-table thead th:first-child {
  border-top-left-radius: 8px;
}

.tournee-table thead th:last-child {
  border-top-right-radius: 8px;
}

.tournee-table tbody tr {
  background: #fdfdfd;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tournee-table tbody tr:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.tournee-table tbody tr:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.tournee-table tbody tr:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tournee-table tbody tr:hover td {
  color: #333;
  background-color: white;
}

.tournee-table tbody tr:hover td:first-child {
  background-color: #7d1148 !important;
  color: #ffffff;
}

.tournee-table td {
  padding: 14px 18px;
  font-size: 15px;
  color: white;
  background: #f39c12;
  /*border-bottom: 1px solid #eee;*/
}

@media (max-width: 768px) {

  .tournee-table,
  .tournee-table thead,
  .tournee-table tbody,
  .tournee-table th,
  .tournee-table td,
  .tournee-table tr {
    display: block;
    width: 100%;
  }

  .tournee-table thead {
    display: none;
  }

  .tournee-table td {
    position: relative;
    padding-left: 50%;
    text-align: right;
    border: none;
    border-bottom: 1px solid #eee;
  }

  .tournee-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 18px;
    width: 45%;
    padding-right: 10px;
    font-weight: bold;
    text-align: left;
    color: #555;
  }
}










/* =============================
   STYLES — PAGE RECHERCHE (search.php)
   ============================= */

/* Conteneur principal pour centrer le contenu */
.search-page-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Titre de la recherche */
.h1-search {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #7d1148;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Liens de résultat */
a.search-result-link {
  text-decoration: none;
  display: block;
  margin-bottom: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Carte de résultat */
.h2-search {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  color: #f39c12;
  background: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Effet au survol */
a.search-result-link:hover {
  transform: translateY(-4px);
}

a.search-result-link:hover .h2-search {
  color: #ff6b35;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Message aucun résultat */
.no-search-result {
  text-align: center;
  font-size: 1.1rem;
  color: #7f8c8d;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .h2-search {
    font-size: 1.05rem;
    padding: 0.8rem 1.2rem;
  }
}

/* =============================
   STYLES — MISE EN PAGE ADAPTATIVE MÉDIAS PAGE SPECTACLE
   ============================= */

/* Styles pour la mise en page adaptative des médias */
.media-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cas 1: Une seule vidéo, aucun son - 75% largeur centrée */
.single-video-only .video-single {
  width: 75%;
  margin: 0 auto;
  display: block;
}

.single-video-only .video-single iframe {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  display: block;
}

/* Cas 2 et 3: Côte à côte - 35% chacun */
.video-with-audio .media-side-by-side,
.multiple-videos-with-audio .media-side-by-side {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
  justify-content: center;
}

.video-with-audio .video-side,
.multiple-videos-with-audio .video-side,
.video-with-audio .audio-side,
.multiple-videos-with-audio .audio-side {
  flex: 0 0 35%;
}

.video-side iframe {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  display: block;
}

.audio-side {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.audio-side audio {
  width: 100%;
}

/* Cas 3 et 4: Vidéos empilées - 75% largeur */
.multiple-videos-only .videos-stacked,
.additional-videos {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  width: 100%;
}

.video-stacked {
  width: 75%;
  max-width: 900px;
  margin: 0 auto;
}

.video-stacked iframe {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  display: block;
}

/* Styles généraux pour les sections */
.videos-section {
  width: 100%;
  margin: 0 auto;
}

.videos-section h2,
.audios-section h2 {
  margin-bottom: 20px;
  color: white;
}

.audio-container audio {
  width: 100%;
  margin-bottom: 15px;
}

/* Cas audio seul */
.audios-section:not(.audio-side) {
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive pour les médias */
@media (max-width: 768px) {

  /* Sur mobile, tout passe en pleine largeur empilé */
  .video-with-audio .media-side-by-side,
  .multiple-videos-with-audio .media-side-by-side {
    flex-direction: column;
    gap: 20px;
  }

  .video-with-audio .video-side,
  .multiple-videos-with-audio .video-side,
  .video-with-audio .audio-side,
  .multiple-videos-with-audio .audio-side {
    flex: none;
    width: 100%;
  }

  .single-video-only .video-single,
  .video-stacked {
    width: 100%;
    max-width: none;
  }

  .single-video-only .video-single iframe,
  .video-stacked iframe {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .media-container {
    padding: 0 15px;
  }

  .video-with-audio .media-side-by-side,
  .multiple-videos-with-audio .media-side-by-side {
    gap: 15px;
  }
}

