@font-face {
     font-family: 'Montserrat';
    /* Nom personnalisé pour votre police */
     src: url('/assets/fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    /* Chemin vers le fichier .ttf */
     font-weight: 500;
    /* Poids par défaut */
     font-style: normal;
    /* Style par défaut */
     font-display: swap;
}
 @font-face {
     font-family: 'Flottflott';
    /* Nom personnalisé pour votre police */
     src: url('/assets/fonts/Flottflott.ttf') format('truetype');
    /* Chemin vers le fichier .ttf */
     font-display: swap;
}
 body {
     font-family: 'Montserrat', sans-serif;
     background-color: #f8f7fc;
     color: #333;
     margin: 0;
}
 .banniere-ouverture {
     background-color: #1faa00;
    /* Rouge vif */
     color: white;
     text-align: center;
     padding: 8px 12px;
     font-size: 1rem;
     font-weight: bold;
     position: relative;
     z-index: 1000;
}
 .banniere-ouverture p {
     margin: 0;
     text-align: center;
}
/* Header avec fond blanc */
 header {
     background-color: white;
     padding: 10px 0;
     border-bottom: 1px solid #ddd;
     width: 100%;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
 .header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
}
 .header-logo img {
     height: 100px;
     width: auto;
}
 .header-buttons {
     display: flex;
     gap: 10px;
}
 .header-buttons button {
     padding: 14px 20px;
     background-color: #f8f7fc;
     color: black;
     border: none;
     cursor: pointer;
     font-size: 1.1rem;
     font-weight: 500;
     border-radius: 5px;
     transition: background-color 0.3s ease;
     letter-spacing: 1px;
}
 .header-buttons button:hover {
     background-color: #E3E3F0;
}
 .header-buttons .prestations-button {
     background-color: #E3E3F0;
     color: black;
}
 .header-buttons .prestations-button:hover {
     background-color: #C8C8D3;
}
 .header-buttons .contact-button {
     background-color: black;
     color: white;
}
 .header-buttons .contact-button:hover {
     background-color: #4B4F59;
}
 @media (max-width: 1300px) {
     .header-container {
         max-width: 95%;
    }
}
/* Styles de base pour le menu hamburger et le menu déroulant */
 .hamburger-menu {
     display: none;
    /* Caché par défaut */
     font-size: 48px;
    /* Taille de l'icône */
     cursor: pointer;
     padding: 10px;
    /* Espace autour de l'icône */
     position: relative;
    /* Pour positionner les icônes */
}
 .hamburger-icon, .close-icon {
     transition: transform 0.3s ease, opacity 0.3s ease;
    /* Animation */
}
 .close-icon {
     position: absolute;
     font-size: 88px;
     top: -9px;
     left: 6px;
     opacity: 0;
    /* Caché par défaut */
     transform: rotate(0deg);
    /* Rotation initiale */
}
 .hamburger-icon {
     opacity: 1;
    /* Visible par défaut */
     transform: rotate(0deg);
    /* Rotation initiale */
}
/* Quand le menu est actif */
 .hamburger-menu.active .hamburger-icon {
     opacity: 0;
    /* Cacher l'icône hamburger */
     transform: rotate(90deg);
    /* Rotation */
}
 .hamburger-menu.active .close-icon {
     opacity: 1;
    /* Afficher l'icône de fermeture */
     transform: rotate(90deg);
    /* Rotation */
}
/* Afficher le menu hamburger sur les petits écrans */
 @media (max-width: 1050px) {
     .hamburger-menu {
         display: block;
        /* Afficher l'icône hamburger */
    }
     .header-logo img {
         height: 80px;
         width: auto;
    }
}
 .error-container {
     min-height: 400px;
     width: 100%;
     margin: 1em auto 0;
}
 .dropdown-menu {
     display: none;
    /* Caché par défaut */
     flex-direction: column;
     background-color: white;
     position: absolute;
     top: 160px;
    /* Ajustez en fonction de la hauteur de votre header */
     right: 0;
     width: 100%;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
     z-index: 1000;
}
 .dropdown-menu.active {
     display: flex;
    /* Afficher le menu déroulant quand il est actif */
}
 .dropdown-menu a {
     padding: 12px 20px;
     font-size: 1.2rem;
     text-decoration: none;
     color: black;
     border-bottom: 1px solid #ddd;
}
 .dropdown-menu a:hover {
     background-color: #f8f7fc;
}
 .close-menu {
     font-size: 72px;
     cursor: pointer;
     text-align: right;
     padding: 0px 30px;
     border-bottom: 1px solid #ddd;
}
 .close-menu:hover {
     background-color: #f8f7fc;
}
/* Afficher le menu hamburger et cacher les boutons sur les petits écrans */
 @media (max-width: 1050px) {
     .header-buttons {
         display: none;
        /* Cacher les boutons */
    }
     .hamburger-menu {
         display: block;
        /* Afficher l'icône hamburger */
    }
}

 @media (max-width: 400px) {
 .dropdown-menu {
     top: 170px;
    }
}


/* Fil d'Ariane */
 .ariane {
     max-width: 800px;
     margin: 10px auto -20px;
}
 .breadcrumb {
     padding: 1rem 0;
     font-size: 1em;
     color: #666;
}
 .breadcrumb a {
     color: #0066cc;
     text-decoration: none;
}
 .breadcrumb a:hover {
     text-decoration: underline;
}
 @media (max-width: 800px) {
     .ariane {
         max-width: 95%;
    }
}
/* --- COVER --- */
 .cover {
     position: relative;
     width: 100%;
     height: 50vh;
     min-height: 400px;
    /* Ajustez la hauteur si nécessaire */
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     overflow: hidden;
}
 .cover-image {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
    /* Assure que l'image couvre toute la zone */
     z-index: 1;
    /* Image en arrière-plan */
}
 .cover-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: #a7596c;
    /* Couleur de l'overlay */
     opacity: 0.5;
    /* Opacité de l'overlay */
     z-index: 2;
    /* Overlay au-dessus de l'image */
}
 .cover-content {
     position: relative;
     z-index: 3;
    /* Contenu au-dessus de l'overlay et de l'image */
     color: white;
     padding: 0 20px;
     text-align: center;
     max-width: 80%;
     margin: 0 auto;
}
 .cover-content h1 {
     font-family: "Flottflott";
     font-weight: normal;
     font-size: 8rem;
     margin: 20px 0px 0px;
}
 .cover-content h2 {
     font-size: 2.5rem;
     font-weight: normal;
}
 .offers {
     display: flex;
     justify-content: center;
     gap: 20px;
     padding: 40px 20px;
     max-width: 1200px;
     margin: 0 auto;
     background-color: transparent;
}
 .offer {
     text-align: center;
     flex: 1;
     max-width: 400px;
     display: flex;
     flex-direction: column;
     align-items: center;
}
 .offer img {
     width: auto;
     height: 100px;
     width: 100px;
}
 .offer h3 {
     font-size: 1.8rem;
     margin: 15px 0 15px;
     flex-grow: 0;
     height: 70px;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .offer p {
     font-size: 1.1rem;
     color: #555;
     flex-grow: 0;
     margin: 0;
     line-height: 1.4;
     font-weight: 500;
}
 .offer-text {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: flex-start;
}
 @media (max-width: 800px) {
     .offers {
         flex-direction: column;
         align-items: center;
         padding: 40px 20px 20px;
    }
     .offer {
         max-width: 100%;
         margin-bottom: 30px;
    }
     .cover-content h1 {
         font-size: 4.5rem;
         color: white;
         letter-spacing: 1px;
    }
     .cover-content h2 {
         font-size: 1.8rem;
    }

     .offer img {
         width: 80px;
         height: auto;
    }
     .offer h3 {
         height: auto;
         margin: 10px 0;
         font-size: 1.3rem;
    }
     .offer p {
         font-size: 0.9rem;
    }
}
 .offer2 img {
     max-width: 95%;
}
/* Effet NB avec couleurs au survol .offer2 img {
     max-width: 95%;
     filter: grayscale(100%);
     transition: filter 0.3s;
}
 .offer2 img:hover {
     filter: grayscale(0%);
}
 */
 @media (max-width: 1200px) {
     .offer2 img {
         max-width: 95%;
    }
}


/* Texte desktop (dans la bannière) */
.cover-text-desktop {
  display: block;
  margin-top: 15px;
  font-size: 1.1rem;
  text-align: center;
  color: white; /* si overlay foncé */
}

/* Texte mobile sous la bannière */
.cover-text-mobile {
  display: none; /* caché par défaut */
  padding: 15px;
  font-size: 1rem;
  text-align: center;
  color: #333;
}


@media screen and (max-width: 800px) {
  .cover-text-desktop {
    font-size: 0.9rem;
  }
}

/* Switch responsive 
@media screen and (max-width: 1100px) {
  .cover-text-desktop {
    display: none;
  }
  .cover-text-mobile {
    display: block;
  }
} */

.mini-offer{
  max-width: 920px;
  margin: 14px auto 18px auto;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  background: rgba(0,0,0,0.02);
  line-height: 1.35;
  font-size: 0.98rem;
}

.mini-offer__label{
  font-weight: 700;
}

.mini-offer__link{
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
}

/* Mobile : on évite que tout parte sur 4 lignes */
@media (max-width: 520px){
  .mini-offer{
    font-size: 0.95rem;
    margin: 0px 10px 50px 10px;
  }
}






/* Prestations index */
 .prestations {
     text-align: center;
     padding: 30px 20px;
     background-color: transparent;
     margin-bottom: 20px;
}
 .prestations-button {
     display: inline-block;
     padding: 20px 90px;
     background-color: black;
     color: white;
     font-size: 1.3rem;
     font-weight: 500;
     text-decoration: none;
     border-radius: 5px;
     transition: background-color 0.3s ease;
}
 .prestations-button:hover {
     background-color: #4E4E60;
}
 .presentation {
     padding: 50px 20px 0px;
     max-width: 1200px;
     margin: 0 auto;
     text-align: center;
     background-color: transparent;
}
 .presentation-container {
     display: flex;
     align-items: flex-start;
     justify-content: center;
     gap: 40px;
}
 .photo-container {
     width: 180px;
     height: 180px;
     min-width: 150px;
     min-height: 150px;
     border-radius: 50%;
     overflow: hidden;
     margin-top: 50px;
}
 .photo-round {
     width: 100%;
     height: 100%;
     object-fit: cover;
}
 .texte-container {
     max-width: 600px;
     text-align: left;
     gap: 5px;
     margin-bottom: 30px;
}
 .texte-container h2 {
     font-size: 2rem;
     margin: 0;
}
 .texte-container p {
     font-size: 1.15rem;
     font-weight: 500;
     color: #555;
}
 .social-buttons {
     display: flex;
     gap: 20px;
}
 .social-button {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 35px;
     height: 35px;
     background-color: black;
     color: white;
     font-size: 1.2rem;
     text-decoration: none;
     border-radius: 50%;
     transition: transform 0.3s ease, background-color 0.3s ease;
}
 .social-button img {
     width: 20px;
    /* Ajustez la taille du SVG */
     height: 20px;
     object-fit: contain;
    /* Ajuste l'image sans la déformer */
     filter: invert(1);
    /* Inverse les couleurs du SVG pour le rendre blanc */
}
 .social-button:hover {
     background-color: black;
     transform: scale(1.1);
}
 @media (max-width: 800px) {
     .presentation-container {
         flex-direction: column;
         align-items: center;
         gap: 20px;
    }
     .texte-container {
         text-align: center;
    }
     .photo-container {
         width: 120px;
         height: 120px;
         margin-top: 0;
    }
     .prestations-button {
         font-size: 1.2rem;
         margin: 0px;
         padding: 20px 80px;
    }
     .prestations {
         padding: 10px 20px;
    }
     .texte-container p {
         font-size: 1rem;
    }
}
 footer {
     background-color: white;
     padding: 10px 20px;
     border-top: 1px solid #ddd;
     text-align: center;
}
 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
}
 .footer-title {
     font-size: 1.2rem;
     color: #333333;
     font-weight: 600;
     margin-bottom: 30px;
}
 .footer-links {
     list-style: none;
     font-weight: 400;
     color: #333333;
     padding: 0;
     margin: 0 0 30px 0;
     display: flex;
     justify-content: center;
     gap: 25px;
     margin-bottom: 30px;
}
 .footer-links a {
     color: #333;
     font-size: 1rem;
     transition: color 0.3s ease;
}
 .footer-links a:hover {
     color: #0077cc;
}
 .social-buttons-footer {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-bottom: 30px;
}
 .social-button-footer {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 34px;
     height: 34px;
     background-color: black;
     color: white;
     font-size: 1.2rem;
     text-decoration: none;
     border-radius: 50%;
     transition: transform 0.3s ease, background-color 0.3s ease;
}
 .social-button-footer img {
     width: 22px;
    /* Ajustez la taille du SVG */
     height: 22px;
     object-fit: contain;
    /* Ajuste l'image sans la déformer */
     filter: invert(1);
    /* Inverse les couleurs du SVG pour le rendre blanc */
}
 .social-button-footer:hover {
     background-color: black;
     transform: scale(1.1);
}
 .footer-copyright {
     font-size: 0.8rem;
     color: #333333;
     font-weight: 300;
}
 @media (max-width: 500px) {
     .footer-title {
         font-size: 1.1rem;
         letter-spacing: 0.5px;
         margin-bottom: 20px;
    }
     .footer-links {
         margin-bottom: 30px;
    }
     .social-buttons-footer {
         margin-bottom: 30px;
    }
     .footer-copyright {
         font-size: 0.9rem;
    }
}
/* PRESTATIONS */
 .prestations-content {
     max-width: 800px;
     margin: 30px auto 10px;
}
 .prestations-details {
     max-width: 800px;
     margin: 0px auto 0px;
}
 .prestations-content h1 {
     font-size: 2rem;
     margin-bottom: 30px;
     color: black;
}
 .prestations-content h2 {
     font-size: 1.5rem;
}
 .prestations-content p {
     font-size: 1rem;
}
 .tableau-revision {
     overflow-x: auto;
     max-width: 700px;
     width: 95%;
     border-collapse: collapse;
     margin: 20px 0px 0px 10px;
}
 .tableau-revision th, .tableau-revision td {
     background-color: #fff;
     border: 1px solid #000;
     padding: 10px;
     vertical-align: top;
     text-align: left;
}
 .tableau-revision .service {
     text-align: left;
     font-weight: bold;
     margin-bottom: 4px;
}
 .tableau-revision .description {
     font-style: italic;
     font-size: 14px;
     text-align: left;
}
 .tableau-revision .prix {
     text-align: left;
     font-weight: bold;
     font-size: 16px;
     width: 80px;
     white-space: nowrap;
    /* Empêche le prix de passer à la ligne */
}
/* Bouton prestations */
/* Style pour le système de toggle */
 .toggle-checkbox {
     display: none;
}
 .toggle-container {
     margin: 20px 0;
}
 .toggle-button {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     cursor: pointer;
     background: none;
     border: none;
     padding: 10px;
     font-size: 1.1em;
     color: inherit;
    /* Utilise la couleur du texte parent */
}
 .toggle-button p {
     margin: 0px 0;
}
 .toggle-button p:hover {
     color: #272770;
     text-decoration: underline;
}
 .toggle-button .arrow {
     transition: transform 0.3s ease;
}
 .prestations-details {
     display: none;
     padding-top: 10px;
     animation: fadeIn 0.3s ease;
}
 .toggle-checkbox:checked ~ .prestations-details {
     display: block;
}
 .toggle-checkbox:checked + .toggle-button .arrow {
     transform: rotate(180deg);
}
 @keyframes fadeIn {
     from {
         opacity: 0;
    }
     to {
         opacity: 1;
    }
}
 @media (max-width: 1100px) {
    /* <---- Pour les tablettes*/
     .prestations-content, .prestations-details {
         max-width: 95%;
         margin: 0px auto 0px;
    }
     .tableau-revision {
         max-width: 700px;
         width: 100%;
    }
}
 @media (max-width: 800px) {
     .prestations-content h1 {
         font-size: 2rem;
    }
     .prestations-content p, .prestations-details p {
         font-size: 16px;
    }
     .tableau-revision {
         display: block;
    }
     .tableau-revision .prix, .tableau-revision .service .tableau-revision .prix2, .tableau-revision .service2 {
         font-size: 14px;
    }
     .tableau-revision td {
         font-size: 16px;
         align-items: left;
    }
     .tableau-revision .description {
         font-size: 12px;
    }
}
 @media (max-width: 500px) {
    /* <---- Pour les petits écrans*/
     .prestations-content h1 {
         font-size: 1.8rem;
    }
     .prestations-details p {
         font-size: 14px;
    }
     .tableau-revision {
         margin: 20px 0px 0px 0px;
    }
}
/* Contact */
 .contact-content {
     max-width: 800px;
     margin: 30px auto 50px;
}
 .contact {
     display: flex;
     flex-direction: column;
    /* Les éléments sont empilés verticalement */
}
 .type-contact {
     display: flex;
     align-items: center;
    /* Alignement vertical du logo et du texte */
     gap: 14px;
    /* Espace entre le logo et le texte */
}
 .logo-contact {
     width: 24px;
    /* Taille fixe pour les logos */
     height: 24px;
}
/* Tableau contacts */
 .contact-content h1 {
     font-size: 2rem;
     margin-bottom: 18px;
     color: black;
}
 .contact-content h2 {
     font-size: 1.5rem;
     margin-top: 24px;
     margin-bottom: 24px;
}
 .tableau-horaires {
     border-collapse: collapse;
}
 .tableau-horaires td {
     padding: 5px 10px;
     border: 1px solid black;
}
 .tableau-horaires .jour {
     margin-right: 20px;
}
 @media (max-width: 800px) {
    /* <---- Pour les petits écrans*/
     .contact-content {
         max-width: 95%;
    }
}
/* Contact form */
 .contact-form-container {
     max-width: 700px;
     margin: 0px auto;
     padding: 2rem;
     border-radius: 8px;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
     font-family: Montserrat, sans-serif;
     background-color: white;
}
 .contact-form-heading {
     color: #333;
     margin-bottom: 1.5rem;
     text-align: center;
}
 .contact-form {
     display: flex;
     flex-direction: column;
}
 .form-group {
     margin-bottom: 1.5rem;
}
 .form-label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: bold;
     color: #555;
}
 .form-control {
     width: 100%;
     padding: 0.75rem;
     font-size: 1rem;
     border: 1px solid #ddd;
     border-radius: 4px;
     transition: border-color 0.3s;
}
 .form-control:focus {
     border-color: #4a90e2;
     outline: none;
}
 textarea.form-control {
     min-height: 150px;
     resize: vertical;
}
 .submit-button {
     background-color: #4a90e2;
     color: white;
     border: none;
     padding: 0.75rem 1.5rem;
     font-size: 1rem;
     border-radius: 4px;
     cursor: pointer;
     transition: background-color 0.3s;
     align-self: flex-start;
}
 .submit-button:hover {
     background-color: #357ab8;
}
 @media (max-width: 800px) {
     .contact-form-container {
         padding: 1.5rem;
    }
}
/* MAP */
 .map-container {
     width: 100%;
     margin: 1em auto 0;
     max-width: 600px;
    /* Largeur maximale de la carte */
     height: 400px;
    /* Hauteur de la carte */
}
 iframe {
     width: 100%;
     height: 100%;
     border: 0;
    /* Supprimer la bordure */
}
/* OL UL */
 ul, ol {
     line-height: 1.5;
}
/* FAQ */
 .faq-simple {
     max-width: 800px;
     margin: 0 auto;
     padding: 20px;
}
 .faq-item {
     margin-bottom: 15px;
     border-bottom: 1px solid #eee;
}
 .faq-question {
     padding: 15px 0;
     font-weight: bold;
     cursor: pointer;
     position: relative;
}
 .faq-question::after {
     content: "+";
     position: absolute;
     right: 0;
     transition: transform 0.3s;
}
 .faq-item.active .faq-question::after {
     content: "-";
}
 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease;
     padding: 0;
}
 .faq-item.active .faq-answer {
     max-height: 300px;
     padding-bottom: 15px;
}
/* Carroussel */
 .carousel {
     max-width: 1200px;
     margin: 50px auto;
     text-align: center;
     background-color: transparent;
}
 .logo-carousel {
     display: flex;
     overflow-x: auto;
     align-items: center;
    /* Centre verticalement les enfants */
     scroll-behavior: smooth;
     gap: 30px;
    /* Espace entre les logos */
     padding: 20px 0;
}
 .logo-slide img {
     height: 20px;
    /* Ajustez la taille */
     width: auto;
     filter: grayscale(100%);
    /* Optionnel pour un effet sobre */
     transition: filter 0.3s;
}
 .logo-slide img:hover {
     filter: grayscale(0%);
    /* Les logos reprennent leur couleur au survol */
}
/* Barre de défilement */
 .logo-carousel::-webkit-scrollbar {
     display: block;
    /* Remplacer 'none' par 'block' */
     height: 6px;
    /* Hauteur de la barre */
}
/* Piste (fond de la scrollbar) */
 .logo-carousel::-webkit-scrollbar-track {
     background: #f1f1f1;
     border-radius: 10px;
}
/* Curseur (partie mobile) */
 .logo-carousel::-webkit-scrollbar-thumb {
     background: #888;
     border-radius: 10px;
}
/* Curseur au survol */
 .logo-carousel::-webkit-scrollbar-thumb:hover {
     background: #555;
}
 @media (max-width: 800px) {
     .logo-carousel-container {
         width: 95%;
         margin: 0 auto;
         position: relative;
    }
    /* Prestations complètes */
    /* Structure principale */
     .presta-category {
         margin-bottom: 3rem;
         padding: 1.5rem;
         background: #f9f9f9;
         border-radius: 8px;
    }
     .presta-grid {
         display: grid;
         grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
         gap: 20px;
         margin-top: 1.5rem;
    }
    /* Cartes individuelles */
     .presta-card {
         background: white;
         padding: 1.5rem;
         border-radius: 8px;
         box-shadow: 0 2px 10px rgba(0,0,0,0.05);
         transition: transform 0.3s;
    }
     .presta-card:hover {
         transform: translateY(-5px);
    }
    /* Navigation */
     .presta-nav {
         display: flex;
         justify-content: center;
         gap: 10px;
         margin: 2rem 0;
         flex-wrap: wrap;
    }
     .nav-btn {
         padding: 10px 20px;
         background: #e3e3e3;
         border-radius: 50px;
         font-weight: bold;
    }
    /* Responsive */
     @media (max-width: 800px) {
         .presta-grid {
             grid-template-columns: 1fr;
        }
    }
     