*{
  margin: 0;
  padding: 0;
}


body{
  font-family:"Jost", sans-serif;
  font-weight: 500;
}

h1,h2,h3,h4,h5{
  font-family: "Gloock";
}

/*** Loader ***/

/* Loader plein écran */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Logo animé */
.logo_loader {
  width: 100px;
  height: auto;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

/****** Full page slider ******/

.section-slider {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  font-family: sans-serif;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slider-item {
  min-width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: calc(100% - 45px);
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  pointer-events: none;
}

.slider-btn {
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  pointer-events: all;
  font-size: 0;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.slider-caption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  max-width: 30vw;
  color: white;
  padding: 10px;
  font-size: 1rem;
  line-height: 1.4;
  border-radius: 8px;
}

.slider-caption h1{
  font-family:'Jost';
  font-weight:normal;
  font-size:22px;
}

.slider-caption h2{
  font-family:'Jost';
  font-weight:normal;
  font-size:22px;
}

.slider-caption a{
  color:white;
}

.slider-caption p{
  color:white;
  font-family:'Jost';
  font-weight:normal;
}

/***** Menu ******/

nav{
  width: 100%;
  height: 300px;
  background-attachment: fixed;
}

.menu_index_slider{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 45;
}

#navbar{
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  background-attachment: inherit;
  z-index: 15;
}

.menu{
  display: flex;
  justify-content: space-between;
}

.logo{
  padding: 20px;
  height: fit-content;
  z-index: 20;
}

.logo a{
  Font-family:Gloock;
  text-decoration:none;
  color:white;
  font-size:32px;
  margin-left:40px;
}

/*** menu burger ***/

.icon_burger{
  display: none;
}

.icon_burger .img_icon_burger{
  margin: 5px 0;
  width: 30px;
  height: 3px;
  border-radius: 5px;
  background-color: #FFFFFF;
}

.lien_menu{
  display: flex;
  justify-content: space-between;
  padding: 30px;
  height: fit-content;
}

.lien_menu a{
  display: block;
  padding: 0 15px;
  font-family: Jost;
  font-weight:400;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  color: white;
}

.icone_rs{
  width: 18px;
  padding: 2px 0 0 0;
}

/********** About *********/

.titre_about{
  text-align: center;
  margin-top: 20px 0;
}

.titre_about h1{
  margin-top:30px;
  font-family: "Jost";
  font-weight:400;
  font-size: 16px;
  color:gray;
}

.titre_about h2{
  font-size: 36px;
}

.wrapper_moi{
  display: flex;
  justify-content: center;
}

.photo_moi{
  margin: 25px;
}

.photo_moi img{
  display: block;
  width: 450px;
  margin: 20px auto 0 auto;
  border-radius: 2px;
}

.texte_moi{
  text-align:justify;
  margin: 15px 0;
  width: 30%;
}

.texte_moi p{
  font-family:Jost;
  margin: 20px 0;
  line-height:25px;
}

.texte_moi2{
  margin: 55px 0;
  width: 30%;
  text-align:right;
}

.texte_moi2 p{
  font-family:Jost;
  margin: 10px 0;
  line-height:25px;
}

.texte_moi2 h2{
  font-size:18px;
  margin-bottom:0px;
}

.photo_moi2 img{
  display: block;
  width: 490px;
  margin: 60px 30px;
  border-radius: 2px;
}

.contact_moi{
  text-decoration:underline;
  font-family:Gloock;
  font-size:23px;
  color:black;
}

.wrapper_feed{
  margin: 65px auto -10px auto;
}

/***** Testimonials *****/

#avis-clients {
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.avis-clients-text{
  text-align: center;
  margin: 50px 15%;
}

.avis-clients-text p{
  margin: 25px 50px;
  text-align: center;
}

.avis-wrapper {
  width: 100%;
  max-width: 80%;
  overflow: hidden;
}

.avis-track {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.avis-track:active{
  cursor: grabbing;
}

.avis-track::-webkit-scrollbar {
  display: none;
}

.avis-card {
  scroll-snap-align: start;
  background: white;
  border: 1px solid rgb(225 225 225);
  border-radius: 10px;
  padding: 1rem;
  margin: 0.5rem;
  width: calc(100% / 4 - 1rem);
  box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.1);
  text-align: center;
  flex-shrink: 0;
}

.avis-card img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

/* Pagination */

.avis-pagination {
  text-align: center;
  margin-top: 10px;
}
.avis-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}
.avis-dot.active {
  background-color: #007bff;
}

