body {    
    margin: 0;
    padding: 0;
    color: #1e5072;
    font-size: 1.2rem;
}

/* Couleur des liens du menu */
    .navbar .nav-link {
        color: #26b3a9 !important;
        font-size: 1.3em;
    }

    /* Couleur au survol */
    .navbar .nav-link:hover {
        color: #1e9088 !important;
    }

    /* Bouton langue */
    .navbar .btn-light {
        color: #26b3a9 !important;
        border-color: #26b3a9 !important;
        background-color: transparent !important;
    }

    .navbar .btn-light:hover {
        background-color: #26b3a9 !important;
        color: white !important;
    }

    /* Couleur des éléments du dropdown */
    .dropdown-menu .dropdown-item {
        color: #26b3a9 !important;
    }

    .dropdown-menu .dropdown-item:hover {
        background-color: #26b3a9 !important;
        color: white !important;
    }

    /* Fond transparent du menu */
    .navbar, 
    .navbar .container-fluid, 
    .navbar-collapse {
        background-color: transparent !important;
    }
    
    #idHeader {
        margin-bottom: 1px;
        border-bottom: solid #26b3a9 3px;
    }
    
    .btn-info {
        background-color: #26b3a9;
        border-color: #26b3a9;
        color: #fff;
    }

    .btn-info:hover,
    .btn-info:focus,
    .btn-info:active,
    .btn-info:active:focus,
    .btn-info:active:hover {
        background-color: #1e5072;
        border-color: #1e5072;
        color: #fff;
    }
    
    .btn-info {
        display: inline-block;   /* largeur selon le contenu */
        width: auto;             /* évite le 100% */
        white-space: nowrap;     /* empêche de couper le texte sur plusieurs lignes */
    }
    
    .titre {
        color:#26b3a9;
        font-size:2.7em
    }
    .soustitre {
        color:#1e5072;
        font-size:2.0em
    }
    .interpage {
        color: white;
        font-size:26px;
        border-style:none;
        border-width:0px;
        background-color:#26b3a9;
        margin-top:0;
        margin-bottom:0;
        padding-top:10px;
        padding-bottom:10px;
        text-align: center;
    }
    
    .texte {
        color:#1e5072;
        font-size:1.0em
    }
    
    .video-container {
       display: flex;
  justify-content: center;
      }

      .video-container iframe {
        width: 50%;
  aspect-ratio: 16 / 9; /* garde le ratio vidéo */
  max-width: 800px;     /* optionnel : limite la taille max */
  border: none;
      }
    
    :root{
  /* ajustable si besoin */
  --container-pad: 2rem;
}

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

/* Bouton perso (reprend ton style) */
.btn-info-1{
  background-color:#1e5072;
  color:#fff;
  border: none;
  padding: .875rem 1.25rem;
  font-size: 1rem;
  line-height: 1.1;
  border-radius: .5rem;
  transition: background-color .2s ease, transform .1s ease;
}
.btn-info-1:hover,
.btn-info-1:focus,
.btn-info-1:active{
  background-color:#26b3a9;
  color:#fff;
}
.btn-info-1:active{ transform: scale(0.98); }

