
/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #808080;
  --secondary-color:              #7D1C16;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #7D1C16;
  --custom-btn-bg-hover-color:    #AE5655;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #B22727;

  --body-font-family:             'Outfit', sans-serif;

  --h1-font-size:                 74px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  16px; 
  --p-font-size-mobile:           12px; 
  --btn-font-size:                14px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}

body {
  background-color: var(--dark-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {

  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h5 a {
  color: var(--white-color);
}


h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}

.iframe {
  background-color: #aaaaaa;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link .nav-link-extern {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link .nav-link-extern, 
.nav-tabs .nav-link.active .nav-link-extern.active,
.nav-tabs .nav-link:focus .nav-link-extern:focus, 
.nav-tabs .nav-link:hover .nav-link-extern:hover{
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--dark-color);
}

.nav-tabs h5 {
  color: var(--p-color); 
  margin-bottom: 0;
}

.nav-tabs .nav-link.active .nav-link-extern.active h5,
.nav-tabs .nav-link:focus .nav-link-extern:focus h5, 
.nav-tabs .nav-link:hover .nav-link-extern:hover h5 {
  color: var(--primary-color);
}

.content-page {
  background-image: url('../images/fond_site.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.text-article {
    font-size: var(--p-font-size);
    text-align: left;
}

.table-no-border {
    border-collapse: collapse; /* Supprime les espaces entre les cellules */
    border: none; /* Supprime les bordures */
}

.table-no-border td, .table-no-border th {
        border: none !important; /* Supprime les bordures des cellules */
}

/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  VIDEO              
-----------------------------------------*/

.video-presentation {
    font-size: var(--p-font-size);
    color: var(--white-color);
    height: 100%;
    width: 100%;
    float: left;
    display: flex;
    flex-direction: column; /* Les éléments sont empilés verticalement */
    align-items: flex-start; /* Alignement à gauche */
}

.video-presentation-text  {
    color: var(--white-color);
    font-size: var(--p-font-size);
    font-style: italic; /* Mise en italique */
    flex-grow: 2; 
    margin-bottom: 20px;
}

.video-presentation-text p{
    font-size: var(--p-font-size);
    color: var(--white-color);
}

.image-video {
    display: flex; /* Utilisation de flexbox */
    align-items: center; /* Centre verticalement l'élément enfant */
    justify-content: center; /* Centre horizontalement l'élément enfant (si nécessaire) */
    height: 100%; /* Pour occuper toute la hauteur de la div parente */
}


.image-video img{
    opacity: 0.8;
    border-radius: var(--border-radius-small);
    width: 170px; /* Largeur de la miniature */
    height: 250px; /* Hauteur de la miniature */
}



.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* .above-video {
  z-index: 1000;
  position: relative; 
}

.container.above-video {
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  background-color: rgba(0, 0, 0, 0.3); 
  padding: 20px; 
} */

/* Styles pour tous les écrans (grandes tailles par défaut) */
.above-video {
    z-index: 1000;
    position: relative; /* Gardez cette position relative pour servir de référence */
}

/* Ces règles ne s'appliquent qu'à .container.above-video */
.container.above-video {
    /* Styles pour le centrage absolu sur les grands écrans */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    /* Ajoutez une largeur maximale si ce n'est pas déjà fait pour le centrage horizontal de son contenu */
    max-width: 800px; /* Exemple, ajustez selon le design */
    width: 90%; /* Prend 90% de la largeur du parent, pour laisser de la marge */
}

/* --- Media Query pour les petits écrans (mobiles) --- */
@media (max-width: 767.98px) { /* Appliquer ces styles pour les écrans de taille "sm" et inférieurs (moins de 768px) */
    .container.above-video {
        position: relative; /* Revenez à un positionnement relatif pour un flux normal */
        top: auto; /* Supprimez le top: 50% */
        left: auto; /* Supprimez le left: 50% */
        transform: none; /* Supprimez la transformation de centrage */
        padding-top: 50px; /* Ajoutez un padding en haut pour décaler le texte sous l'éventuelle barre de navigation */
        padding-bottom: 20px; /* Un peu d'espace en bas aussi */
        text-align: center; /* Centre le texte si la classe justify-content-center est supprimée */
        /* Vous pouvez aussi ajuster la couleur de fond si elle est trop opaque sur mobile */
        /* background-color: rgba(0, 0, 0, 0.5); /* Plus opaque si le texte est blanc sur une vidéo claire */
    }

    /* Ajustez les marges ou paddings des éléments de texte si nécessaire */
    .above-video .col-12 {
        padding-left: 15px; /* Pour éviter que le texte ne colle aux bords de l'écran */
        padding-right: 15px;
    }
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: var(--primary-color);
  padding-top: 12px;
  padding-bottom: 12px;
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
/*  margin-top: 51px;*/
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--dark-color);
}

.navbar {
  background: var(--dark-color);
  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link .nav-link-extern {
/*  border-radius: var(--border-radius-large);*/  
  border-radius: 5px;
  margin: 5px;
  padding: 10px 1px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
/*  background-color: #5A5A5A;*/
}
.nav-link-extern {
  color: #AE5655; /* Définit la couleur du texte en blanc */
  text-decoration: none; /* Supprime le soulignement par défaut */
  font-size: var(--p-font-size);  
    font-weight: var(--font-weight-normal);
}

.nav-link-extern:hover {
  color: lightgray; /* Optionnel : change la couleur en gris clair au survol */
    font-weight: var(--font-weight-normal);
font-size: var(--p-font-size);
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
/*  background-color: #800000;*/
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  INDEX        
-----------------------------------------*/
.index-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px;
  height: calc(100vh - 150px);
  background-color: var(--dark-color);
}

.index-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.index-section .section-overlay {
  z-index: 2;
  opacity: 0.45;
}

.index-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.index-section .container .row {
  height: 100%;
}

.content-page-container{
  background-color: var(--dark-color);
  padding-top: 50px;

}

.logo-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 180px; /* Largeur de la miniature */
  height: 53px; /* Hauteur de la miniature */
}


/*---------------------------------------
  SCHEDULE              
-----------------------------------------*/
.schedule-section {
/*  background-image: url('../images/nainoa-shizuru-unsplash-blur.jpg');
*/  background-color: #242424;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.table-responsive {
  filter: drop-shadow(2px 2px 4px #606060);
}

.schedule-table {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.schedule-table .bg-warning {
  background: #f0a5a5 !important;
}

.schedule-table thead th {
  background-color: var(--secondary-color);
}

.schedule-table th,
.schedule-table tr,
.schedule-table td {
  border-bottom-color: #363a3e;
  padding: 30px;
}

.schedule-table tr:last-child th,
.schedule-table tr:last-child td {
  border-bottom-color: transparent;
}

.schedule-table thead th {
  border-right: 1px solid #c7460a;
  border-bottom-color: transparent;
}

.schedule-table th + td {
  border-bottom: 0;
}

.schedule-table thead th:last-child {
  border-right-color: transparent;
}

.schedule-table .pop-background-image {
  background-image: url('../images/artists/joecalih-UmTZqmMvQcw-unsplash.jpg');
}

.schedule-table .rock-background-image {
  background-image: url('../images/artists/abstral-official-bdlMO9z5yco-unsplash.jpg');
}

.schedule-table .country-background-image {
  background-image: url('../images/artists/soundtrap-rAT6FJ6wltE-unsplash.jpg');
}

.table-background-image-wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  position: relative;
}

.schedule-table h3,
.schedule-table p {
  color: var(--white-color);
  position: relative;
  z-index: 2;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}

.credits {
}

.credit-text p{
    font-style: italic; /* Mise en italique */
  color: var(--white-color);
  padding-right: 20px;
}

.text-accueil p{
    font-style: italic; /* Mise en italique */
  color: var(--black-color);
  padding-right: 200px;
  /* justify*/
  text-align: left;

}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.site-footer-top {
  background-color: var(--secondary-color);
  background-repeat: no-repeat;
  margin-bottom: 70px;
  padding-top: 10px;
  padding-bottom: 5px;
}

.site-footer-bottom {
  border-top: 1px solid #1f1c1c;
  margin-top: 60px;
}

.site-footer-title {
  color: var(--primary-color); 
}

.site-footer-link,
.copyright-text {
  color: var(--white-color);
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before{
  animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg);
  }
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr, 
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

/* Masquez initialement les menus déroulants */
.dropdown-menu {
    display: none;
    background-color: var(--secondary-color);
}

/* Affichez le menu déroulant lorsque le bouton est survolé */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a.dropdown-item {
    color: #fff; /* Remplacez #000 par la couleur de texte de votre choix (par exemple, #FF0000 pour le rouge) */
}

/* Choisissez la couleur du texte au survol des liens dans le menu déroulant */
.dropdown-menu a.dropdown-item:hover {
    color: #000; /* Remplacez #FF0000 par la couleur de survol de votre choix */
}

.dropdown-menu a.dropdown-item.active {
  background-color: rgb(32, 56, 165);
}

/*---------------------------------------
  INTERVIEW               
-----------------------------------------*/

.border-interview {
    border: 2px solid #7D1C16; /* Bordure de 2 pixels de large, de couleur noire */
    border-radius: var(--border-radius-small);
    border-style: groove;
}

.header-interview {
    margin-top: 20px;
    padding: 10px;
}

.image-interview {
    width: 100%;
    height: 100%;
    float: left;
}

.image-interview img {
    border-radius: var(--border-radius-small);
    max-width: 100%;
    height: auto;
}

/* Style pour la classe intro-interview */
.intro-interview {
    font-size: var(--p-font-size);
    color: var(--white-color);
    height: 100%;
    width: 100%;
    float: left;
    display: flex;
    flex-direction: column; /* Les éléments sont empilés verticalement */
    align-items: flex-start; /* Alignement à gauche */
}

/* Style pour la classe intro-text */
.intro-interview-text {
    font-size: var(--p-font-size);
    font-style: italic; /* Mise en italique */
    flex-grow: 2; 
    margin-bottom: 20px;
}

.intro-interview-text p{
    font-size: var(--p-font-size);
    color: var(--white-color);
}


/* Style pour la classe intro-link */
.intro-interview-link {
    font-style: italic; /* Mise en italique */
    font-size: var(--p-font-size);
    flex-grow: 8;   
}


/* Style pour la classe text-article (à personnaliser selon vos besoins) */
.text-interview {
    margin-top: 10px;
    margin-bottom: 10px;
    clear: both; /* Pour éviter que d'autres éléments flottants interfèrent */
    font-size: var(--p-font-size);
    text-align: left;
    color: var(--white-color);
}

.interview-question {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
}

.interview-reponse {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

/*---------------------------------------
  LINEUP               
-----------------------------------------*/

.image-lineup-soh  {
  display: flex; /* Utilisation de flexbox */
  align-items: center; /* Centre verticalement l'élément enfant */
  justify-content: center; /* Centre horizontalement l'élément enfant (si nécessaire) */
}

.image-lineup-soh img {
  justify-content: center; /* Centre horizontalement l'élément enfant (si nécessaire) */
  width: 100%;
}

.lineup {
}

.lineup-text p{
  font-style: italic; /* Mise en italique */
  color: var(--white-color);
  padding-right: 20px;
}


.text-lineup {
  margin-top: 10px;
  margin-bottom: 10px;
  clear: both; /* Pour éviter que d'autres éléments flottants interfèrent */
  font-size: var(--p-font-size);
  text-align: left;
  color: var(--white-color);
}


.text-lineup table{
  border-spacing: 20px;
  border-collapse: separate;
}

.border-lineup {
  border: 2px solid #7D1C16; /* Bordure de 2 pixels de large, de couleur noire */
  border-radius: var(--border-radius-small);
  border-style: groove;
}

.header-lineup {
  margin-top: 20px;
  padding: 10px;
}

.lineup-text {
  color: var(--white-color);
  font-size: var(--p-font-size);
  flex-grow: 2; 
  margin-bottom: 5px;
  margin-top: 5px;
}

.lineup-text p{
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-style: italic; /* Mise en italique */
  flex-grow: 2; 
  margin-bottom: 5px;
  margin-top: 5px;
}

/* haut | droit | bas | gauche */
.lineup-column-image {
  /*padding: 0px 40px 0px 40px;*/
  width: 30%;
}

.text-column {
  width: 70%;
}

.mobile-image {
  display: none; /* Masque l'image par défaut */
}

@media (max-width: 768px) {

  .text-lineup table{
    border-spacing: 0px;
    border-collapse: separate;
  }  

  .pc-image {
    display: none; /* Masque l'image par défaut */
  }
  
  .lineup-column-image {
    /*padding: 0px 40px 0px 40px;*/
    width: 0%;
  }  

  .text-column {
    width: 100%; /* Sur mobile, occupe toute la largeur */
  }

  .mobile-image {
    display: block; /* Affiche l'image sur mobile */
    top: 0;
    left: 0;
    width: 100%;
  }
  .mobile-image img{
    width: 100%;
  }
  
}


/*---------------------------------------
  CONCERTS
-----------------------------------------*/

.border-concert {
    border: 2px solid #7D1C16; /* Bordure de 2 pixels de large, de couleur noire */
    border-radius: var(--border-radius-small);
    border-style: groove;
}

.header-concert {
    margin-top: 20px;
    padding: 10px;
}

.image-lineup {
  display: flex; /* Utilisation de flexbox */
  align-items: center; /* Centre verticalement l'élément enfant */
  justify-content: center; /* Centre horizontalement l'élément enfant (si nécessaire) */
  height: 100%; /* Pour occuper toute la hauteur de la div parente */
}

/* Style pour l'image à l'intérieur de la classe image-concert */
.image-lineup img {
  max-width: 5%; /* Ajuster la largeur de l'image */
  height: auto;
}

.image-concert {
    display: flex; /* Utilisation de flexbox */
    align-items: center; /* Centre verticalement l'élément enfant */
    justify-content: center; /* Centre horizontalement l'élément enfant (si nécessaire) */
}

/* Style pour l'image à l'intérieur de la classe image-concert */
.image-concert img {
    max-width: 100%; /* Ajuster la largeur de l'image */
    height: auto;
}

.content-concert {
    font-size: var(--p-font-size);
    color: var(--white-color);
    height: 100%;
    width: 100%;
    float: left;
    display: flex;
    flex-direction: column; /* Les éléments sont empilés verticalement */
    align-items: flex-start; /* Alignement à gauche */
}

.concert-text {
    color: var(--white-color);
    font-size: var(--p-font-size);
    flex-grow: 2; 
    margin-bottom: 5px;
    margin-top: 5px;
}

.concert-text p{
    color: var(--white-color);
    font-size: var(--p-font-size);
    font-style: italic; /* Mise en italique */
    flex-grow: 2; 
    margin-bottom: 5px;
    margin-top: 5px;
}


.billetterie-text {
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
    flex-grow: 2; 
    margin-bottom: 5px;
    margin-top: 5px;
}

.billetterie-text p{
    color: var(--white-color);
    font-style: italic; /* Mise en italique */
    flex-grow: 2; 
    margin-bottom: 5px;
    margin-top: 5px;
}


.billetterie-text-info {
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
    font-style: italic; /* Mise en italique */
    flex-grow: 2; 
    margin-bottom: 5px;
    margin-top: 5px;
}

.billetterie-text-info  p{
    color: var(--white-color);
    font-style: italic; /* Mise en italique */
    flex-grow: 2; 
    margin-bottom: 5px;
    margin-top: 5px;
}



.bandcamp-concert-link {
}
.text-concert {
    margin-top: 10px;
    margin-bottom: 10px;
    clear: both; /* Pour éviter que d'autres éléments flottants interfèrent */
    font-size: var(--p-font-size);
    text-align: left;
    color: var(--white-color);
}

.concert-question {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
}

.concert-reponse {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}


/*---------------------------------------
  FACEUP
-----------------------------------------*/

.image-faceup {
    display: flex; /* Utilisation de flexbox */
    align-items: center; /* Centre verticalement l'élément enfant */
    justify-content: center; /* Centre horizontalement l'élément enfant (si nécessaire) */
    height: 100%; /* Pour occuper toute la hauteur de la div parente */
}


.image-faceup img{
    opacity: 0.5;
    border-radius: var(--border-radius-small);
}


.faceup-link a{
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  font-weight: var(--font-weight-light);
  color: var(--secondary-color);
}

.faceup-link a img{
  width: 100px;
}

/*---------------------------------------
  F2F
-----------------------------------------*/

.f2f-link a{
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  font-weight: var(--font-weight-light);
  color: var(--secondary-color);
}


.social-icon-link-f2f {
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.playlist-icon-f2f {
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  margin-left: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}


.social-icon-link-f2f:hover {
  color: var(--white-color);
}

.social-icon-link-f2f span {
  display: block;
}

.social-icon-link-f2f span:hover::before{
  animation: spinAround 2s linear infinite;
}





.image-f2f {
    display: flex; /* Utilisation de flexbox */
    align-items: center; /* Centre verticalement l'élément enfant */
    justify-content: center; /* Centre horizontalement l'élément enfant (si nécessaire) */
    height: 100%; /* Pour occuper toute la hauteur de la div parente */
}

/* Style pour la galerie */
.gallery {
    display: flex;
    flex-wrap: wrap;
}

/* Style pour chaque miniature d'image */
.thumbnail {
    margin: 5px;
    width: 170px; /* Largeur de la miniature */
    height: 250px; /* Hauteur de la miniature */
    overflow: hidden;
    cursor: pointer; /* Curseur en main pour indiquer la cliquabilité */
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Remplit la miniature tout en conservant les proportions de l'image */
}

/* Style pour agrandir l'image */
.enlarge-image {
    position: fixed; /* Position fixe pour placer l'image agrandie au-dessus de tout */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Arrière-plan semi-transparent pour l'effet de superposition */
    display: none; /* Masquer initialement l'image agrandie */
    justify-content: center;
    align-items: center;
}

.enlarge-image img {
    max-width: 90%; /* Largeur maximale de l'image agrandie */
    max-height: 90%; /* Hauteur maximale de l'image agrandie */
}
/*---------------------------------------
  Contact
-----------------------------------------*/

/* Style pour la classe intro-text */
.contact-text {
    font-size: var(--p-font-size);
    font-style: italic; /* Mise en italique */
    flex-grow: 2; 
    margin-bottom: 20px;
}

.contact-text p {
  font-size: var(--p-font-size);
  font-style: italic; /* Mise en italique */
  flex-grow: 2; 
  margin-bottom: 20px;
}

.contact-text span a i{
    margin-left: 10px;
  
    color: var(--secondary-color);
    font-size: var(--h6-font-size);
}

/*---------------------------------------
  SOH presentation
-----------------------------------------*/
.image-soh  {
  display: flex; /* Utilisation de flexbox */
  align-items: center; /* Centre verticalement l'élément enfant */
  justify-content: center; /* Centre horizontalement l'élément enfant (si nécessaire) */
}

.image-soh img {
  justify-content: center; /* Centre horizontalement l'élément enfant (si nécessaire) */
  width: 100%;
}

.soh-presentation {
    font-size: var(--p-font-size);
    color: var(--white-color);
    width: 100%;
    float: left;
    display: flex;
    flex-direction: column; /* Les éléments sont empilés verticalement */
    align-items: flex-start; /* Alignement à gauche */
}

.soh-presentation-text  {
    color: var(--white-color);
    font-size: var(--p-font-size);
    font-style: italic; /* Mise en italique */
    flex-grow: 2; 
    margin-bottom: 20px;
}

.soh-presentation-text p{
    font-size: var(--p-font-size);
    color: var(--white-color);
}

/*---------------------------------------
  SOH line-up
-----------------------------------------*/

.image-soon img{
    opacity: 0.3;
}


.soon-text  {
    color: var(--white-color);
    font-size: var(--h4-font-size);
}

/*---------------------------------------
  Billetterie
-----------------------------------------*/

.billetterie-links a{
    margin-right: 30px; 
    margin-left: 30px; 
}

.billetterie-links a img{
    width :120px;
}


.billetterie {
    margin-top: 30px; 
    margin-bottom: 30px; 
}




