

/* Mettre en haut de ton CSS (si pas déjà présent) */
*, *::before, *::after {
  box-sizing: border-box;
}


body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fffdfc;
    color: #5a4b46;
    margin: 0;
     background: linear-gradient(to right, #efe5e6, #f6e6eb9d);

  }
html, body {
  width: 100%;
  overflow-x: hidden; /* empêche le scroll horizontal */
}
  h2 {
    text-align: center;
   font-family: 'Playfair Display', serif;
    color: #c8395f;
    margin-top: 2px;
    margin-bottom: 2px;
     font-size: 5rem;
    
    

  }
  p{
    padding:  10px 0px 10px 0px ;
   
  }
a {
  cursor: pointer;
  text-decoration: none;
  color: #000000;
}


  /* Navbar */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo à gauche, menu à droite */
  padding: 0 20px;
}

  
  .logo img {
    max-height: 6ch;
    padding: 5px;
    
  }

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0; /* aucun margin nécessaire ici */
}
  .nav-links a {
    text-decoration: none;
    color: #5a4b46;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.2rem;
    font-weight: 800;
    
  }
  .nav-links a:hover {
    color: #c7967b;
  }
  
/* Hero Section : découplée */
.hero {
    background: linear-gradient(to right, #efe5e6, #f8cdd9ed);
    display: flex;
    flex-direction: column;
     
  }
  .hero-logo {
  text-align: center;
  
  border-radius: 20px;
   max-width: 80%; /* ou une largeur plus grande */
  
   
}


.hero-logo img {
  width: 600px;
 max-width: 100%;
  height: auto;
   border-radius: 20px;
    opacity: 1; /* 0 = invisible, 1 = opaque */
   
}


  
  /* Navbar fixée en haut */
  .navbar {
    display: flex;
    justify-content: space-between;
  
    align-items: center;
    padding: 1px 2%;
    background-image: url('Fonds/fond-rose.webp');
    background-size: cover;         /* Pour que l'image couvre tout le panneau */
    background-position: center;    /* Centrer l'image */
    background-repeat: no-repeat;   /* Ne pas répéter l'image */
    position: sticky;
    top: 0;
    z-index: 10;
  }
  
  /* Hero Content bien centré */
  .hero-content {
    position: relative;
    display: flex;
   flex-direction: row; /* ligne au lieu de colonne */
    justify-content: center;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: white; /* Assurez-vous que le texte soit visible */
    z-index: 1; /* Le contenu reste devant la vidéo */
    height: 60vh; /* La section prend 1/3 de la hauteur de la fenêtre */
    overflow: hidden; /* Empêche l'excès de contenu visible */
    z-index: 1; /* Le contenu est devant la vidéo */
   padding: 0 20px;
 
  }


   
   
   

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;      /* vw = largeur totale de l'écran */
    height: 100%;      /* Remplit toute la hauteur de la section hero-content */
    object-fit: cover; /* L'image ne sera pas déformée */
    z-index: -1;       /* Reste bien en arrière-plan */
    border-radius: 0;  /* On enlève l'arrondi pour que ça touche les bords */
    box-shadow: none;  /* On enlève l'ombre portée */
}

.hero-main {
    display: flex;
    flex-direction: column;
    align-items: center; /* centre logo, texte et bouton */
    justify-content: center;
    text-align: center;
    width: 100%;
    margin: auto; /* margin auto à supprimer si utilisation des card left et right */
    
}

  #hero-video p   {
    font-size: 6rem;
    
  }
  
  h1, p {
    z-index: 2; /* S'assurer que le texte soit devant la vidéo */

  }



        
   




  .btn {
    z-index: 2; /* S'assurer que le bouton soit devant la vidéo */
  }
  .hero-content p{ 
    color: #c96e86;
    font-size: clamp(0.9rem, 2vw + 0.5rem, 2.7rem) !important;
    margin-top: 0;
    max-width: 80%;



  }
  .hero-content a{ 
    color: #eafcf1;
    font-size: 2rem;
    font-weight: lighter;
  }


   @media (max-width: 768px) {

    
  .hero-content {
    flex-direction: row; /* ligne au lieu de colonne */
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 0 50px;
    height: 50vh; /* garde la hauteur initiale */
   
  }
  .hero-content a {
    font-size: 1.5rem;
  }
  
   }



  /** card right et left */
  /* Desktop uniquement */
@media screen and (min-width: 1700px) {

  .hero-content {
    flex-direction: row; /* ligne au lieu de colonne */
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 0 50px;
    height: 600px; /* garde la hauteur initiale */
   
  }

  .hero-main {
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 20%;
    font-size: 1rem;
    color: #5a4b46;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: center;
     text-decoration: none;
  color: inherit;
  display: block; /* Pour que toute la carte soit cliquable */

  }


   .card h3 {
    
    font-size: 1.1rem;
    margin-top: 10px;
  margin: auto;
   font-size: 1rem;
    color: #5a4b46;
    text-align: center;
     text-decoration: none;
     display: block; /* Pour que toute la carte soit cliquable */
  


  }

  .card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}
}

/* Mobile: cartes invisibles */
@media screen and (max-width: 1700px) {
  .card {
    display: none;
  }

  
}
/*****************about home *********************/

  .about-home {
    background-color: #fff8f6;
   border-radius: 20px;
    padding: 00px 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15), 0 6px 6px rgba(0,0,0,0.10);
    transition: transform 0.3s, box-shadow 0.3s;
    height: auto;
    padding-bottom: 10px;
    max-width: 1400px;
  


  }

  .about-home a {
    text-decoration: none;
    color: #5a4b46;
    
  }



  
  .about-home h2 {
    font-family: "Dancing Script", cursive;
    text-align: center;
    font-size: 3rem;
    color: #c96e86;
    margin-bottom: 20px;
  }






  /* About */
  .about {
    background-color: #fff8f6;
   border-radius: 20px;
    padding: 00px 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15), 0 6px 6px rgba(0,0,0,0.10);
    transition: transform 0.3s, box-shadow 0.3s;
    height: auto;
    padding-bottom: 10px;
    max-width: 1400px;  .about-home p {
    max-width: auto;
    font-family: "Lora", sans-serif;
    margin: auto;
    font-size: 1.1rem;
    color: #5a4b46;
    text-align: justify;
    margin-bottom: 10px;
    
  }


  }





  .about a {
    text-decoration: none;
    color: #5a4b46;
    
  }



  
  .about h2 {
    font-family: "Dancing Script", cursive;
    text-align: center;
    font-size: 3rem;
    color: #c96e86;
    margin-bottom: 20px;
  }



  .about p {
    max-width: auto;
    font-family: "Lora", sans-serif;
    margin: auto;
    font-size: 1.1rem;
    color: #5a4b46;
    text-align: justify;
    margin-bottom: 10px;
    
  }


  @media (max-width: 768px) {
   .about-services .about p {
    font-size: 0.9rem;
    font-family: "Lora", sans-serif;
    padding: 2px;

   }

@media screen and (max-width: 768px) {
    /* Le #home-description est prioritaire sur TOUTES les classes .container */
    #home-description {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
        text-align: justify !important;
    }
}
}




  


 section.about .container p {
    text-align: justify;
    

  }
 


  
  h1 {
        font-size: 2rem;
font-family: "Lora", sans-serif;
  margin-top: 10px;
  margin-bottom: 10px;
  text-shadow: 0px spx 1px rgba(0, 0, 0, 0.713);
  
   }

h1.loc {

     text-align: center;
   font-family: 'Playfair Display', serif;
    color: #c8395f;
    margin-top: 2px;
    margin-bottom: 2px;
     font-size: 3rem;
     padding-bottom: 20px;
}
 @media (max-width: 768px) {
  h1.loc {
  font-size: 1.5rem;

 }}

.button-container {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #c96e86; /* Couleur personnalisée */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.507); /* Ombre douce */
}

/* Effet au survol */
.btn:hover {
  background-color: #a178a5; /* Couleur au survol */
  box-shadow: 0 6px 18px rgba(0,0,0,0.2); /* Ombre un peu plus marquée */
  transform: translateY(-2px); /* Légère élévation */
}

