@charset "UTF-8";
body {
  color: rgb(0, 0, 0);
  font-family: "PT Serif", serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: rgb(255, 255, 255);
}

html {
  scroll-behavior: smooth;
}

p {
  margin-top: 25.8px;
  margin-bottom: 25.8px;
  -webkit-animation: fadeInUp 1s ease-out forwards;
          animation: fadeInUp 1s ease-out forwards;
}

.title {
  color: #e41612;
}

.first_h1 {
  font-family: "Racing Sans One", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 75px;
  line-height: 1;
  color: white;
  margin-top: 100px;
}

.h1_part {
  font-family: "Racing Sans One", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 49px;
  line-height: 1;
  color: rgb(0, 0, 0);
}

h2 {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
  color: rgb(0, 0, 0);
  font-size: 25px;
}

.h2_index {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
  color: rgb(255, 255, 255);
  font-size: 25px;
}

.introtext {
  margin-top: 100px;
}

a, li, ul {
  list-style: none;
  text-decoration: none;
  color: white;
  padding: 0;
}

.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.number-partie {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Racing Sans One", sans-serif;
  font-weight: 400;
  font-size: 100px;
  color: rgb(255, 255, 255);
  pointer-events: none;
  z-index: 10;
  text-align: center;
}

@media (min-width: 800px) {
  .first_h1 {
    font-size: 87px;
  }

  h2 {
    font-size: 28px;
  }

  .h2_index {
    font-size: 28px;
    margin-top: 44px;
    margin-bottom: 44px;
  }

  * {
    cursor: none !important;
  }

  body {
    font-size: 18px;
    cursor: none;
  }

  .p_first {
    margin-top: 0px;
  }
}
@media (min-width: 1200px) {
  body {
    cursor: none;
    font-size: 20px;
  }

  .first_h1 {
    font-size: 103px;
  }

  h2 {
    font-size: 35px;
  }

  .h2_index {
    font-size: 35px;
    margin-top: 56px;
    margin-bottom: 56px;
  }
}
.body02 {
  margin: 0;
  height: 100%;
  background-image: url("../assets/images/fond-acceuil.jpg");
  background-size: cover;
  /* L'image couvre tout l'écran */
  background-repeat: no-repeat;
  /* Pas de répétition */
}

/* CODE PEN MODIF AVEC CHAT GPT */
.images-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.images-flex a {
  display: inline-block;
  -webkit-animation: flotter 3s ease-in-out infinite;
          animation: flotter 3s ease-in-out infinite;
  /* le lien flotte */
}

