* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --main-txt-color: #645cdd;
  --main-title-color: #c3bce2d7;
  --title-color: #ff00cc;
  --background-color: rgb(24, 24, 24);
  --artist-color: #574de4;
}

/* $$ GENERAL STYLES */

/* propriétés de style général */

/* Styles pour le titre dégradé */
.gradient-title {
  font-size: 6rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(to top, #0077ff, #8800ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: absolute;
  margin-top: 100px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  animation: flicker 1.5s infinite alternate;
  top: 0%;      /* ajuste selon l'endroit où vous voulez positionner verticalement */
  left: 10%;     /* centre horizontalement */
  z-index: 1; /* Plus élevé que celui de l'image */
}

.gradient-title2 {
  font-size: 8rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(to top, #0077ff, #8800ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  animation: flicker 1.5s infinite alternate;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .gradient-title {
    font-size: 4rem;
    margin-top: 50px;
  }

  .gradient-title2 {
    font-size: 5.5rem;
  }
}

@media (max-width: 768px) {
  .gradient-title {
    font-size: 3rem;
    margin-top: 30px;
  }

  .gradient-title2 {
    font-size: 4rem;
  }
}

@media (max-width: 480px) {
  .gradient-title {
    font-size: 2.5rem;
    margin-top: 20px;
  }

  .gradient-title2 {
    font-size: 3rem;
  }
}
/* Animation de l'effet d'éclair */
@keyframes flicker {
  0% {
      text-shadow: 0 0 10px #ffffff, 0 0 20px #0077ff, 0 0 30px #8800ff;
  }
  50% {
      text-shadow: 0 0 15px #ffffff, 0 0 25px #0077ff, 0 0 35px #8800ff;
  }
  100% {
      text-shadow: 0 0 5px #ffffff, 0 0 15px #0077ff, 0 0 25px #8800ff;
  }
}

.shining-text {
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff, 0 0 50px #ff00ff, 0 0 60px #ff00ff;
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  0% {
      text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff, 0 0 50px #ff00ff, 0 0 60px #ff00ff;
  }
  100% {
      text-shadow: 0 0 10px #fff, 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff, 0 0 50px #ff00ff, 0 0 60px #ff00ff, 0 0 70px #ff00ff;
  }
}
.text-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
}

/* Texte à gauche */
.left-text {
  text-align: left;
}

/* Texte à droite */
.right-text {
  text-align: right;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: var(--main-txt-color);
  font-family: "BRHendrix_Bold";
}

html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  position: relative;
}
.background {
  display: block;
  z-index: 0;

  width: 100%;
}
.container {
  height: 100vh;
  width: 100vw;
}

.container img {
  width: 100%;
  position: absolute;
  top:-10vh;
  height: 130vh;
  z-index: -1;
}
.main-title {
  position: absolute;
  width: 50%;
  height: auto;
  object-fit: none;
  z-index: 0;
  transform: translate(0, -25%);
}

.title {
  width: 80vw;
  padding: 5vh;
  align-items: center;
}

.title p {
  color: var(--main-title-color);
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: var(--background-color);
  padding: 20px;
  text-align: center;


}

.content-divided {
  display: flex;
  flex: wrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.content-divided div {
  margin-bottom: 5vh;
  margin-left: 5vh;
  margin-right: 5vh;
}

.partner img {
  width: 10rem;
  margin-top: 2vh;
  margin-bottom: 2vh;
  transition: opacity 0.2s ease;
  filter: invert(1);
}

.partner img:hover {
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.text {
  font-size: 1.1rem;
  text-align: center;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.paddingbottom {
  margin-bottom: 2rem;
}

h3 {
  font-size: 3rem;
  color: var(--title-color);
  font-family: "AgencyFBBlack_Regular";
  text-align: center;
}

ul {
  text-align: left;
  padding: 0px;
}

.artist {
  display: flex;
  flex-direction: column;
  flex: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  width: 30vw;
  min-height: 60vh;
  padding: 5vh;
}

.artist p {
  color: var(--artist-color);
  margin-top: 2vh;
  margin-bottom: 2vh;
}

.artist img {
  height: 8rem;
  width: auto;
}

.neumorphism-box {
  background-color: var(--background-color);
  border-radius: 8px;
  -moz-box-shadow: -8px -8px 24px 0 #2a2a2a, 8px 8px 24px 0 #000000;
  -webkit-box-shadow: -8px -8px 24px 0 #2a2a2a, 8px 8px 24px 0 #000000;
  box-shadow: -8px -8px 24px 0 #2a2a2a, 8px 8px 24px 0 #000000;
}

ul {
  font-size: 1.1rem;
}

.spacer {
  aspect-ratio: 900/150;
  width: 200%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

}

.layer1 {
  width: 200%;
  height: auto; /* Vous pouvez définir une hauteur fixe si besoin */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(img/wavesbottom.svg);
}

.layer2 {
  width: 200%;
  height: auto; /* Vous pouvez définir une hauteur fixe si besoin */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(img/wavestop.svg);
}

.button {
  display: flex;
  text-align: center;
  align-items: center;
}
.button a {
  margin: 2.5vh;
  margin-bottom: 2vh;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--artist-color);
}

.ticket {
  min-width: 23vw;
  padding: 2vw;
  text-align: left;
}

.ticket p,.ticket h4,.ticket i {
  color: var(--artist-color);
}

.ticket h4 {
  font-size: 1.5rem;
}

.ticket p {
  padding-top: 1rem;
}
/* $$ RESPONSIVE */

/* adaptation aux différentes tailles d'écran */

@media screen and (orientation: portrait), screen and (max-width: 800px) {
.container {
  width: 100vw;
  display: inline-block; /* Pour que la largeur s'adapte au contenu */

}
.content-divided {
  flex-direction: column;
}

.artist {
  min-width: 90vw;
}
.ticket {
  min-width: 80vw;
  padding: 5vw;
}

.main-title {
  width: 95vw;
  height: auto;
  object-fit: contain;
}

.title {
  width: 100vw;
}

}

/* $$ FONTS */

/* importation des polices spéciales */

@font-face {
  font-family: "BRHendrix_Bold";
  src: url("fonts/BRHendrix_Bold.ttf") format("truetype");
}

@font-face {
  font-family: "AgencyFBBlack_Regular";
  src: url("fonts/AgencyFBBlack_Regular.otf") format("opentype");
}