.why-choose-us h2 {
font-family: 'Playfair Display', serif;
font-size: 2rem;
}



  
 /* style acceuil sur page -768 */

  @media (max-width: 768px) {
   .hero-content h1 {
    font-size: 8rem;

   }
   .hero-content h2 {
    font-size: 4rem;
    
   }
   .container h2 {
    font-size: 1.8rem;

   }
   
#hero-video {
        max-width: 100%;
        height: 50vh; /* ou auto selon ce qui rend le mieux */
    }
    
  
    
 } 



 section.about .container p {
    text-align: justify;
    font-size: 1.2rem;
    
  }
/** titre h1 page accueil **/

  .title h1{
    font-size: 2rem;
    text-align: center;
color: #8a4357;
margin-bottom: 15px;


}



  /* -----------------------------------------------------*/

  /* Style de la div indépendante  des prestation sur home.html*/
.links-container1 {
    display: flex;
    justify-content: space-around;
    margin: auto;
    max-width: 900px;
    margin-left: 10px;
    margin-right: 10px;
    gap: 10px;
     box-sizing: border-box;
 
  }
  
  .link-item {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #333;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
       background: #c96e86;
       box-shadow: 0px 0px 20px #c96e86;
  }
  
  .link-item:hover {
    background-color: #333;
    color: #fff;
    
  }


  /* Media query pour les petits écrans (mobiles et tablettes) */
@media (max-width: 768px) {
    .links-container1 {
      justify-content: center; /* Centrer les éléments sur petits écrans */
    }
  
    .link-item {
      font-size: 0.8rem; /* Réduire la taille du texte */
      padding: 5px 5px; /* Réduire l'espacement autour du texte */
      margin-left: 1px;
      margin-right: 1px;
    
      width: 100%; /* Chaque élément prend toute la largeur de l'écran */
      text-align: center; /* Centrer le texte à l'intérieur des liens */
    }

      .title h1{
    font-size:0.9rem;
    text-align: center;
color: #8a4357;


}
  }



  /* -----------------------------------------------------*/
  /* Style pour les images des témoignages */
/* Conteneur des témoignages */
.testimonials {
  padding: 20px;
  background-color: #f9f9f9;  /* Optionnel : fond léger pour les témoignages */
  display: flex;
  flex-direction: column;
  gap: 20px;  /* Espacement entre les témoignages */
}

/* Style pour chaque témoignage */
.testimonial {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;  /* Espacement entre l'image et le texte */
  background-color: #fff;  /* Fond blanc pour les témoignages */
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

/* Redimensionner les photos des témoignages */
.testimonial img {
  width: 80px;       /*  taille de l'image */
  height: 80px;      /*  la taille de l'image */
  border-radius: 50%;  /*  l'image ronde */
  object-fit: cover;  /
}

/* Style pour le texte des témoignages */
.testimonial-text p {
  margin: 0;         /* Supprime les marges par défaut */
  font-size: 1rem;  
  color: #333;      
}

.testimonial-text p:first-child {
  font-weight: bold;  /* texte du témoignage  gras */
}

.testimonial-text p:last-child {
  font-style: italic; 
  color: #555;        
}
  /* Footer */
  footer {
    background-color: #f3eae7;
    text-align: center;
    padding: 20px;
    color: #E0B05C;
    font-size: 0.9rem;
  }
footer a {
  text-decoration: none;
  color: #7e0123;
}




/* -------------  css page mentions -------*/

.mentions h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 3rem;
    text-align: center;
     color: #381628;
}

.mentions h2 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   font-size: 1.5rem;
   
    text-align: left;
}
.mentions section {
  padding: 0px 10px 0px 10px;
}
.mentions a {
  color: #381628;
  
}
  /* -----------------------------------------------------*/

/* --------------- css home card ----*/
/** suppresion des logos tel et mail en ecran  sup.768 ***/
 .mobile-contact-buttons {

  display: none;
 }

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  display: flex;                  /* logo + contacts sur une ligne */
  justify-content: space-between; /* espace entre logo et boutons */
  align-items: center;            /* centrer verticalement */
  width: 90%;
  max-width: 1300px;                  /* largeur fixe */
  height: 60px;                   /* hauteur type nav */
  padding: 0 40px;                /* espace horizontal */
  margin: 20px auto 0 auto;       /* centré horizontalement */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: 2px solid #030303;
  margin-bottom: 30px;
  
}

@media (max-width: 768px) {
  .service-card {
    display: none;
  }
}

.service-card img {
  height: 40px; /* ajuste selon ton logo */
  width: auto;  /* conserver proportions */
}


.service-card h3 {
  
  
  font-size: 1.3em;
}

.service-card p {
  font-size: 0.95em;
  margin-bottom: 15px;
}

.service-buttons {
  display: flex;
  gap: 20px; /* espace entre les boutons */
  justify-content: flex-end;
}
.btn-contact {
  padding: 8px 15px;
  background-color: #ff6b6b;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.8em;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.3s;
}

.btn-contact:hover {
  background-color: #ff4757;
}
.about-services .container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center; /* centre horizontalement sur desktop */
  margin: 0 auto;
  max-width: 1300px;      
  padding: 0 20px;
  box-sizing: border-box; /* assure que padding n’ajoute pas de largeur */
}

.about-services .about {
  flex: 1;
  min-width: 280px;
  box-sizing: border-box;
}

.about-services .service-card {
  flex: 0 0 300px;          
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

/* --- Media query pour écran ≤ 768px --- */
 
@media (max-width: 768px) {
  .about-services .container {
    flex-direction: column;
    align-items: center;   
    text-align: center;
    padding: 0 15px;         /* légèrement réduit pour éviter le décalage */
    max-width: 100%;        
    margin-left: auto;
    margin-right: auto;       /* assure centrage complet */
  }

  .about-services .about,
  .about-services .service-card {
    flex: none;            
    width: 100%;             /* prend toute la largeur dispo */
    max-width: 400px;      
    margin: 0 auto;          /* centre horizontalement */
  }

  .about-services .service-card {
    justify-content: center; 
    align-items: center;
  }

  .about-services .service-card img {
    margin: 0 auto 15px;
    display: block;
  }

  .about-services .service-buttons {
    justify-content: center;
  }
}
/* page mariage css on */

.reassurance p {
  box-shadow: none !important;
}


.presentation h2 {
    text-align: center;
   
    font-family: "Dancing Script", cursive;
    font-size: 4rem;
    
    
}



/* Galerie */
.galerie {
  margin-top: 50px;
    padding: 20px 10px;
    background-color: #fff8f6;
  }
  
  .galerie h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #b08567;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
  }
  @media (max-width: 768px) {
    .galerie h2 {
      font-size: 1.5rem;
    }    }

    @media (max-width: 480px) {
.photo-gallery img {
     max-height:  90px;
     width: 100%;
 }
 
  }
  
  .photo-gallery {
    display: grid;
    object-fit: cover;
  
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .photo-gallery img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    
    border-radius: 8px;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
  }


.mariage-title {
  color: #ffffff !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 40px 20px !important; /* Donne de la hauteur pour voir l'image */
  z-index: 1;
  border-radius: 20px;
  margin-top: 30px;
 height: auto;
 box-shadow: 0 0  20px 5px #000000 !important;
 
 
}

.mariage-title::before {
 content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important; 
  right: 0 !important; 
  bottom: 0 !important;
  background-image: url("photos/marieemariage.png") !important;
  
  /* L'emplacement de l'image (X Y) */
  background-position: 50% 15% !important; 
  
  /* Pour que l'image remplisse bien tout l'espace */
  background-size: cover !important; 
  
  /* L'EFFET DE MOUVEMENT : l'image reste fixe pendant que le texte défile */
 

  opacity: 0.9 !important;
  z-index: -1 !important;

}

.mariage-title h1 {
  background: none !important;
  box-shadow: none !important;
  max-width: 100% !important;
  text-shadow: 0px 0px 7px black !important;
   font-size: clamp(1.8rem, 5vw, 3rem) !important;
}



