/* START Base CSS */
:root {
  --black: #444;
  --border: 0.1rem solid rgba(0, 0, 0, 0.1);
  --border-hover: 0.1rem solid var(--black);
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  --maincolor1: #bf6f50;
  --maincolor2: #e9c1ae;
  --secondcolor1: #f3ece4;
  --secondcolor2: #ffffff;
  --thirdcolor: #63826d;
  --subtitlecolor: #3c4d41;

  --fondcolor1: #ffffff;
  --fondcolor2: #fef4d9;
  --fondcolor3: #3A4C59;
  --fondcolor4: #BA7F5D;

}

* {
  font-family: 'HK Grotesk', sans-serif;
  margin: 0;
  padding: 0;
  transition: all 0.2s linear;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

*::selection {
  background: var(--maincolor1);
  color: white;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  background-color: white;
}

h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;          /* Poids normal pour garder les lettres arrondies */
  letter-spacing: 0.5px;     /* Espace léger entre les lettres */
  -webkit-font-smoothing: antialiased; /* Lissage sur Chrome/Safari */
  -moz-osx-font-smoothing: grayscale;  /* Lissage sur Firefox/Mac */
  line-height: 1.2;          /* Ajuste la hauteur pour que ça respire */
}


#accompagnements {
  scroll-margin-top: 220px; /* par ex. ton header est plus haut ici */
}

#tarifs {
  scroll-margin-top: 80px;
}

#me-connaitre {
  scroll-margin-top: 80px;
}

#avis {
  scroll-margin-top: 60px;
}


.flux {
  margin-left: 40px;
  margin-right: 40px;
}

.center {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
/*END Base CSS*/

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

/*START Header*/

.titre-attente {
  color: var(--fondcolor3);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: var(--fondcolor3);
}

.logo {
  width: auto;
  height: 100px;
  padding-right: 30px;
  padding-left: 30px;
  margin-top: 4px;
}

.navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 90px;
  margin-left: auto;
  font-weight: 600;
  letter-spacing: 1px;

}

.navigation a:not(:last-child) {
  position: relative;
  font-size: 1.1em;
  color: var(--fondcolor1);
  font-weight: 500;
  margin-left: 40px;
}

.navigation a:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  bottom: -6px;
  background: var(--fondcolor1);
  border-radius: 5px;
  transform: scaleX(0);
  transition: transform 0.5s;
}

.navigation a:not(:last-child):hover::after {
  transform: scaleX(1);
}

.navigation .button {
  width: 250px;
  height: 50px;
  background: transparent;
  border: 2px solid var(--fondcolor1);
  outline: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1em;
  color: var(--fondcolor1);
  font-weight: 600;
  margin-left: 40px;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  line-height: 0; /*astuce de Benjamin Code pour parfaitement centrer le bouton (ne fonctionne pas ici) */
}

.navigation .button:hover {
  background-color: var(--fondcolor1);
  color: var(--fondcolor3);
}

.lang-switch {
    margin-left: 2rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.lang-switch a {
    text-decoration: none;
    color: inherit;
}

.lang-switch a:hover {
    text-decoration: underline;
}

/* Cas FR actif */
html.fr .lang-switch .fr {
    color: white;
    font-weight: bold;
}
html.fr .lang-switch .en {
    color: black;
}

/* Cas EN actif */
html.en .lang-switch .en {
    color: white;
    font-weight: bold;
}
html.en .lang-switch .fr {
    color: black;
}



/*START Responsive Header*/
@media screen and (max-width: 1179px) {
  .header {
    display: none;
  }
}
/*END Responsive Header*/
/*END Header*/

#preloader {
  background: var(--secondcolor1) /* url("loader.gif")  */ no-repeat center;
  background-size: 60px;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}

.preload-icon {
  height: 35px;
  margin-top: 100px;
}

.preload .title-square1 {
  position: fixed;
  margin-bottom: 200px;
}

.preload {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999; /* Assure que le pré-chargement est au-dessus du contenu */
}

