@font-face {
    font-family: futura;
    src: url("../fonts/FUTURA55REGULAR.TTF");
}

@font-face {
    font-family: neuropol;
    src: url("../fonts/neuropol.otf");
}


html {
    scroll-behavior: smooth;
}

body {
    color: white;
    font-family: neuropol;
    background-color: black;
    padding: 0;
    margin: 0;
}

/***********************  NAVBAR  **************************/

.navbar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10%;
    position: fixed;
    top: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
}

.navbar .tab {
    margin: 20px;
}

.navbar a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: large;
    transform: transition .4s;
}

.navbar a:hover {
    color: blueviolet;
    transform: scale(1.1);
}

/********************** MAIN ******************************/

.main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main>div {
    height: 100vh;
}

.main .bloc {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}

.content {
    width: 80%;
    height: 100%;
}

/********************** BOUTON ******************************/

#myBtn {
    display: block;
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: lightgray; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 50%; /* Rounded corners */
    font-size: 18px; /* Increase font size */
    transition: all 0.4s;
  }
  
  #myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
  }


/**************  Banniere ************/

#banniere {
    background-image: url("../img/banniere-rognee2.png");
    background-position: center bottom;
    background-size: 100%;
    background-repeat: no-repeat;
    box-shadow: 0 0 30px 0px #0a2f80;
}

.banniere-text {
    display: flexbox;
    flex-direction: column;
    align-items: center;
    width: 45%;
    margin-left: 3%;
    margin-top: 15%;
}

#nom-banniere {
    width: 100%;
}

.icons {
    margin-top: 1%;
    width: 100%;
}

.icons a i, .logo-png {
    transform: transition .4s;
}

.icons a i:hover {
    transform: scale(1.2);
    color: #8a2be2;
}

.logo-png:hover {
    transform: scale(1.2);
    filter: invert(25%) sepia(90%) saturate(6253%) hue-rotate(269deg) brightness(93%) contrast(91%);
}

.bx {
    color: white;
    margin-right: 4%;
}

.logo-png {
    filter: brightness(0) invert(1);
    height: 4%;
    width: 4%;
}



/**************  Présentation ************/

#presentation-bloc {
    position: relative;
    height: 200vh;
    flex-direction: column
}

.presentation-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: large;
    height: 30%;
    width: 85%;
}

#description {
    width: 50%;
    font-family: futura;
}

#pp {
    height: 80%;
}


/************** Player ************/

#music-bloc {
    background-image: url("../img/bg-musics.png");
    background-position: center bottom;
    background-size: 100%;
    box-shadow: 0 0 30px 0px #d4d4d4;
    width: 100%;
    color: white;
}

#music-content {
    display: flex;
    align-items: center;
    justify-content: space-evenly ; 
}

#music-content h1 {
    height: 10%;
}

.bloc-youtube {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bloc-youtube-player {
    width: 100%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.youtube-player {
    width: 100%;
    height: 55%;    
    margin: 1%;
}

.bloc-spotify {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bloc-spotify-player {
    width: 100%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.spotify-player {
    width: 48%;
    height: 55%;
    margin: 1%;
}


/************** Photos  ************/

#photos-bloc {
    width: 100%;
}

#photos-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.carousel-wrapper {
    height: 400px;
    position: relative;
    width: 800px;
    display: block;
    margin: 50px auto ;
    border: 2px solid black;
  }
  
  .carousel-item {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 50px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    height: 100%;
  }
  .arrow{
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 12px;
    transition: ease-in-out 0.2s;
}

.arrow:hover {
    border: solid #de04ff;
    border-width: 0 3px 3px 0;
  }

  .arrow-prev {
    left: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
  
  }
  .arrow-next {
    right: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  
  [id^= "item"] {
    display: none;
  }
  .item-1 {
    z-index: 2;
    opacity: 1;
    background: url('../img/caroussel/pic1.jpeg');
    background-size: cover;
  }
  .item-2 {
    background: url('../img/caroussel/pic2.jpg');
    background-size: cover;
  }
  .item-3 {
    background: url('../img/caroussel/pic3.png');
    background-size: cover;
  }
  
  .item-4 {
    background: url('../img/caroussel/pic4.jpg');
    background-repeat: no-repeat;
    background-size: auto 100% ;
    background-position: center top;
  }
  
  .item-5 {
    background: url('../img/caroussel/pic5.jpg');
    background-size: cover;
  }

  .item-6 {
    background: url('../img/caroussel/pic6.jpg');
    background-size: cover;
  }

  .item-7 {
    background: url('../img/caroussel/pic7.jpg');
    background-repeat: no-repeat;
    background-size: auto 100% ;
    background-position: center top;
  }

  .item-8 {
    background: url('../img/caroussel/pic8.jpg');
    background-repeat: no-repeat;
    background-size: auto 100% ;
    background-position: center top;
  }

  .item-9 {
    background: url('../img/caroussel/pic9.jpg');
    background-repeat: no-repeat;
    background-size: auto 100% ;
    background-position: center top;
  }

  .item-10 {
    background: url('../img/caroussel/pic10.jpg');
    background-repeat: no-repeat;
    background-size: auto 100% ;
    background-position: center top;
  }

  .item-11 {
    background: url('../img/caroussel/pic11.jpg');
    background-size: cover;
  }

  *:target ~ .item-1{
    opacity: 0;
  }
  #item-1:target ~ .item-1 {
    opacity: 1;
  
  }
  #item-2:target ~ .item-2, #item-3:target ~ .item-3, #item-4:target ~ .item-4, #item-5:target ~ .item-5, #item-6:target ~ .item-6, #item-7:target ~ .item-7, #item-8:target ~ .item-8, #item-9:target ~ .item-9, #item-10:target ~ .item-10, #item-11:target ~ .item-11 {
    z-index: 5;
    opacity: 1;
  } 

/**************  Contact ************/

#contact-bloc {
    background-color: white;
}

#contact-content {
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    color: black;
}

form {
    width: inherit;
}

form input[type=text], form p, form textarea {
    width: 100%;
}

form input[type=text] {
    height: 10%;
}

.footer-contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.liens-contact {
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content : space-evenly;
}

.liens-contact a {
    font-weight: bold;
    text-decoration: none;
    font-size: large;
    transform: transition .8s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.liens-contact a:hover {
    transform: scale(1.1);
}

#logo-contact-linkaband {
    width: 50%;
    height: auto;
}

#logo-contact-livetonight {
    width: 40%;
    height: auto;
}

.formButton {
    width: 10%;
    padding: 10px;
    color: white;
    border-radius: 5px;
    border: 0;
    font-weight: bold;
    text-transform: capitalize;
}

#submitButton {
    background-color: #2f38ff;
    transition: ease-in-out 0.2s;
}

#submitButton:hover {
    cursor: pointer;
    background-color: #de04ff;
}

#resetButton {
    background-color: gray;
    transition: ease-in-out 0.2s;
}

#resetButton:hover{
    cursor: pointer;
    background-color: red;
}