.mariage-intro {
    max-width: 800px !important;      /* Pour éviter que le texte soit trop large sur grand écran */
    margin: 30px auto !important;     /* Centre le texte et donne de l'air */
    text-align: center !important;    /* Centre le texte */
    font-size: 1.3rem !important;     /* Taille de lecture agréable */
    line-height: 1.4 !important;      /* Espacement entre les lignes pour la lisibilité */
    color: #161616 !important;           /* Un gris foncé doux (mieux que le noir pur) */
    font-style: italic !important;    /* Donne un côté élégant/mariage */
    padding: 10px 20px !important;       /* Sécurité pour le mobile */
   font-weight: bold;
    text-align: justify !important;
        text-shadow: 
    -1px -1px 0 #ffffffa1 ,  
     1px -1px 0 #ffffffa1,
    -1px  1px 0 #ffffffa1,
     1px  1px 0 #ffffffa1 !important;
}

.mariage-intro span {
    display: block !important;        /* Met la phrase du RDV à la ligne */
    margin-top: 15px !important;
    font-weight: bold !important;     /* Met en valeur l'offre gratuite */
    color: #000000 ;        /* Une touche de doré ou la couleur de ton site */
    text-align: center !important;
}



@media (max-width: 768px) {
.mariage-title::before {
  background-position: 80% 15% !important; 
}


.mariage-intro {
  font-size: 1rem !important;
  text-shadow: 0 0 10px rgb(255, 255, 255);
}


}

/* -----------------------------------------------------*/

/*cube en 3d sur page index*/


/* Carrousel 3D */

.carrousel-3d {
    perspective: 1400px;
    min-height: 180px; /* augmenté pour laisser de la place au titre */
    display: flex;
    flex-direction: column; /* empile le titre puis le carrousel */
    justify-content: center;
    align-items: center;
    background: #c96e86;
    background-image: url('Fonds/fond-rose.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-top: 10px;
    padding: 5px 5px; /* pour respirer */
}

.titre-carrousel {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff; /* pour ressortir sur le fond */
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* lisibilité sur image */
    text-align: center;
}

.carrousel {
    width: 300px;
    height: 100px;
    position: relative;
    transform-style: preserve-3d;
    animation: spin 20s infinite linear;
}
.carrousel-3d p {
  color: #c96e86;              /* intérieur blanc */
  font-weight: 600;
   text-shadow: 0 0 0.5px #3f0000;     /* fallback pour Firefox */
  margin-top: 0;
}

/* titre liens color inherit */
/* Animation de la flèche */
@keyframes arrowMove {
  0% { transform: translateX(0); }
  50% { transform: translateX(6px); }
  100% { transform: translateX(0); }
}

/* Bouton principal */
.service h2 a {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(145deg, #d67f97, #b85f76);
  width: 80%;
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 6px 0 #8a4357, 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  position: relative;
  animation: pulse 2s infinite ease-in-out; /* optionnel : effet “respiration” */
}

/* Animation du bouton (respiration douce) */
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 0 #8a4357, 0 10px 20px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 6px 0 #8a4357, 0 0 25px rgba(201, 110, 134, 0.7); }
}

/* Effet de clic */
.service h2 a:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #8a4357, 0 5px 10px rgba(0, 0, 0, 0.3);
  background: linear-gradient(145deg, #c96e86, #a8556a);
}

/* Flèche animée en continu */
.service h2 a i {
  margin-left: 10px;
  animation: arrowMove 1.2s infinite ease-in-out;
}



.pane {
    position: absolute;
   
    width: 250px;
    height: 60px;
    background: #c96e86;
    border: 1px solid #b90031;
    box-shadow: 0 5px 15px #030303;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    color: #35021fe2;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2); /* Ombre 3D subtile */
    transform: rotateX(5deg) rotateY(5deg); /* Inclinaison légère pour un effet 3D */
}



.pane:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px #b90031;
    color: black;
    
}


/* Position des panneaux autour du cercle */
.pane:nth-child(1) { transform: rotateY(0deg) translateZ(250px); }
.pane:nth-child(2) { transform: rotateY(72deg) translateZ(250px); }
.pane:nth-child(3) { transform: rotateY(144deg) translateZ(250px); }
.pane:nth-child(4) { transform: rotateY(216deg) translateZ(250px); }
.pane:nth-child(5) { transform: rotateY(288deg) translateZ(250px); }

@keyframes spin {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.carrousel:hover {
    animation-play-state: paused;
}

/* Sections responsive */
@media (max-width: 768px) {
    .carrousel {
        width: 200px; /* Réduit la taille du carrousel */
        height: 80px; /* Réduit la hauteur */
    }

    .pane {
        width: 180px; /* Réduit la taille des panneaux */
        height: 50px; /* Réduit la hauteur des panneaux */
        font-size: 14px; /* Réduit la taille de la police */
    }

    .carrousel-3d {
        perspective: 1200px; /* Moins de perspective sur les petits écrans */
        height: 80px; /* Réduit la hauteur du carrousel */
    }

    /* Réduction de l'espace entre les panneaux sur petits écrans */
    .pane:nth-child(1) { transform: rotateY(0deg) translateZ(200px); }
    .pane:nth-child(2) { transform: rotateY(72deg) translateZ(200px); }
    .pane:nth-child(3) { transform: rotateY(144deg) translateZ(200px); }
    .pane:nth-child(4) { transform: rotateY(216deg) translateZ(200px); }
    .pane:nth-child(5) { transform: rotateY(288deg) translateZ(200px); }
}

.carrousel-3d p {
 font-size: 2.3rem ;
 
}

  .carrousel:hover {
    animation-play-state: paused;
  }


@media (max-width: 480px) {
    .carrousel {
        width: 150px; /* Réduit encore plus la taille sur les très petits écrans */
        height: 60px; /* Réduit la hauteur */
    }

    .pane {
        width: 130px; /* Réduit les panneaux pour les petits écrans */
        height: 40px; /* Réduit la hauteur des panneaux */
        font-size: 12px; /* Réduit la taille de la police */
    }

    .carrousel-3d {
        perspective: 1000px; /* Ajuste la perspective */
        height: 60px; /* Réduit la hauteur pour les petits écrans */
        font-size: 1.5rem;
    }

    .carrousel-3d p {
    font-size: 1.5rem;
 
}

    /* Réduction de l'espace entre les panneaux sur très petits écrans */
    .pane:nth-child(1) { transform: rotateY(0deg) translateZ(150px); }
    .pane:nth-child(2) { transform: rotateY(72deg) translateZ(150px); }
    .pane:nth-child(3) { transform: rotateY(144deg) translateZ(150px); }
    .pane:nth-child(4) { transform: rotateY(216deg) translateZ(150px); }
    .pane:nth-child(5) { transform: rotateY(288deg) translateZ(150px); }
}


  .carrousel:hover {
    animation-play-state: paused;
  }


/*cube en 3d sur page index  fin*/


.prestation-item img {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.527);
  }
  .prestations {
    background: url("photos/backnatur.png") center/cover no-repeat;
  }
/** bckground de prestations location ***/

section.prestations-location {
  position: relative;
  background: url("photos/backloc.png") center/cover no-repeat;
  border: 2px solid #333; 
  
}

/* Overlay pour gérer l'opacité */
section.prestations-location::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.262); /* ← règle l’opacité ici */
  z-index: 1;
  border-radius: 20px;
  backdrop-filter: blur(1px);
}

/* Le contenu passe au-dessus */
section.prestations-location > * {
  position: relative;
  z-index: 2;
}
/*******************/

  .prestation-item h3{
    font-family: "Dancing Script", cursive;
    font-size: 4rem;
    color: #8a4357;
    text-shadow: 2px 2px 20px#c96e86;
    margin-top: 0;
  }
  
