 .entete {
   font-family: Arial, Helvetica, sans-serif;
   font-weight: bold;
   position: relative;
   min-height: 50vh;
   height: auto;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;
   color: white;
   z-index: 1;
 }

 .entete::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-image: url('../img/entete_2.jpg');
   background-size: cover;
   background-position: center;
   opacity: 0.75;
   /* Opacité du background seulement */
   z-index: -1;
   /* Derrière le contenu */
 }


 .logo-karellis {
   position: absolute;
   top: 20px;
   right: 40px;
   width: 150px;
 }


 .entete h1 {

   font-size: 60px;
   font-weight: 900;
   margin: 0;
   color: #12086F;
   /* bleu foncé */
   -webkit-text-stroke: 2px white;
   z-index: 1;
 }

 .entete p {
   font-size: 22px;
   font-weight: 500;
   margin: 10px 0;
   color: #12086F;
   margin-top: 80px
 }

 .presentation {
   background-color: #12086F;
   min-height: 50vh;
   height: auto;
   display: flex;
   flex-direction: column;
   justify-content: center;
   text-align: center;
   color: white;
   align-items: center
 }

 .presentation p {
   color: white;
   font-size: 30px;

   margin: 80px;
   font-family: "Comfortaa", sans-serif;
 }



 .acours {
   min-height: 50vh;
   height: auto;
   background: white;
   text-align: justify;
   display: flex;
   justify-content: center;
   flex-direction: column;
   align-items: center;
 }

 h2 {
   font-family: "Comfortaa", sans-serif;
   color: #12086F;
   margin-bottom: 20px;
   font-size: 30px;
 }

 .acours p {
   color: #12086F;
   font-size: 20px;
   font-weight: bold;
   max-width: 600px;
   margin: 0 auto 30px auto;
   line-height: 1.5;
   font-family: Arial, Helvetica, sans-serif;
 }

 .bouton {
   background-color: #12086F;
   color: white;
   padding: 10px 60px;
   text-decoration: none;
   border-radius: 20px;
   font-weight: bold;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
   font-family: 'Comfortaa', sans-serif;

 }

 .bouton:hover {
   background-color: white;
   border: 2px solid #12086F;
   color: #12086F;
   transform: translateY(-3px);
 }

 .bouton:active {
   transform: translateY(0px);
 }

 .photoright {
   width: 250px;
   position: absolute;

   right: 90px;
 }

 .photoleft {
   width: 250px;
   position: absolute;

   left: 90px;
 }

 .hidden {
   display: none;
 }

 hr {
   height: 2px;
   background-color: #12086F;
   margin-left: 50px;
   margin-right: 50px;
   margin-bottom: 20px;
   margin-top: 0;
 }

 .bandau-avis {
   background-color: white;
   height: auto;
   text-align: justify;
   display: flex;
   flex-direction: column;
   align-items: center;
 }

 .bandau-avis>h2 {
   font-family: "Comfortaa", sans-serif;
   color: #12086F;
   margin-bottom: 20px;
   font-size: 30px;
 }

 .bandau-avis>a {
   background-color: #12086F;
   color: white;
   padding: 10px 60px;
   text-decoration: none;
   border-radius: 20px;
   font-weight: bold;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
   margin-bottom: 30px;
   font-family: "Comfortaa", sans-serif;
 }

 .bandau-avis>a:hover {
   background-color: white;
   border: 2px solid #12086F;
   color: #12086F;
   transform: translateY(-3px);
 }

 .bandau-avis>a:active {
   transform: translateY(0px);
 }

 .quelques_avis {
   display: flex;
   justify-content: space-evenly;
 }

 .boite_avis {
   flex: 1 1 25%;
   border: 1px solid #12086F;
   padding: 10px;
   text-align: center;
   border-radius: 10px;
   box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
   font-family: "Comfortaa", sans-serif;
   margin: 20px;
   overflow-wrap: break-word;
 }
 
 
 .gallerie_photos {
   display: flex;
   flex-direction: column;
   align-items: center;
   /* background-color: #12086F; */
 }
 /* .gallerie_photos>h2{
  color: white;
 } */


 .gallerie_photos>img {
   height: 50vh;
   margin-bottom: 20px;
 }

 .gallerie_photos>a {
   background-color: #12086F;
   color: white;
   padding: 10px 60px;
   text-decoration: none;
   border-radius: 20px;
   font-weight: bold;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
   margin-bottom: 30px;
   font-family: "Comfortaa", sans-serif;


 }

 .gallerie_photos>a:hover {
   background-color: white;/
   border: 2px solid #12086F;
   color: #12086F;
   transform: translateY(-3px);
 }

 .gallerie_photos>a:active {
   transform: translateY(0px);
 }
   /* Version mobile */
   @media (max-width: 1300px) {
     .photoleft {
       display: none;
     }

     .photoright {
       display: none;
     }
   }

   @media (max-width: 768px) {
     .logo-karellis {
       width: 75px;
     }

     .presentation p {
       font-size: 20px;
     }

     .quelques_avis {
   display: block;
   
 }
   }