/****** Galerie *******/

.padding_one_ligne{
  padding-top: 25px;
}

.vitrine{
  display: flex;
  justify-content: center;
  margin: 20px 0 75px 0;
}

.vitrine .colonne{
  display: flex;
  flex-direction: column;
}

.wrapper{
  position: relative;
  margin: 15px;
}

.wrapper img{
  width: 100%;
  height: 100%;
}

.wrapper a{
  display: block;
  height: 100%;
}

.bloc_titre{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
}

.center_mid{
  width: 230px;
  height: 135px;
  position: absolute;
  left: calc(50% - 115px);
  top: calc(50% - 52.5px);
}

.bloc_titre:hover{
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s 100s, opacity 0.3s;
}

.bloc_titre:hover h3{
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s 100s, opacity 0.3s;
}

.bloc_titre h3{
  font-family:Bodoni Moda;
  text-align: center;
  font-size: 34px;
  font-weight:500;
  color: white;
}

/********** Galerie individuelle**********/

.titre_galerie{
  text-align: center;
  margin: 20px 0;
}

.titre_galerie h1{
  margin-top:30px;
  font-family: "Jost";
  font-weight:400;
  font-size: 16px;
  color:gray;
}

.titre_galerie h2{
  font-size: 36px;
}

.wrapper_galerie{
  display: flex;
  justify-content: center;
  margin: 0 0 80px 0;
  width: 100%;
}

.galerie{
  display: flex;
  flex-direction: column;

}
.galerie .colonne{
  display: flex;
  flex-direction: column;
}

.galerie .photo-galerie{
  padding: 5px;
}

/**** Texte galerie ****/

.bloc_info{
  display: flex;
  justify-content: center;
  margin: 15px 0;
}

.separateur_bloc_text{
  width: 2px;
  height: 25px;
  background-color: #ababab;
  margin: 10px 40px;
  border-radius: 2px;
}

.bloc_texte_info p{
  color: #555555;
}

.texte_info{
  margin: 50px 25%;
  text-align: center;
}

.bloc_texte_info a{
  text-decoration:none;
  color:#555555;
}

.bloc_texte_info a:hover{
  text-decoration:underline;
}

.special_cinabre a:hover{
  color:red;
  text-decoration:underline;
}

.special_finalgirl a:hover{
  color:#f6b3e9;
  text-decoration:underline;
}

.bloc_texte_info p span{
  font-weight: 600;
  font-size: 17px;
  color: #000;
}

/********** Lien galerie bas de page *************/

.lien_galerie_haut{
  margin: 0 45px 30px 45px;
}

.lien_galerie_bas{
  margin: 0 20% 50px 20%;
}

.lien_galerie_bas img{
  width:18px;
}

.wrapper_lien_bas, .wrapper_lien_haut{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: black;
}

.wrapper_lien_bas a, .wrapper_lien_haut a{
  display: block;
  font-family:Gloock;
  font-size:24px;
  padding: 0 35px;
  text-decoration: none;
  color:black;
  text-align: center;
}

.btn_tarifs_bis{
  display: block;
  width: 160px;
  padding: 8px 12px!important;
  background-color: #222222;
  color: white!important;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
}

.btn_tarifs_bis:hover{
  background-color: #ababab;
}

/********** Tarifs ************/

.tarifs_intro{
  width: 80%;
  margin: 80px auto;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
}

.tarifs_colonnes{
  display: flex;
  justify-content: center;
  margin: 50px;
}

.tarifs_card{
  width: 23%;
  margin: 0 25px;
  text-align: center;
  box-shadow: 0px 1px 16px 0px #e2e2e2;
  border-radius: 5px;
}

.tarifs img{
  width: 100%;
}

.tarifs_card h2{
  margin: 40px 0;
}

.tarifs_card h3{
  margin: 25px 0;
  font-size:24px;
}

.tarifs_card h4{
  font-size: 40px;
}