.images-flex img {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@-webkit-keyframes flotter {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes flotter {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* effet hover uniquement sur l’image */
.images-flex img:hover {
  filter: grayscale(0%);
  transform: scale(1.05) rotate(2deg);
  /* zoom/rotation */
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.musique-intro {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  color: #fff;
  flex-direction: column;
  z-index: 1000;
}

.start {
  width: 145px;
  height: 50px;
  border-radius: 30px;
  font-family: "Racing Sans One", sans-serif;
  font-weight: 400;
  font-size: 20px;
}

.start:hover {
  background-color: rgb(91, 166, 240);
  color: white;
  cursor: pointer;
  transition: background-color 0.4s ease, color 0.4s ease;
  transition: transform 0.3s ease;
  transform: scale(1.05);
}

.music-icon {
  position: absolute;
  /* ou relative selon le conteneur */
  width: 40px;
  height: auto;
  top: 20%;
  left: 58%;
  transform: translateX(-50%);
  -webkit-animation: flotter 3s ease-in-out infinite;
          animation: flotter 3s ease-in-out infinite;
}

@keyframes flotter {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
.music02-icon {
  position: absolute;
  /* ou relative selon le conteneur */
  width: 40px;
  height: auto;
  top: 67%;
  right: 58%;
  transform: translateX(-50%);
  -webkit-animation: flotter 3s ease-in-out infinite;
          animation: flotter 3s ease-in-out infinite;
}

.Cut-music {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background-color: transparent;
  /* on garde le bouton transparent */
  border: none;
  z-index: 100;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Cut-music img {
  width: 50%;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* zoom normal au hover */
.Cut-music:hover img {
  transform: scale(1.2);
}

.Cut-music.off::after {
  content: "";
  position: absolute;
  width: 70%;
  /* longueur de la barre */
  height: 4px;
  /* épaisseur */
  background: red;
  /* couleur de la barre */
  transform: rotate(-45deg);
  top: 50%;
  left: 15%;
}

@media (min-width: 800px) {
  .images-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    /* centre les images */
    flex-direction: row;
  }

  .images-flex img {
    max-width: 250px;
    /* prend presque toute la largeur */
  }
}
@media (min-width: 1200px) {
  .images-flex {
    flex-direction: row;
    /* les images sont alignées horizontalement */
    justify-content: space-around;
    /* espace entre les images */
  }

  .images-flex img {
    max-width: 300px;
    /* limite la taille */
    height: auto;
    border-radius: 8px;
  }
}
.ligne-fond {
  display: none;
}

.flotter {
  display: block;
  width: 100%;
  -webkit-animation: flotter 3s ease-in-out infinite;
          animation: flotter 3s ease-in-out infinite;
}

@keyframes flotter {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  /* monte un peu */
  100% {
    transform: translateY(0);
  }
  /* redescend */
}
.centerp {
  display: flex;
  align-items: center;
}

@media (min-width: 800px) {
  .ligne-fond {
    display: block;
  }

  svg {
    position: fixed;
    top: -50px;
    left: 0;
    height: 150px;
    width: 100%;
    overflow: visible;
    z-index: -1;
  }

  path {
    fill: none;
    stroke: rgb(91, 166, 240);
    /* couleur fixée ici */
    stroke-width: 8px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 2000;
    /* valeur par défaut */
    stroke-dashoffset: 2000;
    transition: stroke-dashoffset 0.2s linear;
    /* durée plus visible */
  }
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding-left: 30px;
  padding-right: 30px;
}

.grid > * {
  grid-column: 1/-1;
}

.tgrid1-3 {
  grid-column: 1/3;
}

.tgrid2-3 {
  grid-column: 2/3;
}

.tgrid1-4 {
  grid-column: 1/4;
}

.tgrid2-5 {
  grid-column: 2/5;
}

@media (min-width: 800px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    -moz-column-gap: 20px;
         column-gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .tagrid1-2 {
    grid-column: 1/2;
  }

  .tagrid1-3 {
    grid-column: 1/3;
  }

  .tagrid1-4 {
    grid-column: 1/4;
  }

  .tagrid2-3 {
    grid-column: 2/3;
  }

  .tagrid2-4 {
    grid-column: 2/4;
  }

  .tagrid2-5 {
    grid-column: 2/5;
  }

  .tagrid3-4 {
    grid-column: 3/4;
  }

  .tagrid3-5 {
    grid-column: 3/5;
  }

  .tagrid2-6 {
    grid-column: 2/6;
  }

  .tagrid3-6 {
    grid-column: 3/6;
  }

  .tagrid4-5 {
    grid-column: 4/5;
  }

  .tagrid4-6 {
    grid-column: 4/6;
  }
}
@media (min-width: 1200px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    -moz-column-gap: 20px;
         column-gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .dgrid1-4 {
    grid-column: 1/4;
  }

  .dgrid1-5 {
    grid-column: 1/5;
  }

  .dgrid3-6 {
    grid-column: 3/6;
  }

  .dgrid4-5 {
    grid-column: 4/5;
  }

  .dgrid4-7 {
    grid-column: 4/7;
  }

  .dgrid5-8 {
    grid-column: 5/8;
  }
}
.carrousel {
  width: 90%;
  /* prend 90% de l’écran */
  max-width: 1000px;
  margin: 60px auto;
  height: auto;
  overflow: hidden;
  position: relative;
}

.tapa {
  display: flex;
  transition: transform 0.6s ease;
}

.item {
  flex: 0 0 80%;
  max-width: 350px;
  height: 300px;
  margin: 20px 10px;
  background-color: #202225;
  border-radius: 10px;
  overflow: hidden;
  /* empêche l’image de dépasser */
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* image remplit la case */
  -o-object-position: center;
     object-position: center;
  /* centrée */
  display: block;
}

.item:hover {
  transform: translateY(-5px);
}

.cont {
  position: absolute;
  top: 50%;
  width: 90%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

.controls {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  transition: background-color 0.3s ease;
}

.controls:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* Responsivité */
@media (max-width: 768px) {
  .item {
    flex: 0 0 90%;
    /* un seul élément visible */
    height: 250px;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .item {
    flex: 0 0 45%;
    /* 2 éléments visibles */
  }

  .carrousel {
    display: none;
  }
}
.espace {
  margin-bottom: 100px;
}

.End {
  display: flex;
  justify-content: center;
  align-items: center;
}

img {
  max-width: 100%;
  height: auto;
}

.icones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.footer-section02 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

footer {
  margin-top: 50px;
}

/* IA */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

/* Quand visible */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.credit {
  display: flex;
  justify-content: center;
  text-align: center;
}

.images-accueil {
  position: relative;
}
.images-accueil img {
  transition: transform 0.3s ease;
  filter: blur(2px);
}
.images-accueil img:hover {
  transform: scale(1.05);
}

.flotting-text {
  -webkit-animation: flotting-text 3s ease-in-out infinite;
          animation: flotting-text 3s ease-in-out infinite;
}

@-webkit-keyframes flotting-text {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes flotting-text {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* NAVIGATION */
.nav-links {
  width: 100vw;
  left: 0;
  top: 24px;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 20px;
}
.nav-links li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #BBFF00;
  transition: width 0.3s ease;
}
.nav-links li a:hover::after {
  width: 100%;
}

.nav-links-index {
  width: 100vw;
  left: 0;
  top: 24px;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 20px;
}
.nav-links-index li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links-index li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #BBFF00;
  transition: width 0.3s ease;
}
.nav-links-index li a:hover::after {
  width: 100%;
}

.credit_nav {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  padding: 10px 18px;
  border-radius: 20px;
  transition: color 0.3s ease;
  color: black;
}

/* LIGNE SEPARATION */
.line {
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 20px;
  margin-bottom: 20px;
}

.line02 {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  margin-top: 20px;
  margin-bottom: 20px;
}

/*LIEN DE CHANGEMENT PAGE */
.links-center {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.links-center a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.links-center a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #BBFF00;
  transition: width 0.3s ease;
}

.links-center a:hover::after {
  width: 100%;
}

.links-center02 {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.links-center02 a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.links-center02 a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #BBFF00;
  transition: width 0.3s ease;
}

.links-center02 a:hover::after {
  width: 100%;
}

/* TRANSITION */
@-webkit-keyframes pageAnimationBloc2 {
  to {
    transform: skew(0deg) translateX(0);
  }
}
@keyframes pageAnimationBloc2 {
  to {
    transform: skew(0deg) translateX(0);
  }
}
.bloc2 {
  position: fixed;
  width: 160vw;
  height: 100vh;
  z-index: 9999;
  background-color: rgb(91, 166, 240);
  top: 0;
  left: -200px;
  transform: skew(0deg) translateX(-100%);
  pointer-events: none;
}

.pageAnimation .bloc2 {
  -webkit-animation: pageAnimationBloc2 0.6s ease forwards;
          animation: pageAnimationBloc2 0.6s ease forwards;
}

/* CHARGEMENT PAGE CHATGPT */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  /* <-- pour empiler verticalement */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  gap: 20px;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ffffff;
  border-top-color: #333;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
#loader p {
  color: white;
  font-family: sans-serif;
}

.img-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  /* pour que ça passe à la ligne sur mobile */
  margin-top: 40px;
}

.img-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  text-align: center;
}

.img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.social-icon {
  height: 30px;
}

.textcenter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

@media (min-width: 800px) {
  .links-center a {
    font-size: 18px;
  }

  .nav-links li a {
    font-size: 18px;
  }

  /* ACCUEIL */
  .img-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
  }

  .img-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 220px;
    text-align: center;
  }

  .img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }

  .img-wrapper img {
    width: 100%;
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .images-accueil img {
    transition: transform 0.3s ease;
    filter: blur(2px);
  }

  .images-accueil img:hover {
    transform: scale(1.05);
  }

  img.hommeD {
    transform: scaleX(-1);
  }

  .flecheD {
    margin: 0;
    padding: 0;
  }

  .section--conclusion {
    display: grid;
    grid-template-rows: 1fr auto;
    height: 100vh;
    padding: 2rem;
  }

  .lasttext {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .social-icon {
    height: 40px;
  }

  /* SOURIS CHATGPT */
  #round, #small_round {
    position: fixed;
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 1000;
  }

  #round {
    height: 17px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: white;
    transform: translate(-50%, -50%);
  }

  #small_round {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 1200px) {
  .img-wrapper img {
    width: 100%;
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .nav-links li a {
    font-size: 20px;
  }
}

/*# sourceMappingURL=app.css.map*/