.prestation-item .prestation-text p {
font-family: 'Montserrat', sans-serif;
line-height: 2;
font-size: 1.2rem;
background: url("photos/backnatur.png") center/cover no-repeat;
color: #000000c2;
font-weight: 400;
padding: 20px 30px 40px 30px ;
text-shadow: 1px 0 0 rgb(255, 255, 255), -1px 0 0 rgb(255, 255, 255), 0 1px 0 rgb(255, 255, 255), 0 -1px 0 rgb(255, 255, 255), 1px 1px 0 rgb(251, 251, 251), -1px 1px 0 rgb(255, 255, 255), 1px -1px 0 rgb(248, 248, 248), -1px -1px 0 rgb(253, 253, 253);
border-radius: 20px;
box-shadow: 0px 0px 15px #000000;
}

.prestation-item .prestation-text h3 {
  margin-bottom: 2px;
  margin-top: 60px;
  border-radius: 10px;
  border: 1px solid black;
  padding: 10px;
color: #363636;
  background: linear-gradient(270deg, #c96e86, #f0f0f094, #c96e86);
  background-size: 600% 600%;
  animation: gradientMove 10s ease infinite;
  font-size: 2.8rem;
}
.fleur {
  color: #FFABA3; /* or doux / beige chic */
}


@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
 .prestations .texte-loc  {
  font-size: 1rem;
  max-width: 100%;
  margin: auto;
  margin-top: 10px;
  text-align: center;
}

.presentation .texte-loc {
  font-size: 12rem;
  max-width: 100%;
  margin: auto;
  margin-top: 10px;
}


 @media (max-width: 768px) {

  .prestation-item h3{
    font-family: "Dancing Script", cursive;
    font-size: 2.1rem;
    padding: 10px;
  }

.prestation-item .prestation-text p {


  font-style: normal;
padding: 10px;
font-size: 1rem !important;
text-align: left;


}

.prestation-item img {
   
    height: 50px;


  }
  .prestation-item .prestation-text h3 {
    font-size: 1.3rem;

margin-top: 20px;
  


}

/** titre h1 page prestations */
  .prestas {
    font-size: 1rem ;
  }




 .prestations .texte-loc  {
  font-size: 0.8rem !important  ;
  text-align: center;
  max-width: 100%;
  margin: auto;
  margin-top: 10px;
}
section.prestations-location {
max-width: 95%;
}
.texte-loc p {
  font-size: 5rem !important;
}

 }

/* -----------------------------------------------------*/
/* Style général a propos */


.apropos {
    font-size: 2rem;
    text-align: center;
    margin: 30px auto ;
        border: 2px solid #b08567; /* couleur et épaisseur du cadre */
    padding: 10px;             /* espace intérieur pour ne pas coller au bord */
    border-radius: 20px;       /* coins arrondis (optionnel) */
    background-color: #eeeeeb; /* fond légèrement différent (optionnel) */
     box-shadow: 0 0 10px 8px #5a4b4657;
   width: 90%;
     max-width: 1600px;
}
.apropos h2 {
font-family: 'Playfair Display', serif;
font-size: 2rem;


}
.apropos p {
  font-size: 1rem;
}

.who-we-are {
  max-width: 1600px;
  margin: auto;
  background-color: #c96e864f;
  border-radius: 20px;
  margin-bottom: 20px;
    box-shadow: 0 0 10px 8px #5a4b4657;
}

.who-we-are p {
    font-size: 0.8rem;
    text-align: center;
}
.who-we-are h2 {
    font-size: 2rem;
    text-align: center;
    color: #5a4b46;
}



.services h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    
    
    
}


.apropos-images {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 30px auto;
    width: 95%;
    max-width: 1300px;
  }
  
  .apropos-images img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    flex: 1;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15), 0 6px 6px rgba(0,0,0,0.10);
    transition: transform 0.3s, box-shadow 0.3s;
  }
 


  .services {
    border: 2px solid #b08567; /* couleur et épaisseur du cadre */
     border-radius: 10px;       /* coins arrondis (optionnel) */
    background-color: #fffaf7; /* fond légèrement différent (optionnel) */
    max-width: 1500px;
    margin: auto;
    text-align: center;
    padding: 20px 20px;
  background-color: #f9f9f9;
  text-align: center;
box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
 
}
.services a{ 
  
  color: inherit;

}

.services-about a{
  color: inherit;
  text-decoration: none;
  text-align: center;
  margin: auto;
  padding: 1%;
  background-color: #d88d8d49;
  border-radius: 10px;
  line-height: 2.5;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.625);
 

  

}


.services-about .container p {
  font-family: "Caveat", cursive;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.461);

}


/*** ballon universe */
.ballon-universe {
    padding: 60px 0;
    background-color: #fff;
    font-family: 'Lora', serif;
}

.container-ballon {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.ballon-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.ballon-image {
    flex: 1;
    min-width: 300px;
}

.ballon-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.05);
}

.ballon-text {
    flex: 1.5;
    min-width: 300px;
    color: #4a4a4a;
}

.title-ballon {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d18ba2; /* Rose similaire à l'image */
    margin-bottom: 5px;
    text-transform: uppercase;
}

.title-ballon span {
    display: block;
    font-family: 'Sacramento', cursive;
    text-transform: none;
    font-size: 4rem;
    margin-top: -20px;
}

.tagline {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.ballon-description p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.ballon-details h3, .ballon-creations h3 {
    font-family: 'Playfair Display', serif;
    color: #d18ba2;
    margin: 25px 0 10px 0;
    font-size: 1.4rem;
}

.ballon-details ul {
    list-style: none;
    padding-left: 0;
}

.ballon-details li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.ballon-details li::before {
    content: "•";
    color: #d18ba2;
    position: absolute;
    left: 0;
}

.ballon-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f7d8e4;
}

.ballon-footer h4 {
    text-decoration: underline;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .ballon-content {
        flex-direction: column;
    }
    .title-ballon { font-size: 2rem; }
    .title-ballon span { font-size: 3rem; }
}
  


  @media (max-width: 768px) {
    .apropos-images {
      flex-direction: column;
     
    }
  
    .apropos-images img {
      height: auto;
    }
    /* supression image en responsive */
    .apropos-images img[src*="marry2.webp"] {
        display: none;
      }
        .apropos-images img[src*="girl.webp"] {
        display: none;
      }

        .apropos-images img[src*="flower2.webp"] {
        display: none;
      }
  .apropos-images img[src*="flower3.webp"] {
        display: none;
      }

  .services {
   
    margin: 0px 20px 0px 20px;
    padding: 20px 20px;

}
.service .container p {
  font-size: 1rem;
 
}
.services .container ul p{
  font-size: 1rem;
 
}


.apropos .container p {
  font-size: 1.3rem;
  text-align: justify;
}
.who-we-are .service .container p {
    font-size: 1rem;
    text-align:justify;
    padding:  0 20px 0 20px;
   
    
}

.who-we-are  {
  max-width: 95%;
}

}

/**** css partie services-about de la page à propos ***/

/* Section globale */
.services-about {
    padding: 30px 20px;
    background-color: linear-gradient(to right, #efe5e6, #f8cdd9ed); /* Un blanc très légèrement rosé pour la douceur */
}

.container-about-page {
    max-width: 1600px;
    margin: 0 auto;
   box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.625);
  border-radius: 20px;
}

/* Titre de section */
.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: #c96e86; /* Ton rose signature */
    font-size: 2.2rem;
    margin-bottom: 10px;
}

/* La Grille */
.glow-services-layout {
    display: flex;
    flex-wrap: nowrap; /* FORCE les 4 sur la même ligne */
    justify-content: space-between;
    align-items: center;
    gap: 15px; /* On réduit un peu l'écart pour gagner de la place */

    max-width: 1300px;
    margin: auto;
    padding: 20px 20px 20px 20px;
}
/* Le nouveau nom de tes cartes */
.glow-service-box {
    flex: 1; /* Chaque box prend exactement 25% de la place */
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding: 20px 15px; /* On réduit un peu le padding interne */
    border-radius: 20px;
    border: 2px solid #f7dae2;
    text-align: center;
    transition: all 0.4s ease;
    min-width: 0; /* Important pour que le texte ne force pas l'élargissement */
}
.glow-service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(201, 110, 134, 0.12);
    border-color: #d4af37; /* Devient doré au survol */
}