.tarifs_card p{
  margin: 20px 0;
  padding: 0 35px;
}

.btn_tarifs{
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.btn_tarifs a{
  display: block;
  width: 160px;
  padding: 15px!important;
  background-color: #222222;
  color: white!important;
  text-decoration: none;
  border-radius: 5px;
}

.tarifs_portrait_mini .btn_tarifs {
  margin-top: 25px;
}

.tarifs_contact{
  width: 80%;
  margin: 60px auto 80px auto;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
}

.tarifs_contact h1{
  font-size: 36px;
}

.tarifs_contact h2{
  margin-top: 25px;
  font-size: 40px;
  color:black;
  text-decoration:underline;
}

/*************** Footer ***************/

footer{
  display: flex;
  justify-content: center;
  background-color: rgba(28,28,28,1);
}

.credits p{
  font-family: Jost;
  color: white;
  font-size: 14px;
  text-align: center;
  padding-top: 18px;
}

.credits div {
  display : flex;
  justify-content: center;
  text-align: center;
  padding: 15px 0;
  text-decoration: none;
  color: white;
}

.credits div a{
  padding:0 8px;
}

.mentions{
  color: white;
  text-decoration: none;
}

.mentions:hover{
  text-decoration: underline;
}


/************** 404 Error *******************/

.wrapper404{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 150px 25%;
}

.wrapper404 h1{
  font-size: 70px;
  margin: 25px 0;
}


/************* MEDIA QUERIES ***************/

@media (max-width: 1400px) {

  /*** text info ***/

  .texte_info{
    margin: 0 20%;
  }

  /*** tarifs ***/

  .tarifs_card{
    width: 35%;
    margin: 0;
  }

  .card_margin_top{
    margin-top: 40px;
  }

}


@media (max-width: 1100px) {

  /**** About ****/

  .wrapper_moi {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .texte_moi {
    margin: 0 10% 55px 10%;
    width: auto;
    text-align: center;
  }

  .texte_moi2{
    margin: 50px 10% 55px 10%;
    width: auto;
    text-align: center;
    order: 2;
  }

  .photo_moi2 img{
    width: 450px;
    margin: 60px auto 0 auto;
    border-radius: 2px;
  }

  /***** Vitrine ******/

  .vitrine{
    margin: 100px 55px;
  }

  .tarifs_card{
    width: 33%;
    margin: 0;
  }

  .wrapper_lien_bas{
    justify-content: space-around;
    margin: 0 0 50px 0;
  }

  /*** text info ***/

  .texte_info{
    margin: 0 20%;
  }

  /*** tarifs ***/

  .tarifs_card{
    width: 44%;
    margin: 0 25px;
  }

  .card_margin_top{
    margin-top: 40px;
  }

}

@media (max-width: 976px) {

  /*** nav ***/

  .logo a{
    margin-left: 0;
  }

  .icon_burger{
    display: block;
    margin: 20px;
    z-index: 20;
    position: absolute;
    top: 0;
    right: 0;
  }

  .lien_menu{
    display: none;
    background-color: rgba(5, 5, 5, 0.95);
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 15;
    padding: 20% 0;
  }

  .lien_menu a{
    padding: 20px 15px;
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
  }

  .underline_responsive{
    display: none;
  }

  .underline_responsive::after{
    display: none;
  }

  .menu{
    height: 170px;
  }

  /*** text info ***/

  .bloc_info{
    margin: 55px 40px;
  }

  .separateur_bloc_text{
    margin: 20px 40px;
  }

  .texte_info{
    margin: 0 10%;
  }

  /*** Galerie ***/

  .vitrine{
    margin: 95px 35px;
  }

  .wrapper_galerie{
    flex-wrap: nowrap;
    margin: 50px 25px;
    width: 100vw;
  }

  .galerie .colonne{
    margin: 25px 5px;
  }

  .photo-galerie{
    display: block;
    margin: 0 auto;
    width: 100%;
  }

  .wrapper_me{
    display: flex;
    flex-wrap: wrap;
    width: auto;
  }

  .me_img{
    width: 100%;
  }

  .me_text{
    width: 100%;
  }

  /*** about ***/

  .wrapper_moi{
    flex-direction: column;
    align-items: center;
  }

  .photo_moi{
    width: auto;
    margin: 0;
  }

  .photo_moi2{
    width: auto;
    margin: 0;
  }

  .texte_moi{
    width: 80%;
    text-align: justify;
    order: 1;
  }

  .texte_moi2{
    width: 80%;
    text-align: justify;
    order: 1;
  }

  .contact_moi{
    display: block;
    width: 100%;
    text-align: center;
  }

  /*** testimonials ***/

  .avis-card {
    width: calc(100% / 2 - 1rem);
  }

  /*** tarifs ***/

  .tarifs_colonnes_responsive{
    flex-wrap: wrap;
    margin: 50px 50px 0 50px;
  }

  .tarifs_colonnes_responsive_deux{
    margin: 0 50px 50px 50px;
  }

  .tarifs_portrait{
    margin: 50px 50px 0 50px;
  }

  .tarifs_card{
    width: 44%;
    margin: 0;
  }

  .card_margin_top{
    margin-top: 40px;
  }

}

@media (max-width: 768px) {

  /*** index ***/

  .slider-caption {
    max-width: 40vw;
    font-size: 0.9rem;
  }

  /*** index 2 ***/

  .carousel{
    height: auto;
  }

  .text_slider{
    right: 5%;
    width: 40%;
  }

  .text_slider p{
    font-size: 12px;
  }

  .right-arrow, .left-arrow{
    right: -40px;
  }

  /*** galerie ***/

  .vitrine{
    display: block;
    margin: 50px 25px;
  }

  .vitrine .colonne{
    flex-direction: row;
  }

  .wrapper_galerie{
    flex-wrap: nowrap;
    margin: 50px 25px;
    width: 100vw;
  }

  .galerie .colonne{
    margin: 25px 5px;
  }

  .photo-galerie{
    display: block;
    margin: 0 auto;
    width: 100%;
  }

  .bloc_titre{
    height: 99%;
  }

  .galerie .photo-galerie {
    padding: 5px 0;
  }

  .galerie .photo-galerie img{
    width: 99%;
  }

  .wrapper_lien_bas a{
    font-size: 18px;
    padding: 0;
  }

  .btn_tarifs_bis{
    width: 80px;
  }

  .lien_galerie_bas{
    margin: 0;
  }

  /*** text info ***/

  .bloc_info{
    margin: 55px 40px;
  }

  .separateur_bloc_text{
    margin: 20px 40px;
  }

  .texte_info{
    margin: 0 10%;
  }

  /*** about ***/

  .wrapper_moi{
    flex-wrap: wrap;
    flex-direction: row;
    margin: 35px 0;
  }

  .photo_moi{
    margin: 0;
    padding: 0 25px;
    width: 100%;
  }

  .photo_moi2{
    margin: 0;
    padding: 0 25px;
    width: 100%;
  }

  .texte_moi{
    margin: 0;
    padding: 0 35px;
    width: auto;
  }

  .texte_moi2{
    margin: 25px 0;
    padding: 0 35px;
    width: auto;
    order: 1;
  }

  .contact_moi{
    display: block;
    text-align: center;
  }

  /*** testimonials ***/

  .avis-card {
    width: 100%;
  }

  /*** tarifs ***/

  .tarifs_colonnes{
    flex-wrap: wrap;
  }

  .tarifs_card{
    width: 100%;
  }

  .tarifs_portrait{
    margin: 50px 0 0 0;
  }

}

@media (max-width: 480px) {

  .slider-caption {
    max-width: 60vw;
    font-size: 0.8rem;
  }

  .vitrine{
    margin: 25px 0;
  }

  .vitrine .colonne{
    flex-direction: column;
  }

  .wrapper_galerie{
    margin: -20px 0 50px 0;
  }

  .bloc_titre{
    height: 98.5%;
  }

  .photo_moi img{
    width: 100%;
  }

  .photo_moi2 img{
    width: 100%;
  }

  .tarifs_contact h2{
    font-size: 25px;
  }

  .separateur_bloc_text{
    width: 2px;
    height: 25px;
    background-color: #ababab;
    margin: 10px 20px;
    border-radius: 2px;
  }

  .wrapper_lien_haut a {
    font-size: 20px;
  }

  .wrapper_lien_bas a {
    font-family: Gloock;
    font-size: 18px;
    padding: 0;
    text-decoration: none;
    color: black;
  }

  .tarifs_colonnes{
    margin-top:25px;
    margin-bottom:0px;
  }

/*** Fond menu mobile***/

/*** Pages simples***/
.base_tiny{
  height: 170px;
  background-image: url("./img/nav/responsive/nav_base_tiny.jpg")!important;
}

  .about_tiny{
    height: 170px;
    background-image: url("./img/nav/responsive/nav_about_tiny.jpg")!important;
  }

  .tarifs_tiny{
    height: 170px;
    background-image: url("./img/nav/responsive/nav_tarifs_tiny.jpg")!important;
  }

    /*** exterieurs***/
  .exterieur_tiny{
    height: 170px;
    background-image: url("./img/nav/responsive/nav_exterieur_tiny.jpg")!important;
  }

  .guerrieres_tiny{
    height: 170px;
    background-image: url("./img/nav/responsive/nav_guerrieres_tiny.jpg")!important;
  }

  .audrey_tiny{
      height: 170px;
      background-image: url("./img/nav/responsive/nav_audrey_tiny.jpg")!important;
  }

  .margot_tiny{
    height: 170px;
    background-image: url("./img/nav/responsive/nav_margot_tiny.jpg")!important;
  }

.lucie_tiny{
      height: 170px;
      background-image: url("./img/nav/responsive/nav_lucie_tiny.jpg")!important;
  }

  .lou-anna_tiny{
    height: 170px;
    background-image: url("./img/nav/responsive/nav_lou-anna_tiny.jpg")!important;
  }

  .delphine_tiny{
    height: 170px;
    background-image: url("./img/nav/responsive/nav_delphine_tiny.jpg")!important;
  }

  /*** Studio***/
  .studio_tiny{
    height: 170px;
    background-image: url("./img/nav/responsive/nav_creatif_tiny.jpg")!important;
  }

  .cinabre_tiny{
    height: 170px;
    background-image: url("./img/nav/responsive/nav_cinabre_tiny.jpg")!important;
  }

  .theatral_tiny{
    height: 170px;
    background-image: url("./img/nav/responsive/nav_theatral_tiny.jpg")!important;
  }

  .double-exposition_tiny{
    height: 170px;
    background-image: url("./img/nav/responsive/nav_double-exposition_tiny.jpg")!important;
  }

  .floral_tiny{
    height: 170px;
    background-image: url("./img/nav/responsive/nav_floral_tiny.jpg")!important;
  }

  .finalgirl_tiny{
    height: 170px;
    background-image: url("./img/nav/responsive/nav_finalgirl_tiny.jpg")!important;
  }

  .golden_tiny{
    height: 170px;
    background-image: url("./img/nav/responsive/nav_golden_tiny.jpg")!important;
  }

  /*** Commercial***/
  .commercial_tiny{
    height: 170px;
    background-image: url("./img/nav/responsive/nav_commercial_tiny.jpg")!important;
  }

  .calotropie_tiny{
    height: 170px;
    background-image: url("./img/nav/responsive/nav_calotropie_tiny.jpg")!important;
  }

  .eniluapski_tiny{
    height: 170px;
    background-image: url("./img/nav/responsive/nav_eniluapski_tiny.jpg")!important;
  }

  .fantasy_tiny{
    height: 170px;
    background-image: url("./img/nav/responsive/nav_fantasy_tiny.jpg")!important;
  }

  .stantoine_tiny{
    height: 170px;
    background-image: url("./img/nav/responsive/nav_stantoine_tiny.jpg")!important;
  }

  .escossor_tiny{
    height: 170px;
    background-image: url("./img/nav/responsive/nav_escossor_tiny.jpg")!important;
  }

  .beast_tiny{
    height: 170px;
    background-image: url("./img/nav/responsive/nav_beast_tiny.jpg")!important;
  }

  .titre_galerie{
    text-align: center;
    margin: 20px 0;
  }

  .titre_galerie h1{
    margin-top:30px;
    font-family: "Jost";
    font-weight:400;
    font-size: 16px;
    color:gray;
  }

  .titre_galerie h2{
    font-size: 36px;
  }

}
