body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    background-color: black;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1,
h2,
h3,
h4 {
    font-family: "Poppins", sans-serif;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 40px;
    color: #cc9900
}

h4 {
    font-size: 30px;
    color: #cc9900
}



header {
    position: static;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all 0.4s;
}

header h1 {
    margin: 0;
    font-size: 80px;
}

img  {
    max-width: 100%;
}


header nav ul {
    display: flex;

}

header nav li {
    padding: 30px;
    list-style: none;
    font-size: 25px;
    font-family: 'Rozha One', serif;
    border-top: 4px solid transparent;
    transition: 0.4s;
}

header nav li:hover {
    border-top: 4px solid #fff;
}

header nav a {
    color: #fff;
}

header #reseaux-sociaux {
    display: flex;
    width: 5%;
}

header #reseaux-sociaux li {
    padding: 10px;
    list-style: none;
}

header.scrolled {
    background-color: #000;
    color: #fff
}

#banniere {
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh; 
    overflow: hidden; 
}

.back-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: -1;
    filter:brightness(50%)
}

#banniere #presentation {
    position: relative;
    left: 0;
    right: 0;
    top: 0; 
    bottom: 0; 
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 0; 
}

#banniere #presentation h2 {
    font-family: "Poppins", sans-serif;
    width: 60%;
    text-align: center;
    font-size: 110px;
    color: #fff;
    margin: 0; 
    padding: 0;
}

#banniere #presentation ul {
    display: flex;
}

#banniere #presentation li {
    margin: 15px;
    padding: 15px 45px;
    width: 250px;
    text-align: center;
    list-style: none;
    text-transform: uppercase;
    font-size: 25px;
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.4s;
}

#banniere #presentation li a {
    text-decoration: none;
    color: #fff;

}

#banniere #presentation li:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

#banniere #presentation li:hover a {
    color: #000
}

#event text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#event img {
    width: 100%;
}

#event ul {
    background-color: #000;
    background-size: cover;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

#event h2 {
    font-family: "Poppins", sans-serif;
    color:white;
}


#image {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
}

#image img {
    width: 270px; 
    height: 905px;
    object-fit: cover; 
    margin: 20px; 
    
}


.image-container {
    position: relative;
    width: 400px;
    height: 905px;
    margin: 20px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    color: rgb(255, 255, 255);
    display: flex; 
    justify-content: center; 
    align-items: center; 
    font-size: 24px;
    opacity: 1; /* Afficher le texte en permanence */
    transition: opacity 0.5s ease;
    text-align: center;
}

.image-container:hover .overlay {
    opacity: 1; /* Assurer que l'opacité reste à 1 sur le hover */
}

.image-container:hover img {
    transform: scale(1.1);
    filter: brightness(50%);
}

#talent text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#talent img {
    width: 100%;
}

#talent ul {
    background-color: #000;
    background-size: cover;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}


#talent h2 {
    font-family: "Poppins", sans-serif;
    color:white;
}

#imgevent {
    display: flex;
    justify-content: center; /* Centre le groupe d'images */
    align-items: center; /* Aligne verticalement les images si nécessaire */
    margin: 0 auto; /* Centrer le conteneur si nécessaire */
    flex-wrap: wrap; /* Permet aux images de passer à la ligne suivante si elles débordent */
}

#imgevent img {
    width: 30%; /* Définit la largeur de chaque image en pourcentage */
    height: 700px; /* Définir une hauteur fixe pour les images */
    object-fit: cover; /* Remplit le conteneur tout en conservant les proportions */
    margin: 10px; /* Ajoute un espace autour des images */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Ajoute une transition douce */
}

#imgevent img:hover {
    transform: scale(1.1); /* Agrandit l'image de 10% */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* Ajoute une ombre pour un effet de "ressort" */
}
#grandiose text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#grandiose img {
    width: 100%;
}

#grandiose ul {
    background-color: #000;
    background-size: cover;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}


#grandiose h2 {
    font-family: "Poppins", sans-serif;
    color:white;
}

footer {
    display: flex;
    justify-content: center;
    background-color: #000;
    color: #ffffff;
    border-top: 2px solid #fff; /* Ajoute une ligne blanche en haut du footer */
}

footer > div {
    width: 33%;
    padding: 30px;
    text-align: center;
    color: #ffffff;
}

footer div h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

footer div {
    width: 33%;
    padding: 30px;
    text-align: center;
}

footer div a {
    display: block; /* Force les liens à occuper toute la largeur et à se placer sur une nouvelle ligne */
    margin: 10px 0; /* Ajoute un espace vertical entre les liens */
    color: #ffffff; /* Assurez-vous que les liens sont visibles sur le fond noir */
    font-size: 18px; /* Ajustez la taille de la police si nécessaire */
    text-decoration: none; /* Enlever la décoration des liens */
}

footer div a:hover {
    text-decoration: underline; /* Ajouter un soulignement au survol pour une meilleure accessibilité */
}

h3 {
    color: #ffffff;
}

#important {
    color: #cc9900 !important;
}

#join-us {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

#join-us a {
    padding: 15px 30px;
    font-size: 25px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#join-us a:hover {
    background-color: #fff;
    color: #000;
}


.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    background-color: black;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.carousel-prev,
.carousel-next {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 30px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}