/* Styles internes */
/* 2. On fixe le style des H3 pour qu'ils soient TOUS pareils */
.glow-service-box h3 {
    font-family: 'Playfair Display', serif !important;
    color: #c96e86 !important;
    font-size: 1.2rem !important; /* On augmente un peu la taille par rapport à ton 1rem */
    margin-bottom: 15px !important;
    min-height: 25px; /* Aligne les titres proprement */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    padding: 0px  20px 0px 20px  ;


}
.glow-service-box a {
    text-decoration: none;
}

.glow-emoji {
    font-size: 1.1rem;
    transition: 0.3s;
}

.glow-service-box:hover .glow-emoji {
    transform: rotate(-10deg) scale(1.3);
}

.glow-service-box p {
    flex-grow: 1; /* Pousse le contenu pour que toutes les box fassent la même taille */
    font-size: clamp(1rem, 2vw + 0.5rem, 1.2rem);
    margin-bottom: 0;
    text-align: justify;
}
/* Phrase finale */
.glow-final-text {
    text-align: center;
    font-family: 'Dancing Script', cursive;
   font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
    color: #c96e86; /* Doré */
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid #f2e1e6;
}

/* Adaptabilité Mobile */
@media (max-width: 992px) {
    .glow-services-layout {
        flex-wrap: wrap; /* On autorise le retour à la ligne sur tablette/mobile */
    }
    .glow-service-box {
        flex: 1 1 calc(50% - 20px); /* 2 par ligne sur tablette */
    }
}

@media (max-width: 600px) {
    .glow-service-box {
        flex: 1 1 100%; /* 1 par ligne sur téléphone */
    }

    .glow-service-box h3 {
      min-width: 250px;
    }
}


/* -----------------------------------------------------*/
/* --- Galerie épinglée Qui sommes-nous --- */
.team-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.polaroid {
  position: relative;
  background: #3f3d3dc7;
  padding: 4px 2px 4px 2px;
  border-radius: 10px;
  box-shadow: 0 10px 18px #5a4b46;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 220px; /* taille augmentée (avant : 180px) */
  transform: rotate(var(--rotation, 0deg));
}

.polaroid img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.polaroid::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 30% 30%, #d47a9b, #c96e86 60%);
  border-radius: 50%;
  box-shadow: 0 2px 5px #5a4b46;
}

/* hover */
.polaroid:hover {
  transform: scale(1.05) rotate(0deg);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}


/* rotation légère aléatoire */
.polaroid:nth-child(1) { --rotation: -3deg; }
.polaroid:nth-child(2) { --rotation: 2deg; }
.polaroid:nth-child(3) { --rotation: -1.5deg; }
.polaroid:nth-child(4) { --rotation: 3deg; }
.polaroid:nth-child(5) { --rotation: -2deg; }
.polaroid:nth-child(6) { --rotation: 1.5deg; }

/* responsive */
@media (max-width: 1024px) {
  .polaroid {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .polaroid {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .polaroid {
    width: 85%;
  }
} -----------------------------------------------------*/
/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.3s;
}

.lightbox .close:hover {
  color: #c96e86;
}
.clickable {
  
  cursor: pointer;

}

/* Style général pour la page  prestation */


.prestations {
    padding: 5px 0px;
    background-color: #ffffff;
    text-align: center;
    max-width: 1300px;
    margin: auto;
    border-radius: 20px;
    box-shadow: 0 0px 20px 30px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    
  }
  
  .prestations h2 {
    font-size: 3rem;
    font-family: "Caveat", cursive;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.527);
    background: linear-gradient(145deg, #d67f98, #b85f77a2);
color: white;
text-shadow: 0px 0px 15px black;
   max-width: 800px;
   margin: auto;
    margin-bottom: 20px;
    margin-top: 20px;
  }


@media (max-width: 768px) {

  .prestations h2 {
  font-size: 1.7rem;
}
}
  .ns p {
    font-size: 1.1rem;
    color: #5a4b46;
    max-width: 900px;
    margin: auto;
    margin-bottom: 40px;
  }
  
  .prestations a {
    color: #381628bd;
    font-weight: 800;
  }

  .photo-equipement {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}


  .service  a{
    color: #c96e86;
    font-weight: 800;
  
  }
.links-container1 {
  
  padding:   0px 30px 0px 30px ;
  margin: 50px auto;
  
}
.tarifs-location {
  margin: 0 auto;
  border-collapse: collapse;
  width: 90%;             /* prend 90% de la largeur de l’écran */
  max-width: 800px;       /* mais pas plus large que 800px */
}

.tarifs-location th,
.tarifs-location td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: center;
}

.tarifs-location th {
  background-color: #c96e86;
  color: white;
}




.prestations-title {
  color: #ffffff !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 40px 20px !important; /* Donne de la hauteur pour voir l'image */
  z-index: 1;
  border-radius: 20px;
  margin-top: 30px;
 height: auto;
 box-shadow: 0 0  20px 5px #000000 !important;
 
 
}

.prestations-title::before {
 content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important; 
  right: 0 !important; 
  bottom: 0 !important;
  background-image: url("photos/presta.webp") !important;
  
  /* L'emplacement de l'image (X Y) */
  background-position: 50% 65% !important; 
  
  /* Pour que l'image remplisse bien tout l'espace */
  background-size: cover !important; 
  
  /* L'EFFET DE MOUVEMENT : l'image reste fixe pendant que le texte défile */
 

  opacity: 0.8 !important;
  z-index: -1 !important;

}

.prestations-title h1 {
  background: none !important;
  box-shadow: none !important;
  max-width: 100% !important;
  text-shadow: 0px 0px 7px black !important;
   font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
   ;
}

/* ====================== PACKS LOCATION ====================== */
/* ====================== PACKS LOCATION ====================== */




.packs-location {
  padding: 10px 20px;
  background-color: #fffdfc;
  max-width: 1400px;
  margin: 10px auto;
  text-align: center;
}

.packs-location h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #c96e86;
  margin-bottom: 60px;
  position: relative;
}

.packs-location h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: #c96e86;
  margin: 15px auto 0;
  border-radius: 2px;
}

.packs-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1300px;
  margin: auto;
  border-radius: 20px;
  gap: 30px;
  margin-bottom: 20px;
border: 2px solid #333; 
padding: 30px;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.507)
 
}

.packs-wrapper-home {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
 
 
}

.pack-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.799);
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;                /* ✅ */
  flex-direction: column;       /* ✅ Pour empiler image + info */
  justify-content: space-between; /* ✅ Assure que le contenu remplit la hauteur */
}
.pack-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.pack-image img {
  width: 90%;
  height: 220px;
  object-fit: cover;
  padding: 8px;
  border-radius: 20px;

  box-shadow: 2px 2px 20px #c489a3;
}

.pack-info {
  display: flex;                /* ✅ Pour gérer la hauteur interne */
  flex-direction: column;
  justify-content: space-between; /* ✅ Espace entre le texte et le prix */
  flex-grow: 1;                 /* ✅ Prend toute la hauteur dispo */
  padding: 10px;
}

.pack-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #8a4357;
  margin-bottom: 2px;
  text-shadow: 2px 2px 10px #c489a3;
}

.pack-info p {

  color: #5a4b46;
  line-height: 1.2;
  margin-bottom: 15px;
  
  
}

.pack-info p strong {
  display: block;
  text-align: center;
  margin-top: 2px;
  font-size: 1.05em;
  color: #c489a3; /* ou la couleur de ton thème */
  text-decoration: underline;
}
.pack-card .pack-info p {
  text-align: left;
  font-size: 1rem;
}

.price {
  display: inline-block;
  background: #c96e86;
  color: #fff;
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(87, 67, 72, 0.814);
  align-self: center;           /* ✅ Centré horizontalement */
  margin-top: auto;             /* ✅ Pousse vers le bas */
  margin-bottom: 15px;          /* ✅ Même distance du bas */
}