.skill {
  width: 112px;
  height: 112px;
  position: relative;
  margin-top: 120px;
}

.outer {
  height: 112px;
  width: 112px;
  border-radius: 50%;
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
    -6px -6px 10px -1px rgba(255, 255, 255, 0.17);
  padding: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner {
  height: 84px;
  width: 84px;
  border-radius: 50%;
  box-shadow: inset 4px 4px 6px -1px rgba(0, 0, 0, 0.2),
    inset -4px -4px 6px -1px rgba(255, 255, 255, 0.7),
    -0.5px -0.5px 0px rgba(255, 255, 255, 1),
    0.5px 0.5px 0px rgba(0, 0, 0, 0.15), 0px 12px 10px -10px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}

#number {
  font-weight: 500;
  font-size: 1.1em;
  color: var(--subtitlecolor);
}

circle {
  fill: none;
  stroke: url(#GradientColor);
  stroke-width: 14px;
  stroke-dasharray: 472;
  stroke-dashoffset: 472;
  animation: anim 10s linear forwards;
}

svg {
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes anim {
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes anim {
  100% {
    stroke-dashoffset: 0;
  }
}

@-moz-keyframes anim {
  100% {
    stroke-dashoffset: 0;
  }
}

/* START Responsive LOADER*/
@media (max-width: 990px) {
  .skill {
    width: 56px;
    height: 56px;
    margin-top: 40px;
  }

  .outer {
    height: 56px;
    width: 56px;
    padding: 6px;
  }

  .inner {
    height: 42px;
    width: 42px;
  }

  #number {
    font-size: 0.7em;
  }

  circle {
    display: none;
  }
}

/* @media (max-width: 990px) {
  svg {
    width: 90px;
    height: 90px;
  }

  .inner {
    height: 67px;
    width: 67px;
  }

  .outer {
    height: 90px;
    width: 90px;
    padding: 11.2px;
  }

  circle {
    cx: 40.3;
    cy: 40.3;
    r: 35.3;
    stroke-width: 11.2px;
  }
} */

/*END Responsive LOADER */

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

/*START SECTION 1*/
.section1 {
  position: relative; /* nécessaire pour que z-index fonctionne */
  z-index: 10;  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh + 5px);
  gap: 30px;
}

.title-square1 {
  position: relative; /* nécessaire pour que z-index fonctionne */
  z-index: 10;  
  width: 90%;
  max-width: 800px;
  color: var(--fondcolor1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  margin-top: -100px;
}

.title-square1 h1 {
  font-size: clamp(2rem, 8vw, 8em); /* min 1.5rem, max 3em, proportionnelle à 5% de la largeur de l'écran */
  margin-bottom: clamp(0.5rem, 2vw, 1rem); /* margin responsive */
  font-weight: 500;
}

.title-square1 p {
  font-size: clamp(1rem, 5vw, 1.5em); /* min 1rem, max 1.5em, proportionnelle à 3% de la largeur de l'écran */
  font-weight: 500;
  margin-bottom: clamp(0.5rem, 2vw, 1rem); /* margin responsive */
}


.button1 {
  position: relative; /* nécessaire pour que z-index fonctionne */
  z-index: 10;  
  background-color: var(--fondcolor4);
  border: 2px solid var(--fondcolor1);
  opacity: 0.95;
  color: var(--fondcolor1);
  border-radius: 50px;
  white-space: nowrap;
  font-weight: 500;
  height: 47px;
  padding: 13px;
  font-size: 0.9em;
  line-height: 1.2;
}

.button1:hover {
  scale: 1.03;
  background-color: var(--fondcolor3);
  color: var(--fondcolor1);
  border: 2px solid var(--fondcolor1);
}

.video-container {
  background-color: var(--fondcolor4);
  width: 100%;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;                 /* derrière tout le contenu */
  width: 100%;
  height: calc(100vh + 5px);
  object-fit: cover;
  opacity: 0;                   /* toutes invisibles au départ */
  transition: opacity 0.5s;     /* transition fluide pour éviter flash blanc */
}

/* START Responsive SECTION 1*/
@media (min-width: 990px) {
  .title-square1 h1 {
    font-size: 3em;
    font-weight: 400;
  }

  .title-square1 p {
    font-size: 1.75em !important;
  }

  .button1 {
    height: 62px;
    padding: 17px;
    font-size: 1.3em;
  }
}


/*END Responsive SECTION 1 */

/*END SECTION 1*/

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

/*START SECTION 2*/
.title {
  color: var(--maincolor1);
  text-align: center;
  text-transform: uppercase;
  margin-top: 60px;
  font-size: 1.4em;
}

.logo-main {
  width: clamp(200px, 30vw, 300px); /* min 150px, max 300px, proportionnel à 20% de la largeur de l'écran */
  height: auto; 
  margin-top: 50px;
  margin-bottom: 50px;
}

.section2 {
  position: relative;
  text-align: justify;
  margin-bottom: 3vh;
}

.s2-haut {
  text-align: justify;
  margin-bottom: 2vh;
}

.s2-bas {
  text-align: justify;
  margin-bottom: 25vh;
}

.section2 h2 {
  color: var(--fondcolor3);       /* change ici pour la couleur que tu veux */
  white-space: nowrap;          /* force le texte à rester sur une seule ligne */
  overflow: visible;             /* empêche le débordement */
  text-overflow: ellipsis;      /* optionnel si le texte est trop long */
  font-size: clamp(1.5rem, 5vw, 3rem);  /* taille responsive : min 1.5rem, max 3rem, proportionnelle à l’écran */
  letter-spacing: clamp(0px, 0.1vw, 1px); /* espacement des lettres proportionnel à l’écran */
  word-spacing: clamp(0px, 0.5vw, 5px);   /* espacement des mots proportionnel */
  line-height: clamp(1rem, 2vw, 2.5rem);  /* espacement entre les lignes proportionnel */
  font-weight: 500;
  margin-bottom: 20px;
}

.section2 span {
  color: var(--maincolor1);
}

.section2 p {
  margin-top: 1vh;
  overflow: hidden;             /* empêche le débordement */
  text-overflow: ellipsis;      /* optionnel si le texte est trop long */
  font-size: clamp(1rem, 2.5vw, 2rem);  /* taille responsive : min 1.5rem, max 3rem, proportionnelle à l’écran */
  letter-spacing: clamp(0px, 0.1vw, 1px); /* espacement des lettres proportionnel à l’écran */
  /* word-spacing: clamp(0px, 0.1vw, 5px);   espacement des mots proportionnel */
  font-weight: 500;
  white-space: nowrap;
  color: var(--fondcolor3);
  line-height: clamp(1.5rem, 2vw, 2.5rem);  /* espacement entre les lignes proportionnel */
}

/*START Responsive SECTION 2*/
@media (min-width: 990px) {
}
/*END Responsive SECTION 2*/

/*END SECTION 2*/

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

/*START SECTION 3*/

.section3 {
  background-color: var(--fondcolor2);
  position: relative;
  min-height: 100px;
}

.colonne-placement {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;     /* permet aux colonnes de passer à la ligne sur mobile */
  gap: clamp(10px, 3vw, 60px);
  margin-top: -120px;  /* remonte les colonnes au-dessus de la section 3 */
  position: relative;
  z-index: 5;         /* au-dessus de la section 2 */
}

.section3 .colonne {
  width: clamp(330px, 75vw, 600px);
  height: 570px;
  background-color: var(--fondcolor3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  margin-bottom: 50px;
  padding-bottom: 30px;
}

.section3 .colonne:hover {
  box-shadow: 0px 65px 90px -55px var(--thirdcolor);
  transform: translateY(-10px);
}


.section3 .image {
  width: clamp(330px, 75vw, 600px);
  height: 270px;                /* conserve le ratio d'origine */
  object-fit: cover;           /* adapte le cadrage si tu fixes la hauteur */
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.elemcolonne {
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 0px;
  margin-bottom: 5px;
}

.titrecolonne {
  color: #ffffff;
  font-size: 1em;
  white-space: nowrap;
  text-transform: uppercase;
}

.soustitrecolonne {
  color: #ffffff;
  font-size: 1em;
  white-space: nowrap;
}

.textecolonne {
  margin: 0;           /* enlève les marges par défaut */
  padding: 0 10px;          /* enlève le padding si besoin */
  width: 100%;         /* prend toute la largeur de son conteneur */
}

.textecolonne p {
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
}

.justif {
  text-align: justify;
  font-size: 1em;
  line-height: 1.3em;
}

.text-center {
  text-align: center;
  font-size: 1em;
  line-height: 1.3em;
}

.section3 .bullet-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-left: 30px;
  font-size: 1em;
}

.section3 .bullet-text li {
  padding-bottom: 5px;
}

.bullet-colonne {
  margin-right: 40px;
  font-size: 1em;
}

.debord {
  margin-left: 20px;
}

/*START Responsive SECTION 3*/
@media (min-width: 990px) {
  .colonne-placement {
    display: flex;
    flex-direction: row;
  }

  .section3 .colonne {
  width: clamp(250px, 25vw, 375px);
  }

  .section3 .image {
  width: clamp(250px, 25vw, 375px);
  }
}
/*END Responsive SECTION 3*/
/*END SECTION 3*/

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

/*START SECTION 4*/

.section4 .container {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: justify;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  line-height: 1.5em;
  width: 90%;
  max-width: 1000px;
}

.section4 .logo-vague {
  width: 200px;
}

.adresse {
  color: var(--fondcolor4);
  display: flex;
  align-items: center; /* aligne verticalement au centre */
  flex-direction: column;
  margin-bottom: 10px;
  white-space: nowrap;
}

.adresse h1 {
  font-size: clamp(25px, 4vw, 36px);
  text-align: center;
}

.icone-lieu {
  font-size: clamp(45px, 3vw, 48px); /* agrandir l’icône */
  vertical-align: middle; /* alignement avec le texte */
}

.section4 .div-list {
  margin-bottom: 55px;
}

.section4 .bullet-text {
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.3em;
  color: var(--fondcolor3);
}

.section4 .bullet-text ul {
  list-style: none;  /* retire les puces par défaut */
  padding: 0;        /* retire le padding gauche par défaut */
  margin: 0;         /* retire le margin par défaut */
}

.section4 .bullet-text li {
  padding-bottom: 10px;
}

.section4 i.icone-list {
  font-size: clamp(20px, 2.5vw, 27px);
  color: var(--fondcolor3);
  padding-right: 10px;
}

.section4 p {
  line-height: 1.3em;
}


/*START Responsive SECTION 4*/
@media (min-width: 990px) {
  .section4 .container {
    width: 80%;
  }

  .section4 .div-list {
    display: flex;           /* met les enfants côte à côte */
    gap: 60px;               /* espace entre les deux colonnes */
    flex-wrap: wrap;         /* permet de passer à la ligne si écran trop petit */
  }
}
/*END Responsive SECTION 4*/

/*END SECTION 4*/

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

/*START SECTION 8*/

.tarifs-section {
  padding-bottom: 30px;
  background-color: #fef4d9;
}

.tarifs-container {
  gap: 20px;
  margin: 0 auto;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tarifs-photo img {
  width: 100%;
  max-width: 800px;
  object-fit: cover;
}

.tarifs-list {
  flex: 1; 
  display: flex;
  flex-direction: column;
  justify-content: center; 
  color: var(--fondcolor3);
  padding: 10px 30px;
}

.tarifs-list h1 {
  margin-bottom: 100px;
  text-transform: uppercase;
  font-size: 30px;
}

.tarifs-souspartie {
  display: flex;
  flex-direction: row; /* empile sous-titre, trait, liste */
  align-items: center;     /* centre horizontalement */
  margin-bottom: 30px;
}

.tarifs-souspartie > :first-child {
  margin-right: auto;        /* pousse tout le reste à droite */
}

.tarif-st {
  font-size: 1.2rem;
}

.trait-separation {
  background-color: var(--fondcolor3);
  width: 2px;           /* épaisseur du trait */
  border-radius: 1px;
  margin: 0 10px;        /* espace horizontal seulement */
  flex-grow: 0; 
  height: 60px;
  transform: scaleY(1) translateZ(0); /* combine les deux */
  backface-visibility: hidden;
  flex-shrink: 0;    
}

.tarifs-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 40vw;
}

.tarifs-list li {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  margin-top: 6px;
  font-size: 1.2rem;
}

.tarifs-list li span:first-child {
  white-space: nowrap;
}

.tarifs-list li span:nth-child(2) {
  flex: 1;              /* occupe l’espace restant */
  position: relative;    /* nécessaire pour le pseudo-élément */
  margin: 0 8px;
}

.tarifs-list li span:nth-child(2)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;       /* ajuste pour aligner à la ligne de base */
  top:0.3em;
  border-bottom: 1px dotted #aaa;
}

.tarifs-list li span:last-child {
  white-space: nowrap;
}

.button-container {
  display: flex;
  justify-content: center; /* centre horizontalement */
}

 .buttoncolonne {
  display: flex;
  text-align: center;
  align-items: center;  
  justify-content: center;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 1em;
  width: 230px;
  background-color: var(--fondcolor4);
  border: 2px solid var(--fondcolor1);
  opacity: 0.95;
  color: var(--fondcolor1);
}

.buttoncolonne:hover {
  scale: 1.03;
  background-color: var(--fondcolor3);
  color: var(--fondcolor1);
  border: 2px solid var(--fondcolor1);
} 


/*START Responsive SECTION 8*/
@media (min-width: 990px) {

  .tarifs-section {
    padding-top: 30px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .tarifs-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
  }

  .tarifs-photo {
    flex: 1; /* prend 1 portion */
  }

  .tarifs-photo img {
    width: 100%; /* occupe toute la largeur de sa div */
    height: auto;
  }

}

/*END Responsive SECTION 8*/
/*END SECTION 8*/


/*START SECTION 5*/

.section5bis {
    position: relative;
    background-color: #fef4e9; /* couleur de fond de la section */
    overflow: hidden;          /* évite que la vague dépasse */
}

/* Vague en haut */
.vague-haut {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}

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

/* Vague en bas */
.vague-bas {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}

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


.section5 {
  background-color: var(--fondcolor3);
  display: flex;
  justify-content: center;
  align-items: center;   
  padding: 0 60px;
  min-height: 70vh; /* garde une base minimale, mais grandit si besoin */
  height: auto; /* s'adapte au contenu */
}


.left1 {
  display: flex;
  justify-content: center;
  align-items: center;   /* pour centrer l'image */
  gap: 2rem;
  flex-grow: 1;
  height: 100%;
  padding: 40px;
}

.left1 img {
  height: 60vh;       /* l’image fera 80% de la section */
  width: auto;       /* garde les proportions */
  border-radius: 5px;
  transition: width 300ms ease;
  object-fit: contain;
}

.right {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 20px;
  text-align: justify;
  line-height: 1.5em;
  gap: 30px;
  color: #ffffff;
  padding: 50px;
  
}

.right h1 {
  color: var(--fondcolor2)
}


/*START Responsive SECTION 5*/
/* Attention ici c'est pour le téléphone (écran petit) donc l'inverse de d'habitude */
@media (max-width: 990px) {

.section5 {
  flex-direction: column;
  padding: 30px 30px;
}

.right {
  padding: 30px 0px;
}

.left1 {
  gap: 0rem;
  height: 100%;
}

}
/*END Responsive SECTION 5*/
/*END SECTION 5*/

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

/*START SECTION 6*/

.section6 .container {
  width: 80%;
  line-height: 1.5em;
  font-size: 1em;
  margin-bottom: 40px;
}

.section6 .container li {
  margin-bottom: 5px;
}

/*START Responsive SECTION 6*/
@media (min-width: 990px) {
}
/*END Responsive SECTION 6*/

.section6bis img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
}

@media (min-width: 990px) {
  .section6bis img {
  display: none;
}
}

/*END SECTION 6*/

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

/*START SECTION 7*/

.section7 {
  margin-left: 20px;
  margin-right: 20px;
}

.guillemets {
  width: 120px;
  height: auto;
  margin-bottom: 40px;
}

.section7 .container7 {
  margin-top: 30px;
  height: 100%;
  margin-bottom: 30px;
}
/* 
.swiper-slide {
  padding: 20px;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.reviews-slider .box {
  border: 3px solid var(--maincolor2);
  border-radius: 60px;
  padding: 2em;
  text-align: center;
  font-size: 1em;
  line-height: 1.3em;
}

.reviews-slider .box:hover {
  border: 3px solid var(--thirdcolor);
}

.reviews-slider .box h3 {
  color: var(--subtitlecolor);
  font-size: 1.3rem;
  padding-bottom: 1rem;
  line-height: 1em;
}

.reviews-slider .box p:not(:last-child) {
  padding-bottom: 1rem;
} */

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: var(--fondcolor2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 38px;
  border-radius: 5px;
  height: 40vh;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  width: 100%;         /* prend 100% de la largeur dispo */
  max-width: 500px;   /* limite la largeur sur grands écrans */
  margin: 0 auto;   
}

/* Flèches */
.swiper-button-next,
.swiper-button-prev {
  color: var(--fondcolor3); /* ta couleur */
  display: none;
}

/* Si tu veux les agrandir */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px; /* taille de l'icône */
}


