@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
    font-family: "Heavitas";
    src: url("./asset/font/Heavitas.woff2") format("woff2");
    font-weight: 400 !important;
    font-style: normal;
    font-display: swap;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #fafafa;
}

/* Couleur */
.violet {
  background: #7a4f9a;
}
.colorviolet {
  color: #7a4f9a;
}
.rose {
  background: #e22369;
}
.rougepale {
  color: #cf8383;
}
.darkcolor {
  color: #282828;
}
.bg-basicTitle {
  background: #e9dde6;
}

/* Couleur */

/* Background */
.bgImageViolet {
  background-image: url('./asset/image/fondviolet.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
/* Background */

/* Barre de navigation */
.montserrat {
  font-family: "Montserrat", sans-serif;
}
.poppins {
  font-family: "Poppins", sans-serif;
}
.heavy {
  font-family: "Heavitas";
}
.baloo {
  font-family: "Baloo 2", sans-serif;
}
.degrade {
  background: linear-gradient(45deg, #3b105b 70%, #b243439e);
}
.degradesecond {
  background: linear-gradient(45deg, #7a4f9a 58%, #b24343);
}
.degradeWhite {
  background: linear-gradient(
    to right,
    rgba(201, 164, 245, 0.6),
    rgba(247, 180, 214, 0.6)
  );
}
.degradeDoux {
  background: linear-gradient(45deg, #3b105b5a 70%, #b2434362);
}
/* Barre de navigation */

/* Carte */

.card {
  background-image: url("./asset/image/fondCard.webp");
}
/* Catégorie question */
.containerOfAskQuestion {
  background-image: url("./asset/image/fondviolet.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
/* Catégorie question */

/* Les hover */

/* Information festival */

.hovercard {
  perspective: 1000px;
}
.hovercard {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.hovercard:hover {
  transform: rotateY(12deg) rotateX(8deg) scale(1.02);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
}
.aboutInformationFestival {
  transition: all 0.5s ease-in-out;
}
.aboutInformationFestival:hover {
  width: 350px !important;
}
/* Information festival */

/* index.html */
.billeterieBtn {
  transition: all 0.3s ease-in-out;
}
.billeterieBtn:hover {
  transform: scale(1.04);
}
.artisteDate {
  transition: all 0.3s ease-in-out;
}
.artisteDate:hover {
  box-shadow: 0px 0px 10px #7a4f9a;
}
.card {
  transition: 0.4s ease-in-out;
}
.card:hover {
  transform: scale(1.02);
  box-shadow: 4px 4px 12px #b24343;
}
/* index.html */

/* Les hover */