@media (max-width: 768px) {
  .price {
    font-size: 1.2rem !important;
  }


}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .pack-card {
    width: 280px;
  }
}

@media (max-width: 900px) {
  .packs-wrapper {
    gap: 20px;

  }
}

@media (max-width: 768px) {
  .packs-location h2 {
    font-size: 2.5rem;
  }

  .pack-card {
    width: 90%;
    max-width: 350px;
  }

  .packs-wrapper {
    max-width: 100% !important;
    
  }
  
}
/* ----- sections ballons ----*/
.ballons-section {
  position: relative;
  padding: 30px 20px;
  background: url("ballon/backdropballoons.png") center/cover no-repeat;
  color: #333;
  z-index: 1;
  border-radius: 20px;
  margin-bottom: 30px;
  max-width: 1300px;
  margin: 20px auto ;
 border: 2px solid #333; 
      box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.507)

}
.ballons-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.475); /* voile clair par-dessus l’image */
  z-index: 0;
  border-radius: 20px;
  
}

.ballons-section h2 {
  font-family: "Dancing Script", cursive;
  font-size: 3em;
    color: #333;
  text-align: center;
    position: relative;
  z-index: 2; /* garde le contenu au-dessus du filtre */
  margin: 0;
  top: 0;
}



.ballons-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
    position: relative;
  z-index: 1; /* garde le contenu au-dessus du filtre */
  margin-top: 10px;
}

/* ---- chaque carte ---- */
.ballon-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 260px;
  min-height: 480px; /* uniformise la hauteur */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* aligne contenu haut/bas */
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 2px 2px 20px black;
}

.ballon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.ballon-card h2 {
  font-family: "Dancing Script", cursive;
  font-size: 1.4em;
  color: #333;
 
}
.ballon-card .price {
  margin-top: 30px;
}
.ballon-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9em;
  color: #444;
  line-height: 1.5;
  text-align: left;
  flex-grow: 1; /* le texte s'étend pour occuper l'espace */
  margin-top: 0;
}

/* Ce conteneur va forcer le bouton au centre sur toute la largeur de la page */

.container-contactballoon {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 40px !important;
    position: relative !important; /* Nécessaire pour le z-index */
    z-index: 999 !important;      /* Met le conteneur tout en haut */
    clear: both !important;
}

.contact-balloons {
    display: inline-block !important;
    position: relative !important;
    z-index: 1000 !important;     /* Le bouton est encore plus haut */
    pointer-events: auto !important; /* Force l'autorisation du clic */
    cursor: pointer !important;    /* Force l'apparition de la main */
    
    /* Votre style */
    background: #c96e86;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
}
.contact-balloons:hover {
    background: #b55d74;           /* Change de couleur au survol */
    transform: translateY(-2px);   /* Petit effet de levée */
}
/* Responsive : empilement sur mobile */
@media (max-width: 768px) {
  .ballons-container {
    flex-direction: column;
    align-items: center;
  }
  .ballons-section {
    margin: 10px ;
  }
   .ballons-section h2 {
   font-size: 2.6rem;
  }

  .ballon-card {
    width: 100%;
    min-height: auto; /* laisse respirer sur petit écran */
  }
}


/** page about accueil pack **/
/* === PAGE À PROPOS === */

/* === SECTION À PROPOS === */

/* === Wrapper des cartes === */
.packs-wrapper-about {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 10px;      /* espace interne pour éviter débordement */
  max-width: 100%;       /* important */
  margin: 0 auto;
  box-sizing: border-box;
}


/* === Carte === */
.pack-card-about {
  position: relative;
  flex: 1 1 30%;
  min-width: 360px;
  max-width: 420px;
  min-height: 320px;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pack-card-about a {
  display: inline-block; /* ou block si tu veux */
  margin: 0 auto;        /* centre horizontalement */
  text-decoration: none;
  text-transform: uppercase;
  background-color: #555;
  padding: 10px;
  color: white;
  border-radius: 15px;
}
.pack-card-about:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* === Faces === */
.pack-front-about,
.pack-back-about {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: opacity 0.4s ease;
    border: 2px solid #030303; /* 2px peut être ajusté */
  z-index: 3; /* au-dessus de la front si besoin */

}

/* Face avant : titre + image */
.pack-front-about {
  z-index: 2;
  opacity: 1;
}

.pack-front-about h3 {
  font-family: 'Playfair Display', serif;
  color: #8a4357;
  font-size: 1.5rem;
  text-align: center;
  text-shadow: 2px 2px 8px #c489a3;
  margin-top: 3px;
  margin-bottom: 3px;
}

.pack-front-about img {
  width: 90%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 2px 2px 15px #c489a3;
}

/* Face arrière : texte + prix */
.pack-back-about {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  justify-content: center;
 
  text-align: center; /* centre tous les inline / inline-block */
}

/* === Hover PC === */
@media (min-width: 769px) {
  .pack-card-about:hover .pack-front-about {
    opacity: 0;
    pointer-events: none; /* Ajouté pour laisser passer le clic */
  }
  .pack-card-about:hover .pack-back-about {
    opacity: 1;
    pointer-events: auto;
  }
}


/* === Mobile === */
@media (max-width: 768px) {
  .packs-wrapper-about {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .pack-card-about {
    flex: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    aspect-ratio: unset;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
  }

  .pack-front-about,
  .pack-back-about {
    width: 100%;
    padding: 15px;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
  }

  /* Face avant toujours visible par défaut */
  .pack-front-about {
    opacity: 1;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }

  /* Face arrière cachée par défaut */
  .pack-back-about {
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  /* Quand on clique : active */
  .pack-card-about.active .pack-front-about {
    opacity: 0;
    pointer-events: none;
  }

  .pack-card-about.active .pack-back-about {
    opacity: 1;
    pointer-events: auto;
  }

  /* Image et texte adaptatifs */
  .pack-front-about img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
  }
}

/* -----------------------------------------------------*/
/* prestations justine*/

  .partenaire-fleurs {
    border: 2px solid #E5B7C6;
    background-color: #fcf4f4;
    padding: 20px;
    margin-top: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    max-width: 80%;
    margin: auto;
  }
  
  .partenaire-fleurs p {
    font-size: 1.1em;
    color: #A14F63;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .partenaire-fleurs img {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .partenaire-fleurs a:hover img {
    transform: scale(1.05);
  }

  .partenaire-fleurs img  {
    background-color: #222222;
    padding: 10px 2px 10px 2px    ;
    border-radius: 10px;
  }

  /* -----------------------------------------------------*/
  /* Service */


  .service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 50px 0px !important;
  padding-bottom: 60px;
  border-bottom: 2px solid rgba(201, 110, 134, 0.585); /* fine ligne rose translucide */
  background-color: #a14f6331;
  border-radius: 20px;

  
  }
  

.service:last-of-type {
  border-bottom: none; /* pas de ligne après le dernier bloc */
}
  
  .service-img img {
    width: 100%;
    max-width: 500px;
  
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     border-style: solid;      /* ou dashed, dotted, etc. */
  border-width: 2px;
  border-color: #c96e86;    /* ton rose */
  box-shadow:  0px 0px 20px #8d475a;
   margin: auto;
   margin-left:  20px !important;
   margin-bottom: 0 !important;

   
  }
  
  .service-description {
    max-width: 600px;
    text-align: left;
  }
  
  .service-description h3 {
    font-size: 2rem;
    color: #b08567;
    
    font-family: 'Playfair Display', serif;
  }
.service-description h2 {
    background: none;
    box-shadow: none;
    text-transform: uppercase;
    margin-top: 0;
  }
  
  .service-description p {
    font-size: 1.2rem;
    color: #000000;
    margin: auto;
    text-align: justify;
    padding-left: 20px;
    padding-right: 20px;
   
    background-color: rgba(255, 255, 255, 0.621);
    border-radius: 20px;
    box-shadow: 0px 4px 8px black;
    font-family: 'Montserrat', sans-serif !important;

  }
.orga-mariage {
  font-size: 1.2rem !important;
  margin: 20px !important;
  font-weight: 300;

}
.orga-mariage strong {
    display: inline-block;
    margin-bottom: 6px;
}
  @media (max-width: 768px) {
      .service {
  margin: 10px 5px;
  padding-bottom: 20px;
   
  }

  .service h2 a {
    font-size: 1rem;
  }

  
  .service-description p {
    font-size: 1rem;
  
  }
.orga-mariage {
  font-size: 1rem !important;
}


  }
  
  /* Table des tarifs */
.pricing table {
  width: 90%;
  max-width: 1000px;   /* limite la largeur sur grand écran */
  margin: 0 auto;      /* centre le tableau dans son conteneur */
  border-collapse: collapse;
}

table, th, td {
  border: 1px solid #ddd;
  text-align: center;
}

th, td {
  padding: 12px 10px;  /* padding un peu plus confortable */
  font-size: 1.1rem;
}

th {
  background-color: #f8f5f0;
  color: #c96e86;
}

td {
  background-color: #fff;
  color: #c96e86;
}

  /* Responsive */
  @media (max-width: 768px) {
    .service {
      flex-direction: column;
      text-align: center;
    }
  
    .service-img img {
      width: 90%;
      max-width: 100%;
      margin: 20px !important;
      margin-bottom: 0;
    }
  
    .pricing table {
      font-size: 0.9rem;
    }
    .links-container1 {
    padding:   0;
  }


}

  
  

/* Sections */
section {
    padding: 20px 0;
}

section .container {
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
    
}


section .container p {
  text-align: left;
  font-size: 1..3rem !important;
  font-family: "Caveat", cursive;
  background-color: #ffffffa4;
  padding: 5px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
 
  text-align: justify;



}

.container  .text-about {
  font-size: 2rem;
  font-family: "Caveat", cursive;
  background: none;
  text-align: justify;
}

.about-services .text-about {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  text-align: justify;

}




@media (max-width: 768px) {

  section .container p {
 
  font-size: 1.1rem !important;


}

.container .text-about {
  font-size: 1.5rem !important;
}

ul {
    list-style: none;
    padding-left: 5px;
    margin: auto;
}

ul li {
    font-size: 1.2rem;
    margin-bottom: 8px;
   
}



}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer p {
    font-size: 1rem;
}

/* -----------------------------------------------------*/

  /* Style général pour la page contact*/
.contact {
    padding: 50px 20px;
    background-color: #f8f5f0;
    text-align: center;
  }
  
  .contact h2 {
    font-size: 2.5rem;
    color: #c96e86;
    margin-bottom: 20px;
    
  }
  
  .contact p {
    font-size: 1.1rem;
    color: #5a4b46;
    max-width: 800px;
    margin: auto;
    margin-bottom: 30px;
    text-align: center;
  }
  
  /* Formulaire de contact */
  form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
  
  .form-group {
    margin-bottom: 20px;
    text-align: left;
  }
  
  label {
    font-weight: bold;
    color: #5a4b46;
  }
  
  input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    margin-top: 5px;
  }
  
  textarea {
    resize: vertical;
  }
  
  button.btn {
    padding: 12px 25px;
    background-color: #c96e86;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button.btn:hover {
    background-color: #b08567;
  }
  
  footer {
    background-color: #f3eae7;
    text-align: center;
    padding: 20px;
    color: #947b6c;
    font-size: 0.9rem;
    margin-top: 40px;
  }


  /* -----------------------------------------------------*/

  /* page team building on-------*/
  .teambuilding-block  {
    padding: 20px 0;
    text-align: center;

  }
  

  .teambuilding-block .flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .teambuilding-block.alt .text {
    order: 2;
  }
  
  .teambuilding-block.alt .image {
    order: 1;
  }
  
  .teambuilding-block .text, .teambuilding-block .image {
    flex: 1 1 45%;
  }
  
  .teambuilding-block .image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .teambuilding-intro {
    background-color: #f8f8f8;
    padding: 60px 0;
    text-align: center;
  }
  
  .teambuilding-intro h2 {
    margin-bottom: 20px;
    font-size: 2em;
  }
  

  .teambuilding-cta {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
    margin-top: 40px;
  }
  
  .teambuilding-cta h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .teambuilding-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .btn-contact {
    display: inline-block;
    padding: 12px 25px;
    background-color: #caeaf0;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .btn-contact:hover {
    background-color: #a678ad;
  }

