/* ------ CONTENEUR DE LA SECTION ACCUEIL ------ */
/*--------------------------------------------------------------------------------- VIOLET -------------------------------------------------------------------------------*/
@keyframes shine {
  0% {
    text-shadow: 0 0 5px #8000ff, 0 0 10px #8000ff;
  }
  50% {
    text-shadow: 0 0 20px #8000ff, 0 0 30px #8000ff, 0 0 40px #8000ff;
  }
  100% {
    text-shadow: 0 0 5px #8000ff, 0 0 10px #8000ff;
  }
}

h1 {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  animation: shine 1.5s infinite alternate;
}

.accueil-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1600px;
    margin: auto;
    padding: 20px;
}


/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------- BLEU ELECTRIQUE -------------------------------------------------------------------------------
@keyframes shine {
  0% {
    text-shadow: 0 0 5px #00c2ff, 0 0 10px #00c2ff;
  }
  50% {
    text-shadow: 0 0 20px #00c2ff, 0 0 30px #00c2ff, 0 0 40px #00c2ff;
  }
  100% {
    text-shadow: 0 0 5px #00c2ff, 0 0 10px #00c2ff;
  }
}

h1 {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  animation: shine 1.5s infinite alternate;
}
------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------- JAUNE VIF -------------------------------------------------------------------------------
@keyframes shine {
  0% {
    text-shadow: 0 0 5px #ffff00, 0 0 10px #ffff00;
  }
  50% {
    text-shadow: 0 0 20px #ffff00, 0 0 30px #ffff00, 0 0 40px #ffff00;
  }
  100% {
    text-shadow: 0 0 5px #ffff00, 0 0 10px #ffff00;
  }
}

h1 {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  animation: shine 1.5s infinite alternate;
}
------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------- VERT NEON -------------------------------------------------------------------------------
@keyframes shine {
  0% {
    text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14;
  }
  50% {
    text-shadow: 0 0 20px #39ff14, 0 0 30px #39ff14, 0 0 40px #39ff14;
  }
  100% {
    text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14;
  }
}

h1 {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  animation: shine 1.5s infinite alternate;
}
------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* Zone texte à gauche */
.accueil-text {
    flex: 2;
    padding: 20px;
    color: blue;
    font-size: 1.2em;
    line-height: 1.6;
}

/* Zone images à droite */
.image-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    width: 33%; /* Ajustement pour occuper exactement un tiers de l'écran */
}

/* Style des images */
.image-column img {
    width: 100%; /* Les images occupent toute la largeur de leur conteneur */
    max-width: 500px; /* Augmente la taille maximale pour qu'elles soient plus grandes */
    height: auto;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); /* Effet 3D */
    transition: transform 0.3s ease-in-out;
}

.image-column img:hover {
    transform: scale(1.05);
}
/* ------ RESPONSIVE DESIGN ------ */
@media screen and (max-width: 1024px) {
    .accueil-container {
        flex-direction: column;
        align-items: center;
    }

    .accueil-text {
        width: 90%;
        text-align: center;
    }

    .image-column {
        width: 90%;
    }

    .image-column img {
        max-width: 90%; /* Agrandit les images sur tablette */
    }
}

@media screen and (max-width: 768px) {
    .image-column {
        width: 100%;
    }

    .image-column img {
        max-width: 100%; /* Sur mobile, les images prennent toute la largeur */
    }
}
