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

html,
body {

  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  background: rgb(0, 0, 0);
}


#contact {
    display: block;
    background: #ffffff;
    border-radius: 30px 30px 0 0;
    text-align: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer !important;
}


#contact h1{
  padding:10px;
  font-size: clamp(4vw, 3vw, 5rem) !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  align-items: left;
  justify-content: left;
  color: transparent !important;
  -webkit-text-stroke:  0.15vw rgb(0, 0, 0) !important;
  grid-row: 1 / span 2;
  align-self: start;
  line-height: 1;
    display: inline-block;
}


#contact a {
  color:inherit;
  width: 100%;
  text-decoration: none;
}

.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal; 

}
.outline-text {
    color: transparent !important;
    -webkit-text-stroke: 0.5px white;
}
/* MENU */
.menu {
  position: fixed;
  top: 80px;
  left: 10px;
  width: 80px;
  height: 80vh;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  border-radius:20px;

  box-shadow:
  inset 0 0 10px rgba(255,255,255,0.1),
  0 0 10px rgba(241, 240, 240, 0.4),
  0 0 25px rgba(218, 218, 218, 0.2);



  z-index: 50;
}
.logo {
   position: fixed;
  color:#ffffff;
  text-align:center;
  background: rgba(0, 0, 0, 0.3);
    justify-content: center;
  align-items: center;
  width:100%;
  margin:0 auto;
  height: 60px;
  z-index:50;
}

.logo img{
 height:100%;
 padding:10px;
}

/* visible */
.menu.show {
  opacity: 1;
  transform: translateY(0);
  transition:
  opacity 0.6s ease,
  transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: auto;

  


}

/* LIENS */
.menu a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 18px;
}

.icons-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
align-items: center;
  width: 100%;
  height: 100%;
  
}
.icons-menu a {
  width: 100%;

}
.icons-menu img {
  width: 75%;
  margin:0 auto;

}

#menu-toggle {
  display: none;
}
.burger {
  display: none;
  position: fixed;
  top: 15px;
  left: 35px;

  width: 30px;
  height: 25px;

  flex-direction: column;
  justify-content: space-between;

  cursor: pointer;
  z-index: 100;
}

.burger span {
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger,
.burger * {
    cursor: pointer;
}

/* ANIMATION CROIX */
#menu-toggle:checked + .burger span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

#menu-toggle:checked + .burger span:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked + .burger span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}
@media (max-width: 768px) {

  .burger {
    display: flex;
  }

  /* menu caché par défaut (slide gauche) */
  .menu {
    transform: translateX(-120%);
    opacity: 0;
  }

  /* menu ouvert */
  #menu-toggle:checked ~ .menu {
    transform: translateX(0);
    opacity: 1;
  }
}





/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;

}

/* VIDEO */
.hero-poster,
.bg-video {
 position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;
   z-index: 2;

}

.hero-poster {
 
    z-index: 5;
    transition: opacity 0.4s ease;
}


.hero-poster.hidden {
    opacity: 0;
    pointer-events: none;
}


/* icône centrée */
.loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; /* ajuste */
    height: auto;
    z-index: 9;
    opacity: 1;
    animation: pulse 2.3s ease-in-out infinite;
}

/* animation fade in/out */
@keyframes pulse {
    0%   { opacity: 0.05; transform: translate(-50%, -50%); }
    50%  { opacity: 1;   transform: translate(-50%, -50%) ; }
    100% { opacity: 0.05; transform: translate(-50%, -50%) ; }
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  width: fit-content;
  margin: 2vh auto;

  color:rgb(255, 255, 255) !important;
  font-size: clamp(1.5rem, 4vw, 3rem);

  background: rgba(0,0,0,0.4);
  
  letter-spacing: 3px;
  text-transform: uppercase;
  /*display: inline-block;*/
  padding: 1vh 3vw;
  background: linear-gradient(145deg, #000000, #101010);

  /*border: 1px solid #000000;*/
  border-radius: 10px 30px 15px 40px / 30px 10px 40px 15px;
  box-shadow:
    inset 0 0 10px rgba(255,255,255,0.05),
    0 0 10px rgba(241, 240, 240, 0.4),
    0 0 25px rgba(218, 218, 218, 0.2);


  transform: skew(-5deg);

  position: relative;
  overflow: hidden;


}


.title.show {

  opacity: 1;
  transition:
  opacity 0.6s ease,
  transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: auto;

  transform: translateY(-50%); /* arrive à sa position finale */
  z-index:4 !important;
}


.title span{
  filter: brightness(0) invert(1);
  mix-blend-mode: difference;
  text-align: center;
}






#music,
#streams,
#networks,
#concerts {
  scroll-margin-top: 15vh;
}


#streams{
  position: relative;
  background-color:rgb(0, 0, 0);

}

#networks{
  position: relative;
  background-color:rgb(255, 255, 255);
  border-radius: 30px;
}

#music{
  
  position: relative;
  background-color:rgb(0, 0, 0);
  min-height: 80vh;

    display: flex;
    flex-direction: column;


}

#music .title {
    flex: 0 0 auto;
}

#concerts{
  position: relative;
  background: #413b3b;
  border-radius: 30px;
  min-height: 80vh;
  padding-bottom:100px;
  justify-content: center;

}


/* Centre le bloc concerts-container dans #concerts */

.concerts-container {
    width: 80vw;
    max-width: 900px;
    margin: 0 auto;

  
}

/* Année au-dessus et alignée à gauche de la liste */
.title-year {
    font-size: clamp(5rem, 8vw, 25rem) !important;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: left;
    
}