/* Couleur des points */
.swiper-pagination-bullet {
  background: var(--fondcolor3); /* couleur par défaut */
  opacity: 0.8; /* sinon ils sont un peu transparents */
}

/* Couleur du point actif */
.swiper-pagination-bullet-active {
  background: var(--fondcolor4); /* couleur active */
}

.swiper-slide h3 {
  color: var(--subtitlecolor);
  font-size: 1.3rem;
  margin-top: 10px;
  line-height: 1em;
}

.swiper-slide p {
  color: var(--subtitlecolor);
  line-height: 1.3em;
}

.down-avis {
  font-size: 1rem;
  color: var(--maincolor1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hashtag {
  font-size: 1rem;
}

/*START Responsive SECTION 7*/
@media (min-width: 800px) {
  .swiper-button-next,
.swiper-button-prev {
  display: block;
}

.swiper-slide {
  height: 30vh;
}

}
/*END Responsive SECTION 7*/
/*END SECTION 7*/

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



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

/*START SECTION 9*/
.section9 h1 {
  margin-top: 90px;
}

.section9 .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.left9 {
  width: 100%;
  height: 550px;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left9 iframe {
  width: 100%;
  height: 100%;
  /* transform: scale(1.2);
  transform-origin: 0 0; */
}

.maps {
  width: 100%;
  height: 100%;
}

.right9 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 60px;
}

.right9 h2 {
  font-size: 1.5em;
  margin-top: 30px;
  color: var(--subtitlecolor);
}

.right9 a {
  font-size: 1em;
  text-decoration: underline;
}

.right9 .bullet-text {
  font-size: 1em;
}

.right9 li {
  padding: 2px;
  margin-left: 30px;
}

.right9bis {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--maincolor1);
  font-weight: bold;
  font-size: 1.2em;
  gap: 20px;
  text-align: center;
}

.urdv {
  margin-top: 0px;
  text-transform: uppercase;
  text-align: center;
}

/*START Responsive SECTION 9*/
@media (min-width: 990px) {
  .section9 h1 {
    margin-top: 50px;
  }

  .section9 .container {
    flex-direction: row;
    width: 100%;
    margin-bottom: 40px;
  }

  .left9 {
    width: 80%;
    height: 600px;
    margin-top: 10px;
    margin-left: 60px;
  }

  .left9 iframe {
    height: 100%;
  }

  .right9 {
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
    text-align: justify;
    font-size: 1em;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .right9 h2 {
    font-size: 1.5em;
    margin-top: 20px;
  }

  .right9 a {
    font-size: 1em;
    margin-left: 10px;
  }

  .right9 li {
    margin-left: 50px;
  }

  .urdv {
    margin-top: 50px;
  }
}
/*END Responsive SECTION 9*/
/*END SECTION 9*/

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

/*START SECTION 9bis*/

.instafeed {
    display: flex;
    margin-bottom: 60px;
    flex-direction: row;
}

.instabloc {
    margin-left: 10px;
    margin-right: 10px;
}

/*START Responsive SECTION 9bis*/
@media (max-width: 1090px) {
    .instaresponsive {
      display: none;
    }
  }
  /*END Responsive SECTION 9bis*/
/*END SECTION 9bis*/


/*START SECTION 10*/
.section10 {
  background-image: url("cartecadeaufond.png");
  background-size: cover;
  background-position: 30%;
  height: 350px;
  display: flex;
  justify-content: center;
  align-content: center;
}

.section10 .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
  background-color: white;
  opacity: 0.8;
  gap: 20px;
  padding: 20px;
  width: 80%;
  height: 60%;
  margin-top: 15%;
  font-size: 1em;
}

.section10 .subtitle10 {
  color: var(--maincolor1);
  text-align: center;
  font-size: 1.5em;
}

/*START Responsive SECTION 10*/
@media (min-width: 990px) {
  .section10 {
    margin-top: 30px;
    height: 400px;
  }

  .section10 .subtitle10 {
    font-size: 1.4em;
  }

  .section10 .container {
    font-size: 1.2em;
    width: 50%;
    height: 60%;
    margin-top: 6%;
  }
}
/*END Responsive SECTION 10*/
/*END SECTION 10*/

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

/*START SECTION 11*/

.pictoinfo {
  margin-top: 60px;
  margin-bottom: 20px;
  width: 35px;
  height: auto;
}

.section11 .container11 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  margin-bottom: 50px;
  gap: 20px;
  font-size: 1em;
  text-align: justify;
  max-width: 1000px;
}