/* === iPad & tablettes (≤ 991.98px) === */
@media (max-width: 991.98px){
  :root{ --container-pad: 1.5rem; }

  .grid-2{
    grid-template-columns: 1fr;   /* 2 -> 1 colonne */
    gap: 1.5rem;
  }

  .btn-info-1{
    font-size: 1rem;
    padding: .875rem 1.25rem;
  }

  /* Images avec légendes ou ensembles bouton+image centrés */
  .center-on-tablet{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Réduit légèrement les gros titres */
  .hero .overlay-center{
    font-size: clamp(22px, 5.5vw, 40px);
    padding: 0 .5rem;
  }
  
  .txtAB {
        display: none;
    }
    
    .titre {
        font-size:1.7em
    }    
    .soustitre {
        font-size:1.5em
    }    
    .interpage {
        font-size:15px;
    }
    
    .video-container iframe {
        width: 100%;
    }
}

/* === Smartphones (≤ 575.98px) === */
@media (max-width: 575.98px){
  :root{ --container-pad: 1rem; }

  .section{ padding: var(--container-pad); }

  /* Boutons plein largeur + cibles tactiles confortables */
  .btn-info-1{
    display: inline-block;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.0625rem;   /* un poil plus grand pour le tactile */
  }

  /* Espacements verticaux un peu plus généreux */
  .stack-mobile > * + *{ margin-top: 1rem; }

  /* Titre sur image un peu plus compact */
  .hero .overlay-center{
    font-size: clamp(20px, 7vw, 32px);
    line-height: 1.2;
    padding: 0 .75rem;
  }
  
  /* Style commun */
    .hero-img {
        width: 100%;
        height: auto;
    }


    .txtAB {
        display: none;
    }
    
    .titre {
        font-size:1.7em
    }    
    .soustitre {
        font-size:1.5em
    }    
    .interpage {
        font-size:15px;
    }
    
    .video-container iframe {
        width: 100%;
    }

  /* Supprime les marges inutiles insérées via <br> sur mobile */
  br.mobile-hide{ display: none; }
}


#btnScrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  /*background-color: #333;*/
  color: white;
  border: none;
/*  border-radius: 50%;
  padding: 12px 16px;
  font-size: 20px;*/
  cursor: pointer;
  display: none; /* caché par défaut */
  transition: opacity 0.3s;
}

#btnScrollTop:hover {
  background-color: #555;
}

/* card*/ 
.card-title {
    color: #26b3a9;
    margin-bottom: 10px;
}
/* Boutons prev/next plus grands et colorés */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #26b3a9;   /* couleur personnalisée */
  border-radius: 50%;         /* rond */
  width: 3rem;                /* taille plus grande */
  height: 3rem;
  background-size: 60% 60%;   /* réduit un peu l’icône */
} 

/* Style des cartes de témoignages */
.testimonial {
  background: #f6f9ff;           /* léger fond bleuté (proche de ta maquette) */
  border-radius: 1rem;
}

/* Flèches plus visibles et couleur #26b3a9 */
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
  background-color: #26b3a9;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  background-size: 60% 60%;
}
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  opacity: 1;                     /* toujours visibles */
  width: 8%;                      /* zone cliquable plus large */
}

/* Indicateurs (pastilles) */
#testimonialCarousel .carousel-indicators [data-bs-target] {
  width: .75rem;
  height: .75rem;
  border-radius: 50%;
  background-color: #c9d1d9;
}
#testimonialCarousel .carousel-indicators .active {
  background-color: #455a64;      /* point actif plus foncé */
}

#testimonialCarousel .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #c9d1d9; /* gris clair */
}

#testimonialCarousel .carousel-indicators .active {
  background-color: #26b3a9; /* ta couleur principale */
}

/*---------------------------------------------------------------------------------------------*/
/* pour les images des expéditions*/
.thumb-43 { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
/* Indique qu’on peut cliquer pour fermer */
  #lightboxModal .modal-body { cursor: zoom-out; }
  #lightboxImg { cursor: default; }
  
  /* vignettes */
  .card .card-img-top {
    border-radius: .75rem;
    box-shadow:
      0 0 0 1px rgba(0,0,0,.10),   /* liseré fin */
      0 6px 20px rgba(2,8,20,.06); /* ombre douce */
  }

  /* image agrandie dans le modal (même look, un peu plus marqué) */
  #lightboxImg {
    border-radius: .75rem;
    box-shadow:
      0 0 0 2px #fff,              /* petit passe-partout blanc */
      0 0 0 3px rgba(0,0,0,.12),   /* liseré */
      0 12px 36px rgba(2,8,20,.25);/* ombre */
  }
/*---------------------------------------------------------------------------------------------*/
  