/* page team building video on-------*/
.teambuilding-intro {
  background-color: #caeaf0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;  /* Laisse la hauteur s'ajuster en fonction du contenu */
}

.intro-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);  /* Fond semi-transparent */
  border-radius: 10px;
  color: white;
  text-align: center;
  overflow: hidden;
  max-height: 100%;  /* Assure que le contenu prend toute la hauteur disponible */
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.7;
}

.intro-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.intro-content p {
  font-size: 20px;
}
/* page team building video off------*/

/* inversion texte image organisation en responsive on */

@media (max-width: 768px) {
  .teambuilding-block .flex {
    flex-direction: column; /* Les éléments seront empilés verticalement */
    text-align: center; /* Centrer le texte */
  }

  .teambuilding-block .image img {
    width: 80%; /* Réduire la taille de l'image pour les petits écrans */
    margin: 20px auto; /* Ajouter un peu d'espace autour de l'image */
  }

  .teambuilding-block.alt .text {
    order: 1; /* Le texte viendra en premier */
  }

  .teambuilding-block.alt .image {
    order: 2; /* L'image viendra ensuite */
  }
  
  /* creation padding lef right sur video pour 768px */
  .teambuilding-intro {
    padding-left: 20px;
    padding-right: 20px;
    background-color: #caeaf0;
    
  }
}

/* inversion texte image organisation en responsive off */

/* page team building off-------*/

/* ----- Styles pour la page Événements ----- */

.event-block {
  padding: 20px 0;
  text-align: center;
}

.event-block .flex {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  box-shadow: 0 0  40px rgba(0, 0, 0, 0.527);
  border-radius: 20px;
}

.event-block.alt .text {
  order: 2;
}

.event-block.alt .image {
  order: 1;
}

.event-block .text,
.event-block .image {
  flex: 1 1 45%;
  overflow: hidden;
}

.event-block .image img {
  width: 100%;
  max-width: 90%;
  border-radius: 20px;
     border-color: #c96e86;
    box-shadow: 0px 0px 20px #8d475a;
  max-height: 500px;
  margin: 20px;
   transition: transform 0.4s ease;
}
.event-block .image:hover img {
    transform: scale(1.03);
}


.event-block .text p  { 
  font-size: 1rem;
  text-align: justify;
  padding: 20px;
  box-shadow: 0px 4px 8px black;
  margin:  20px 20px 20px 20px;
}




@media (max-width: 768px) {

.event-block .text p  { 

  margin: 10px;
}

  }

.event-block .text h2 {
  font-size: 1.8rem;
}
/* Intro vidéo ou image pour la page événements */
.event-intro {
  background-color: #f1f1f1;
  background: url(photos/backnaturpays.png);
      background-position: 20% 90% !important;
    background-size: cover !important;
  
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}


.event-intro .intro-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  color: white;
  text-align: center;
}

.event-intro .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  object-fit: cover;
  z-index: -1;
  opacity: 1;
}

.event-intro h2 {
  font-size: 36px;
  margin-bottom: 20px;
  
}

.event-intro p {
  font-size: 20px;
  color: rgb(112, 1, 64);
}

/* CTA */
.event-cta {
  background-color: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
  margin-top: 40px;
}

.event-cta h3 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #333;
}

.event-cta .container  p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
  box-shadow: none;
}


/* responsive tarifs de location   table, th, td  */