.concert-liste {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* ouvert */
.concert-year.open .concert-liste {
    max-height: 1000px; /* assez grand */
    opacity: 1;
}


/* Chaque ligne */
.concert-liste li {
    display: flex;
    gap: 10px;
    align-items: baseline;
    padding: 5px 0;
    margin-bottom:20px;
    max-width:80vw;
}


.concert-item {

    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 0;

    width:100%;

     display: flex;
    align-items: flex-start;
}

.concert-content {
    flex: 1;
       margin: 0;
    padding: 0;
    line-height: 1;
    text-align: left;
}

/* suppression totale des espaces */
.concert-ligne1,
.concert-ligne2 {
    margin: 0;
    padding: 0;
    line-height: 1;
    text-align: left;
}


/* Styles des champs */
.concert-date {
      flex: 0 0 80px; /* largeur FIXE → empêche le chevauchement */

    line-height: 1;
  
  font-size: clamp(3rem, 5.5vw, 6rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  align-items: left;
  justify-content: left;
  color: transparent !important;
  -webkit-text-stroke:  0.15vw rgb(255, 255, 255) !important;
      grid-row: 1 / span 2;
    align-self: start;
    line-height: 1;
  
}

.concert-lieu {
  
 font-size: clamp(1.5rem, 3vw, 3rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  align-items: bottom;
  justify-content: left;
  color: #000000;
  -webkit-text-stroke:  0.05em rgb(0, 0, 0) !important;
  align-items: center;
}

.concert-ville {
   font-size: clamp(1.5rem, 3vw, 3rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  align-items: top!important;
  justify-content: left !important;
  text-align:left !important;
  color: transparent !important;
  -webkit-text-stroke: 0.09vw rgb(255, 255, 255) !important;
}

.hidden{
  opacity: 0;
}

.opacity{
    opacity: 0.45;
}

.concert-departement {
     
 font-size: clamp(1rem, 2.5vw, 2.5rem);
margin-left:-7px;
  text-transform: uppercase;
  align-items: left !important;
  text-align:left !important;
  justify-content: left !important;
  color: #000000 !important;
  -webkit-text-stroke:  0.05em rgb(0, 0, 0) !important;
  vertical-align:top;
}



/* SECTION */
.icons-section{
  height: 80vh;
 
  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden;
}

/* CONTENEUR */
.icons-container {
 position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100px;
  height: 100px;
}

/* ICONES */
.icon {
  position: absolute;
  top: 50%;
  left: 50%;

  height: 15vh;
  transform: translate(-50%, -50%);
  transition:
    transform 1.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 8s ease;
  filter: brightness(0) invert(1);
 

}

.icon:hover {
  filter:
    brightness(0.5)
    saturate(100%)
}


/* ETAT ANIMÉ */

.icon-apple {
  mask-image: linear-gradient(
    to bottom,
    black 50%,
    transparent 50%
  );
}

.icons-section.active .icon-apple {
  transform: translate(calc(-50% - 30vw), -50%);
   mask-image: none;
}

.icon-spotify {
  mask-image: linear-gradient(
    to bottom,
    black 50%,
    transparent 50%
  );
  
}
.icons-section.active .icon-spotify {
  transform: translate(calc(-50% + 30vw), -50%);
   mask-image: none;
   
}


.icon-fb {

   filter: brightness(0)
    
}

.icon-ytbe {
  mask-image: linear-gradient(
    to bottom,
    black 50%,
    transparent 50%
  );
   filter: brightness(0)
    
}

.icons-section.active .icon-ytbe {
  transform: translate(calc(-50% - 30vw), -50%);
   mask-image: none;
}

.icon-insta {
  mask-image: linear-gradient(
    to bottom,
    black 50%,
    transparent 50%
  );
    filter: brightness(0)
}

.icons-section.active .icon-insta {
  transform: translate(calc(-50% + 30vw), -50%);
   mask-image: none;
}

.tracks{
   flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* centrage vertical */
    align-items: center;      /* optionnel : centrage horizontal */
}
.audio-player {
  display: flex;

  gap: 15px;
  background: #413b3b;
  padding: 10px;
 border-radius: 12px;
  width: 80vw;
  max-width:1000px;
  margin:0 auto;
  margin-top:10px;
    opacity: 0;


}
.audio-player.show{


  opacity: 1;
  transition:
  opacity 0.6s ease,
  transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: auto;

  transform: translateY(-50%); /* arrive à sa position finale */
 
}

.cover-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
}

.cover {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* bouton play au centre */
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.play-btn:hover {
  transform: scale(1.1);
  background: rgba(0,0,0,0.8);
}

.title-music {

  /*color:rgb(255, 255, 255) !important;*/
   font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  vertical-align: center;
  margin:0 auto;
      color: transparent !important;
    -webkit-text-stroke:  0.02em white !important;
  z-index:20;


}


#bio{
  position: relative;
  background-color:rgb(0, 0, 0);

  min-height: 80vh;
}



#bio p{
 margin-left:10vw;
 margin-right:10vw;
   font-size:  clamp(1rem, 2vw,2rem)!important;
 color:#ffffff;
 text-align: justify;
font-weight: 200; 
}

#bio img{

  width:100vw;
  align-items: center;
  justify-content: center;
  vertical-align: center;
  margin-bottom:10vh;

}
#bio h1{
 margin-left:10vw;
 margin-right:10vw;
  font-size:  clamp(1.5rem, 3vw, 2.8rem)!important;
  letter-spacing: 3px;
  text-transform: uppercase;
  align-items: left;
  justify-content: left;
  color: transparent !important;
  -webkit-text-stroke:  0.1vw rgb(255, 255, 255) !important;

  grid-row: 1 / span 2;
  align-self: start;
  line-height: 1;
  display: inline-block;
  margin-top:5vh;
  margin-bottom:5vh;
}



html {
    cursor: pointer !important;
}