.container11 a {
  text-decoration: underline;
}

.section11 .container11 p:last-child {
  font-style: italic;
  font-size: 1em;
}

/*START Responsive SECTION 11*/
@media (min-width: 990px) {
  .section11 .container11 {
    width: 80%;
  }
}
/*END Responsive SECTION 11*/

/*END SECTION 11*/

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

/*START FOOTER*/

.site-footer {
  background-color: var(--fondcolor3);
  color: #ffffff;
  padding: 20px 60px 20px 60px;
  font-size: 1em;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* pour mobile */
}

.footer-left .footer-logo {
  height: 80px;
  width: auto;
}

.footer-center {
  text-align: center;
  flex-grow: 1;       /* prend l’espace central */
}

.footer-center .footer-email {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
}

.footer-right {
  display: flex;
  gap: 20px;
}

.footer-right .footer-link {
  text-decoration: none;
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  margin-top: 10px;
  font-size: 0.9em;
  padding-right: 90px;
}



/*START Responsive FOOTER*/
@media (max-width: 990px) {

.site-footer {
  padding: 10px 60px 40px 60px;
}


.footer-row {
  flex-direction: column;
  justify-content: center;
  padding: 10px 0px 20px 0px;
}

.footer-center{
  padding: 10px 0px 10px 0px;
}

.footer-bottom {
  padding-right: 0px;
}

}
/*END Responsive FOOTER*/
/*END FOOTER*/

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


.lang-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--fondcolor4);
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-size: 1rem;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

.lang-banner p {
    margin: 0;
}

.banner-buttons {
    display: flex;
    gap: 0.5rem;
}

.lang-banner button {
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

#yes-en {
    background: var(--fondcolor3);
    color: #fff;
}

#no-en {
    background: #eee;
    color: #000;
}

.hidden {
    display: none;
}