@media (max-width: 768px) {

  table, th, td  {
    font-size: 0.8rem;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .event-block .flex {
    flex-direction: column;
    text-align: center;
  }

  .event-block .image img {
    width: 90%;
    margin: 20px auto;
  }

  .event-block.alt .text {
    order: 1;
  }

  .event-block.alt .image {
    order: 2;
  }

  .event-intro {
    padding-left: 20px;
    padding-right: 20px;
  }




}
/* ----- Fin styles événements ----- */
  /* -----------------------------------------------------*/

/* page mariage on------------------------------------------------------*/
.presentation {
  position: relative;
  width: 90%;
  max-width: 1200px;      /* limite la largeur sur grand écran */
  margin: auto;            /* centre le conteneur */
  padding: 0 20px;         /* espace à gauche et à droite pour mobile */
  box-sizing: border-box;  /* inclut le padding dans la largeur */
  margin-top: 20px;
  margin-bottom: 20px;
 

 

  
}
.presentation .container p {
  display: block;
  max-width: 10000px;       /* limite la largeur pour que la justification fonctionne */
  margin: 0 auto 20px auto; /* centre le texte horizontalement */
  color: #381628;
  text-justify: inter-word;
  line-height: 1.5;
  font-size: 1.5rem;
    font-family: "Caveat", cursive;
  text-align: center;      /* texte justifié */
  margin-bottom: 20px;

}



.background-video {
  position: absolute;
  border-radius: 30px;
  box-shadow: 0 0px 30px rgb(0, 0, 0);
 

top: 0;
left: 0;
 margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover; /* L'image de la vidéo couvrira tout l'espace sans déformer */
  z-index: -0; /* Met la vidéo derrière le contenu */
}

.presentation .container {
  position: relative;
  z-index: 1; /* Assure que le contenu est au-dessus de la vidéo */
  color: white; /* Change la couleur du texte pour qu'il soit visible sur la vidéo */
  padding: 10px;
  text-align: justify;
  width: 100%;
  
  
}

@media (max-width: 700px) {

.presentation {
  position: relative;
  width: 95%;
   box-shadow: none;
}


.presentation h2 {
font-size: 2.2rem;
}
.presentation p {
  font-size: 1rem;   
 
}
.presentation .container p {
   color: #000000;
  line-height: 1.1;
  font-size: 1.3rem;
  margin: 0;
 text-align: justify;

}
.presentation .container  {
 
 max-width: 100%;
 padding: 0;
 margin: 0;
 height: a

;
 

  
}


h2 {
    font-size: 0.2rem;

}



}

/* page mariage off---------------------------------------------*/


/*page gallery on */
/* === Galerie === */
.gallery-page {
  padding: 10px 1%;
  background-color: #fffdfc;
}

.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #c96e86;
  text-align: center;
  margin-bottom: 10px;
}

.gallery-section {
  margin-bottom: 10px;
  background-image: url(photos/ai-generated-8669639_1920.png) ;
   background-size: cover; 
    background-position: center;   /* Centrée */
   
}

.gallery-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #5a4b46;
  text-align: center;
  margin-bottom: 25px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.gallery-item {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox .close:hover {
  color: #c96e86;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 2.5rem;
  }

  .gallery-section h3 {
    font-size: 1.6rem;
  }
}


/* === Slider Galerie === */
.gallery-wrapper {
  position: relative;
  overflow: hidden;
}

.gallery-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 15px;
  padding: 10px;
  scrollbar-width: none; /* masque la barre sur Firefox */
}

.gallery-slider::-webkit-scrollbar {
  display: none; /* masque la barre sur Chrome/Safari */
}

.gallery-item {
  flex: 0 0 auto;
  width: 320px;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Flèches navigation */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  color: #c96e86;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: background 0.3s, transform 0.2s;
  z-index: 5;
}

.slide-btn:hover {
  background-color: #c96e86;
  color: white;
  transform: scale(1.1) translateY(-50%);
}

.slide-btn.left { left: 5px; }
.slide-btn.right { right: 5px; }

/* === Effets d’apparition et animation moderne === */

/* Apparition fluide des sections */
.gallery-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.gallery-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation progressive des images */
.gallery-item {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: all 0.6s ease;
}

.gallery-item.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Auto-slide fluide */
.gallery-slider {
  scroll-snap-type: x mandatory;
}

.gallery-item {
  scroll-snap-align: start;
}

/* Pause du défilement auto au survol */
.gallery-wrapper:hover {
  animation-play-state: paused;
}

/* Optionnel : effet glow subtil sur l’image survolée */
.gallery-item:hover {
  box-shadow: 0 6px 25px rgba(201, 110, 134, 0.4);
  transform: scale(1.06);
}



/* page galery off*/

/***** boutons call et mail sur mobile *****/
/* Affichage uniquement sur mobile */
@media (max-width: 768px) {
  .mobile-contact-buttons {
    position: fixed;
    bottom: 50px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
  }

  .contact-btn {
    width: 50px;
    height: 50px;
    background-color: #8a4357;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-decoration: none;
    font-size: 1.3rem;
    transition: transform 0.2s, background-color 0.2s;
  }

  .contact-btn:hover {
    background-color: #c489a3;
    transform: scale(1.1);
  }
}






/* Style pour les icônes des réseaux sociaux */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px; /* Espacement entre les icônes */
  margin-top: 20px;
}

.social-links img {
  width: 40px;  /* Ajuste la largeur selon tes besoins */
  height: 40px; /* Ajuste la hauteur pour conserver les proportions */
  transition: transform 0.3s ease-in-out; /* Effet au survol */
}

.social-links img:hover {
  transform: scale(1.1); /* Agrandir l'icône au survol */
}
/* -----------------------------------------------------*/

  /* Burger par défaut : caché sur desktop */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  
  .burger span {
    height: 3px;
    width: 25px;
    background-color: #5a4b46;
    border-radius: 5px;
    transition: 0.3s;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;               /* sous la navbar */
    right: -100%;             /* caché hors écran */
    width: 60%;
    height: auto;
    flex-direction: column;
    background-color: #eeeeeb;
    padding-top: 30px;
    gap: 20px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    z-index: 1000;
    padding-bottom: 30px;
    border-radius: 20px;
  }

/* Menu ouvert */
.nav-links.active {
    right: 50%;            /* glisse jusqu’au centre de la page */
    transform: translateX(50%); /* ajuste pour centrer complètement le menu */
}
  .nav-links li {
    text-align: center;
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
  }

  .burger span {
    display: block;
    height: 3px;
    background: #5a4b46;
    border-radius: 2px;
  }
}


/* --- POPUP PROMO --- */
.popuppromo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none; /* s'affiche via JS */
  justify-content: center;
  align-items: center;
  z-index: 9999; /* doit être au-dessus de tout */
}

.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  position: relative;
  text-align: center;
}
.popup-content h2 {
  margin-top: 10px;
  font-size: 1.4rem;
}

.popup-content p {
  font-size: 1rem;
  margin: 10px 0 15px;
}

.promo-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.promo-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff4081;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.promo-btn:hover {
  background-color: #e63772;
}

.close-popup {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 34px;
  cursor: pointer;
  color: red;       /* croix rouge */
  font-weight: bold; /* un peu plus visible */
  z-index: 10;      /* reste au-dessus du contenu */
}
/* ✅ S'affiche uniquement sur téléphones */
@media (max-width: 768px) {
  .popuppromo {
    display: flex;
  }
}
.promos-section {
  display: flex;
  justify-content: space-between;
  gap: 20px; /* espace entre les cards */
  max-width: 1200px;
  margin: 40px auto;
  flex-wrap: wrap; /* pour le responsive */
}

.promo-card {
  flex: 1 1 48%; /* prend environ la moitié de l’espace sur desktop */
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

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

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

.promo-text {
  padding: 15px;
  font-size: 1.1rem;
  color: #333;
}

/* Responsive : empile les cards sur mobile */
@media (max-width: 768px) {
  .promo-card {
    flex: 1 1 100%;
    margin: 10px;
  }
}
/**** gestion cases du formuliare */
.check-line {
  display: flex;
  flex-direction: row;
  align-items: center !important;
  gap: 12px;
  line-height: 1.2 !important;
}

.check-line span {
  display: inline-block;
  padding: 0;
  margin: 0;
  line-height: 1.2 !important;
}

.check-line input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
  vertical-align: middle !important;
}
.checkbox-list * {
  line-height: 1.2 !important;
  padding-top: 10px;
}