
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
  min-height: 100vh;
}

header *{
  background-color: black !important;

}
/*--------------chargement----------------*/
body.loading {
  overflow: hidden;
}
.loader{
  z-index: 100;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Lloader{
  color: white;
  font-size: 7vw;
  letter-spacing: 15px;
  margin-bottom: 150px;
  animation: flash 1.2s linear infinite;
}
@keyframes flash{
  0%{
    color: #f7e6e6;
    text-shadow: 0 0 7px f7e6e6;
  }
  90%{
    color: #484848;
    text-shadow: none;
  }
  100%{
    color: #f7e6e6;
    text-shadow: 0 0 7px f7e6e6;
  }
}
.fondu-out{
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
.Lloader:nth-child(1){
  animation-delay: 0.1s;
}
.Lloader:nth-child(2){
  animation-delay: 0.2s;
}
.Lloader:nth-child(3){
  animation-delay: 0.3s;
}
.Lloader:nth-child(4){
  animation-delay: 0.4s;
}
.Lloader:nth-child(5){
  animation-delay: 0.5s;
}
.Lloader:nth-child(6){
  animation-delay: 0.6s;
}
.Lloader:nth-child(7){
  animation-delay: 0.7s;
}
.Lloader:nth-child(8){
  animation-delay: 0.8s;
}
.Lloader:nth-child(9){
  animation-delay: 0.9s;
}
.Lloader:nth-child(10){
  animation-delay: 1s;
}

/*-----------------------------------------------------*/


/*header*/
.page-on{
  text-decoration: underline;
}
header *{
  text-align: center !important;
}
  h1{
  font-family: 'Crimson Pro', serif;
  
}
.moi{
  align-items: center !important;
}
.index-nom {
  width: 98vw;
  font-size: 10vw;
  position: absolute;
  top: 50%; /* Modification pour centrer verticalement */
  left: 50%; /* Modification pour centrer horizontalement */
  transform: translate(-50%, -50%); /* Ajustement pour le centrage absolu */
  font-family: 'Dancing Script', cursive;
  opacity: 1;
  animation: disappear 1.3s forwards 5s, reappear 1.3s forwards 50s;
  background-color: transparent !important;
  
}


.container-video video {
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: contain;  
}

.container-video {
  position: relative; /* Modification pour position relative */
  height: auto;
  width: 100%;
  max-height: 100vh;
  overflow: hidden;
}
/* description photo */
.description{
  font-size: 1.3em;
  text-align: left;
}

/* Styles pour le séparateur */
@keyframes candleGlow {
  0% {
    box-shadow: 0 2px 2px #fff;
  }
  50% {
    box-shadow: 0 4px 4px #fff;
  }
  100% {
    box-shadow: 0 2px 2px #fff;
  }
}

.wavy{
  -webkit-box-reflect: below -8px linear-gradient(transparent, rgba(0,0,0,0.2));
  min-width: 300px;
}
.wavy span{
  display: inline-block;
  animation: wave 1s ease-in-out infinite;
  animation-delay: calc(0.1s * var(--i));
  font-size:xx-large;
  font-family: 'Crimson Pro', serif;

}
@keyframes wave {
  0%{
    transform: translateY(0px);
  }
  20%{
    transform: translateY(-10px);
  }
  40%,100%{
    transform: translateY(0px);
  }
}

.separator {
  height: 2px; /* Hauteur de la ligne */
  background-color: #fff; /* Couleur de la ligne */
  margin: 20px 0; /* Marge autour du séparateur (ajustez selon vos besoins) */
  width: 100vw;
  box-shadow: 0 0px 0px #fff;
  animation: candleGlow 2s infinite;
  gap: 15px;
}
.separateur{
  margin-top: 70px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}


main{
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-bottom: 9em;
}

body {
  min-height: 100vh; /* Utilisation de 100vh pour assurer que la hauteur minimale est égale à la hauteur de l'écran */
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Permet à la partie principale de s'étendre pour remplir l'espace disponible */

}

body.fond-noir {
    background-color: black;
    color: white !important; /* !important pour s'assurer que la couleur du texte prend le dessus */
}


.texte-blanc {
    color: white !important;
}
.navbar-brand img {
    filter: brightness(0) invert(1) !important; /* Inversion des couleurs du logo */
}

.imagep{
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8) !important;
}
span.navbar-toggler-icon{
    color: white;
}

.imgportfolio{
    max-width: 50vh;
}
/*------------ Stage biscuit -------------*/
.stage{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}
.stage > *{
  width:calc(20% - 2px) !important;

}

/*-------------galerie---------------*/
*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  /*filtre de photo*/
.gallery .active{
  display: block;
  opacity: 1;
}

.inactive{
  display: none !important;
  opacity: 0; /* Réglez l'opacité à 0 pour les éléments inactifs */
  display: none !important; /* les éléments inactifs ne prennent pas d'espace */
  pointer-events: none; /* les éléments inactifs ne sont pas cliquables */
}

  
  .galery {

    max-width: 1100px;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2vmin;
    padding: 0 14px;
  }
  .galery::after {
    content:'';
    display:block;
    flex-grow: 10;
  }
  .galery li {
    overflow: hidden;
    list-style-type: none;
    height: 250px;
    flex-grow: 1;
    transition: opacity 0.5s ease-in-out;
  }
  .galery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .lb-nav{
    background-color: transparent !important;
  } 
  .lb-nav a{
    background-color: transparent !important;
  }
  /* ------ effet de survol sur les images --------------*/

  .galery li {
    transition: transform 0.3s, box-shadow 0.3s; /* Ajoute une transition à la transformation et à l'ombre */
    border-radius: 3px;
  }
  
  /* Effet de survol */
  .galery li:hover {
    transform: scale(1.03);  /* Agrandissement de 10% */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8); /* Ombre blanche */
    border-radius: 8px;
  }

/* vidéo */
.galerie-video{
  max-width: 1100px;
  margin: 100px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2vmin;
  padding: 0 14px;
  justify-content: center;
}

.galerie-video iframe{
  max-width: 340px;
  width: 100vw;
  height: 205px;
}

/*bouton tri de la galerie*/
bouton-container{
  display: flex;
  flex-wrap: wrap;
}

.bouton-container button {
  background-color: transparent;
  border: 3px solid #ffffff !important;
  margin: 20px;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.bouton-container button::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #ffffff;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.bouton-container button:hover::after {
  width: 75%;
}
.bouton-container button.on::after {
  width: 75%;
}

p{
  margin: 0;
}

/* contact */
.form-contact div{
  text-align:left !important;
  margin: 2em;
}
.form-contact button {
  background-color: rgba(0, 0, 0, 1);
  border-color: #fff;
  width: 120px;
  height: 50px;
  transition: background-color 0.2s ease-in-out, width 0.2s ease-in-out, height 0.2s ease-in-out; /* Applique la transition à la propriété background-color et width */
}

.form-contact button:hover {
  width: 130px;
  height: 60px;
  background-color: rgba(39, 39, 39, 0.7); /* Utilisez RGBA avec un alpha réduit pour le fondu */
  border-color: #fff;
  text-decoration: underline;
}

footer div{
  justify-content: center;
}

footer {
  background-color: rgb(22, 19, 19);
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer div {
  flex: 1;
  justify-content: center;
  text-align: center;
}

footer a{
  color: white;
  font-size: large;
}
footer ul{
  list-style: none;
  justify-content: center;
}
footer img{
  width: 80px;
  justify-content: space-around;
}