 
  body {
      font-family: 'Hubballi';
      color: #4d4d4d;
      background-color: #ffffff;
  }
 
/* ===== NAVBAR – Desktop ===== */
.custom-navbar {
  background-color: #d8b1b6; /* Rose pâle */
  padding: 5px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  margin-left: 20px;
  flex-shrink: 0;
}
.navbar-brand img {
  width: 185px;
  height: auto;
  margin-top: 17px;
  transition: transform 0.3s ease;
}
.navbar-brand img:hover {
  transform: scale(1.1);
}

.navbar-nav {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  gap: 90px;
  margin: 0;
  padding: 0;
  transform: translateX(-5%);
}

.nav-item {
  margin: 0;
}
.nav-link {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
.nav-link:hover {
  color: #fcf1f1;
  transform: scale(1.1);
}

/* ===== NAVBAR – Mobile ===== */
@media (max-width: 768px) {
  .navbar-brand img {
    width: 150px;
    margin-top: 10px;
  }

  /* On annule le décalage */
  .navbar-nav {
    transform: none !important;
  }

  /* Le conteneur collapse Bootstrap */
  #navbarNav {
    background: #d8b1b6;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,.35);
    box-shadow: 0 6px 18px rgba(0,0,0,.15);
  }

  #navbarNav .navbar-nav {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .nav-link {
    padding: 12px 16px;
    text-align: center;
    color: #fff;
  }

  /* Bouton hamburger */
  .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
  }
  .navbar-toggler:focus {
    outline: none;
  }

  /* Icône hamburger personnalisée */
  .navbar-toggler-icon {
    background-image: none;
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    display: inline-block;
  }
  .navbar-toggler-icon::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0; right: 0;
    height: 2px;
    background: #fff;
    box-shadow: 0 6px 0 0 #fff, 0 12px 0 0 #fff; /* 3 barres */
  }
}
.navbar-toggler {
  border-color: transparent;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
/* ===== BANNIÈRE ===== */
.banniere {
  max-width: 1180px;
  margin-inline: auto;         /* centre horizontalement */
  padding-inline: 24px;        /* souffle à gauche/droite */
  gap: 48px;
  align-items: center;

  margin-top: 100px;            /* espace sous la navbar */
  margin-bottom: 80px;         /* espace avant la section suivante */
}

.banniere .logo {
    display: block;
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

.banniere h2 {
    font-size: 2.2rem;
    color: #5a4a4a;
    margin-bottom: 20px;
    font-weight: bold;
}

.banniere p {
    font-size: 1.2rem;
    color: #4d4d4d;
    line-height: 1.8;
    margin-bottom: 30px;
}

.banniere .btn-faq {
    background-color: #C79DA6;
    color: white;
    border: none;
    padding: 10px 30px;
    cursor: pointer;
    border-radius: 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.banniere .btn-faq:hover {
    background-color: #b38f94;
    transform: scale(1.05);
}

/* Évite qu'une image trop grande n'influe sur la mise en page */
.banniere .col-6:last-child{
  overflow: hidden;
}

/* Image par défaut */
.banniere-image{
  display: block;
  width: 100%;                 /* ne dépasse plus la colonne */
  height: auto;
  max-width: 520px;            /* comme avant, pour mobile/tablette */
  object-fit: cover;
  object-position: center center;
  border-radius: 10px !important;
}

/* ≥1200px : on enlève la limite de 520px, on garde l'image à 100% */
@media (min-width: 1200px){
  .banniere-image{
    max-width: none;
    /* garde le recadrage sans décaler la mise en page */
    object-fit: cover;
    object-position: 70% center;  /* léger décalage vers la droite */
    /* pas de width>100, pas de transform */
  }
}

/* ≥1600px : on ajuste seulement le recadrage si besoin */
@media (min-width: 1600px){
  .banniere-image{
    object-position: 75% center;  /* un peu plus à droite */
  }
}

/* ≥1920px : encore un poil si tu veux */
@media (min-width: 1920px){
  .banniere-image{
    object-position: 78% center;
  }
}

@media (max-width: 991.98px){
    .banniere {
        padding: 40px 20px;
        flex-direction: column; /* Empile les deux colonnes */
        text-align: center;
    }

    .banniere .col-6 {
        width: 100%; /* Chaque élément prend toute la largeur */
    }

    /* Texte et bouton en premier */
    .banniere .col-6:first-child {
        order: 1;
    }

    /* Image en second */
    .banniere .col-6:last-child {
        order: 2;
    }

    .banniere-image {
        width: 100% !important;
        max-width: 90% !important;
        margin: 20px auto 0 !important;
        border-radius: 10px;
        height: auto !important;
        object-fit: cover;
    }

   /* Centrer le logo */
.navbar-brand {
    display: block !important;
    margin: 0 auto !important;
    text-align: center;
}

    /* Espace sous le bouton */
    .banniere .btn {
        margin-bottom: 30px; /* ajuste la valeur selon besoin */
    }
    
}

/*LE SAVIEZ-VOUS*/

/* Rectangle vertical à droite du texte */
.vertical-rectangle {
    width: 5.8px;
    height: 90%;
    border-radius: 10px;
    background-color: #d8b1b6;
    position: absolute;
    right: -50px;
    top: 21px;
}

/* Texte principal */
.text-large {
    font-size: 2.1rem !important; /* Plus grand */
    line-height: 1.4;
    margin-top: 20px;
    color: #52383E;
    transform: translateX(-7%);
}

.text-large strong {
    font-weight: bold; /* force le gras pour les <strong> */
    font-size: 1.5rem; /* un peu plus grand que le reste */
}

/* Image */
.custom-image {
    max-width: 70%;
    transform: translateX(-20%);
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .text-large {
        font-size: 1.4rem;
    }
    .custom-image {
        max-width: 150%;
        transform: translateX(-15%);
    }
}

.what {
    padding: 100px;
}

.know {
    padding: 100px;
    text-align: center;
    color: #795950;
}

.knows {
    padding: 50px;
}

/* LE SAVIEZ-VOUS */
.did-you-know-section {
    background-color: #ffffff;
    padding: 50px 0;
    font-size: 1.2rem; /* Agrandir tout le texte */
}

/* Titre de section */
.did-you-know-section h2 {
    font-family: 'Hubballi', sans-serif;
    font-size: 3.2rem; /* Plus grand */
    color: #5b413b;
    margin-bottom: 90px !important;
    font-weight: bold;
}

.mb-4 {
    margin-bottom: 0 !important;
}

.image-wrapper img {
    display: block;
    transform: scale(1.2);
    height: auto;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .did-you-know-section h2 {
        font-size: 2rem;
        margin-bottom: 50px;
    }
    .image-wrapper img {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .did-you-know-section h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    .image-wrapper img {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .did-you-know-section h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    .image-wrapper img {
        width: 100%;
        transform: scale(1);
    }
}

.did-you-know-section .row {
    flex-direction: column;
}

.text-large {
    font-size: 1.3rem !important;
    line-height: 1.55;
    margin-top: 12px;
    transform: none;
    text-align: center;
}

.vertical-rectangle {
    display: none;
}

.image-wrapper {
    width: 100%;
    margin: 0 auto;
}

.image-wrapper img {
    transform: none;
    width: 80%;
    height: auto;
}

.custom-image {
    max-width: 100%;
    transform: none;
    margin: 16px auto 0;
}

.did-you-know-section {
    padding: 32px 16px;
}

.what, .know {
    padding: 40px 16px;
}

.knows {
    padding: 24px 16px;
}

.did-you-know-section h2 {
    font-size: 1.8rem;
    margin-bottom: 24px !important;
}

.image-wrapper img {
    transform: none;
    width: 65%;
    height: auto;
}

.custom-image {
    max-width: 55%;
    transform: none;
    margin: 16px auto 0;
}
/* === Le saviez-vous — version compacte & propre === */

/* Neutralise le gros padding de Bootstrap (py-5) pour CETTE section */
.did-you-know-section.py-5 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

/* Section "Le saviez-vous" */
.did-you-know-section {
    background-color: #ffffff;
    padding: 50px 0;
    text-align: center;
}

/* Titre principal */
.did-you-know-section h2 {
    font-family: 'Hubballi', sans-serif;
    font-size: 2rem;
    color: #5b413b;
    margin-bottom: 50px;
    font-weight: bold;
}

/* Conteneur image */
.image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 85%;
    margin: 0 auto;
    border-radius: 15px;
}

/* Image */
.image-wrapper img {
    display: block;
    width: 80%;
    height: auto;
    transition: all 0.3s ease;
}

/* Responsive tablette */
@media (max-width: 992px) {
    .did-you-know-section h2 {
        font-size: 2rem; /* titre plus grand */
    }
    .image-wrapper img {
        width: 90%; /* image plus grande */
    }
}

/* Responsive mobile */
@media (max-width: 768px) {
    .did-you-know-section h2 {
        font-size: 2rem; /* encore un peu plus grand */
    }
    .image-wrapper img {
        width: 150%; /* image prend presque toute la largeur */
    }
}

/* Section Services */
.services-section {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
    margin-top: 2%;
}

.services-title {
    font-size: 5rem;
    color: #5b413b;
    margin-bottom: 10px;
}

.services-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 35px !important;
}

.services-section p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.services-subtitle {
    font-size: 1rem;
    color: #453d3d;
    margin-bottom: 30px;
}

.services-cards {
    display: flex;
    justify-content: center; /* Centrer les cartes */
    flex-wrap: wrap;
    gap: 25px; /* Espace plus large entre les cartes */
}

.service-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    background-color: #e9cdd3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 180px; /* Images plus grandes */
    object-fit: cover;
}

.service-content {
    background-color: #e9cdd3;
    padding: 15px;
}

.service-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #6D4C4C;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 0.9rem;
    color: #555;
    text-align: center;
}


/* --- Layout de la grille --- */
.services-cards{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;      /* centre la rangée */
  gap:24px;                    /* espace entre cartes */
}

/* Si tu utilises des colonnes Bootstrap autour des cartes */
.services-cards [class*="col-"]{
  display:flex;                /* pour pouvoir centrer la carte à l'intérieur */
  justify-content:center;
}

/* Taille/centrage de la carte */
.service-card{
  width:100%;
  max-width: 360px;            /* largeur max propre d’une carte */
  margin:0 auto;
}

/* Image de la carte (gagner la cascade) */
.service-card img{
  width:100%;
  height:180px !important;     /* force la hauteur */
  object-fit:cover;
  display:block;
}

/* ----- Tablette ----- */
@media (max-width: 992px){
  .services-cards {
    gap: 40px 25px; /* 40px vertical, 25px horizontal */
  }
}

/* ----- Mobile ----- */
@media (max-width: 576px){
  .services-cards {
    gap: 50px 25px; /* encore plus d'espace vertical */
  }
}
/* étape */
.timeline-section h2 {
    font-size: 2rem; /* Garder la taille du texte */
    color: #6D4C4C; /* Couleur du texte */
    text-align: center; /* Centrer le texte */
    margin-top: -30px; /* Ajustez cette valeur pour faire monter le titre */
    margin-bottom: 50px; /* Garder l'espacement en bas */
}
.timeline-section .highlight {
    color: #C38989; /* Couleur rose pour "SheDrive" */
}
.timeline-section {
    display: flex;
    align-items: flex-start; /* Alignement des éléments en haut */
    gap: 30px; /* Espacement entre la ligne de temps et le texte */
}
.etapes-slider h2 { 
    margin-bottom: 70px; /* Ajuste comme tu veux */
}

.etape-img {
    max-width: 820px;
    height: auto;
    margin-top: 40px; /* espace entre titre et image */
    margin-bottom: 40px; /* espace en dessous */
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
}
#etapesCarousel .carousel-control-prev,
#etapesCarousel .carousel-control-next {
  width: 8%; /* clic plus large */
}

#etapesCarousel .carousel-control-prev-icon,
#etapesCarousel .carousel-control-next-icon {
  width: 2.75rem;
  height: 2.75rem;
  background-size: 100% 100%;
  background-color: rgba(0,0,0,.25); /* halo */
  border-radius: 999px;
  filter: invert(1) grayscale(100%); /* rend l’icône foncée/visible sur fond clair */
}
/* Ajuste sur tablettes/mobiles */
@media (max-width: 992px){
  .etape-img{ max-width: 680px; margin-top: 28px; margin-bottom: 40px; }
}
@media (max-width: 768px){
  .etape-img{ max-width: 100%; margin-top: 20px; margin-bottom: 32px; }
}

.etape-illustration {
    text-align: center;
    margin-bottom: 60px;
}

.etape-illustration img {
    max-width: 500px;
    height: auto;
}

@media (min-width: 992px) {
    .etape-illustration img {
        max-width: 500px;
    }
}
/* Empêche étirement vertical */
.testimonial-image { height: auto; max-width: 100%; }

/* Rendre les zones de flèches bien cliquables */
.carousel-control-prev, .carousel-control-next { width: 3rem; }

/* (Si tu avais du vieux .sr-only qui traîne) */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

.slider-container {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    display: flex;
}

.slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 10px 0;
}

.slider-track img {
    flex: 0 0 auto;
    width: 400px;
    height: auto;
    scroll-snap-align: start;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Optionnel pour scrollbar discrète */
.slider-container::-webkit-scrollbar {
    height: 6px;
}
.slider-container::-webkit-scrollbar-thumb {
    background-color: #d8a8b9;
    border-radius: 10px;
}

.content h2 {
    font-size: 18px;
    color: #4a4a4a;
    margin: 0 0 10px;
    text-align: left;
}

.content p,
.content ul {
    margin: 0;
    padding: 0;
    font-size: 14px;
    text-align: left;
}

.content ul {
    list-style: disc;
    padding-left: 20px;
    text-align: left;
}

/* Section de contact */
.contact-section {
    background-color: #ffffff;
    padding: 40px 20px; /* Ajoute un espacement global à la section */
    margin-top: 80px; 
    padding-bottom: 50px;
}
  
  .contact-info h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #6D4C4C;
    margin-bottom: 10px; /* Ajoute un espace sous chaque titre */
  }
  
  .contact-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px; /* Espacement entre chaque paragraphe */
  }
  
  .faq-text {
    font-size: 0.95rem;
    color: #6D4C4C;
  }
  
  .btn-faq {
    background-color: #D8B1B6!important;
    color: white!important;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 30px; /* Espacement au-dessus du bouton */
  }
  
  .btn-faq:hover {
    background-color: #C38989!important;
    color: white!important;
  }
  
  /* Formulaire */
  .contact-form .form-group label {
  margin-bottom: 20px !important; /* Espacement entre les champs du formulaire */
 }
 .contact-section .contact-form .form-group {
    margin-bottom: 20px !important;
}
.contact-section h2 {
    font-family: 'Hubballi'; /* Police élégante */
    font-size: 2rem; /* Taille du titre */
    font-weight: bold;
    color: #6D4C4C; /* Couleur du texte */
    text-align: center; /* Centre le titre */
    margin-bottom: 100px !important; /* Ajoute un espace sous le titre */
    margin-top: -50px !important; /* Ajustez pour contrôler l'espace au-dessus */
}

  .contact-form .form-control {
    border: 1px solid #C38989!important;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 0.9rem;
    margin-bottom: 20px !important;
  }
  
  .contact-form .form-control:focus {
    border-color: #D8B1B6;
    box-shadow: none;
  }
  .btn-send {
    background-color: #D8B1B6 !important;
    color: white!important;
    padding: 10px 30px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 50px; /* Espacement au-dessus du bouton d’envoi */
  }
  
  .btn-send:hover {
    background-color: #C38989!important;
    color: white!important;
  }


/* Section des témoignages */
.testimonial-section {
    background-color: #ffffff; /* Fond clair */
  }

  .testimonial-section h2 {
    font-size: 1.8rem;
    margin-bottom: 100px !important; /* Ajoute un espace sous le titre */
    margin-top: -60px !important; /* Ajustez pour contrôler l'espace au-dessus */
    font-weight: bold;
    color: #6D4C4C;
  }
  .testimonial-section .highlight {
    color: #C38989; /* Couleur rose */
  }
  /* Styliser les images du carousel */
  .testimonial-image {
    max-width: 900px; /* Limite la largeur maximale */
    max-height: 700px; /* Limite la hauteur maximale */
    width: auto; /* Ajuste la largeur proportionnellement */
    height: auto; /* Ajuste la hauteur proportionnellement */
    margin: 0 auto; /* Centre l'image horizontalement */
    display: block; /* Garantit un bon positionnement */
    object-fit: contain; /* Garde les proportions sans déformation */
    border-radius: 15px; /* Ajoute des coins arrondis */
  }
  /* Flèches du carousel */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    border-radius: 100%; /* Rendre les flèches circulaires */
    width: 40px;
    height: 40px;
     color: #c3898946;
  }

/* Section Notre Histoire */
.about-shedrive .container {
    max-width: 900px; /* Largeur maximale */
    margin: 0 auto; /* Centre horizontalement */
    padding: 2rem 0; /* Espacement vertical */
}

.about-shedrive h1 {
    font-family: 'Hubballi', sans-serif; /* Police pour le titre */
    margin-top: 7%;
    font-size: 2rem;
    font-weight: 500;
    color: #4a4a4a;
    text-align: center; /* Centrer le titre */
    margin-bottom: 5rem;
}

.about-shedrive .row {
    display: flex; /* Flexbox pour aligner image et texte */
    align-items: center; /* Aligne verticalement */
    gap: 2rem; /* Espace horizontal entre les colonnes */
}

.about-shedrive img {
    max-width: 100%; /* Ajuste à la largeur du conteneur */
    height: auto; /* Garde les proportions */
    border-radius: 10px; /* Coins arrondis */
}

.about-shedrive p {
    font-size: 1.2rem; /* Taille du texte */
    line-height: 1.2; /* Espacement entre les lignes */
    color: #4a4a4a; /* Couleur du texte */
    text-align: justify; /* Justifie le texte */
    margin-bottom: 1rem;
    width: 95%; /* Largeur maximale pour "élargir" légèrement */
    transform: scaleX(1.1); /* Étire horizontalement de 10% */
    display: inline-block; /* Nécessaire pour que scaleX fonctionne correctement */
    max-width: 550px;
}

/* Bannière */
.banner-image {
    position: relative;
    max-height: 500px;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.banner-image .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
}

.banner-image h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* =======================
   Notre Histoire — Responsive
   ======================= */

/* Tablette (≤ 992px) */
@media (max-width: 992px){
  .about-shedrive .container{
    max-width: 720px;
    padding: 1.5rem 1rem;
  }

  .about-shedrive h1{
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }

  .about-shedrive .row{
    flex-direction: column;          /* empile image et texte */
    align-items: center;
    gap: 1.5rem;
  }

  .about-shedrive p{
    font-size: 1.05rem;
    line-height: 1.6;
    width: 100%;
    max-width: 680px;
    transform: none;                 /* retire l’étirement horizontal */
  }

  /* Bannière */
  .banner-image{ max-height: 380px; }
  .banner-image .overlay{ padding: 14px 28px; }
  .banner-image h1{ font-size: 2rem; }
}

/* Mobile (≤ 576px) */
@media (max-width: 576px){
  .about-shedrive .container{
    max-width: 100%;
    padding: 1.25rem 14px;
  }

  .about-shedrive h1{
    font-size: 1.6rem;
    margin-top: 1.25rem;
    margin-bottom: 1.75rem;
  }

  .about-shedrive img{
    width: 50%;
    height: auto;
    border-radius: 10px;
     display: block;
    margin: 0 auto; /* centre horizontalement */
  }

  .about-shedrive p{
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 0.9rem;
    transform: none;                 /* important sur mobile */
    width: 100%;
    max-width: none;
    text-align: left;                 /* plus lisible sur mobile */
  }
}

.team-section {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #4a4a4a;
}

.team-section h1 {
    font-family: 'Hubballi', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 4rem; /* Plus d'espace sous le titre principal */
    margin-top: -5rem;
   
}
.team-section h2 {
    font-size: 1.9rem;
    font-weight: 600;
    color: #52383E;
    text-align: center;
    margin-bottom: 5rem; /* Augmente l'espace sous le sous-titre */
}
.team-section .intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-top: 6rem; /* Ajoute plus d'espace au-dessus du texte d'intro */
    margin-bottom: 3rem; /* Espace entre l'intro et le sous-titre */
    color: #52383E;
}

.team-section .subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    font-weight: bold;
    color: #52383E;
    margin-bottom: 10rem; /* Espace entre l'intro et le sous-titre */
}

.team-section .team-image img {
    border-radius: 10px;
    max-width: 70%; /* Ajuste la taille de l'image */
    margin-bottom: 3rem; /* Espace sous l'image */
    margin-top: 1.5rem; /* Ajoute un espace au-dessus des images */
}

.team-section .team-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-top: 2rem; /* Espace supplémentaire au-dessus du texte final */
    margin-bottom: 0;
    color: #52383E;
}
/* Section Nos Missions */
.missions-section {
    font-family: 'Hubballi', sans-serif;
}

.missions-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #3d2222;
    margin-bottom: 3rem;
}

.missions-section .intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #52383E;
    margin-top: 4rem;
    margin-bottom: 3rem;
}

.missions-list {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4A4A4A;
    margin-top: 4rem;
}

.missions-list strong {
    font-size: 1.2rem;
    color: #622f3b;
}

.missions-list li {
    margin-bottom: 2.5rem; /* Espace entre chaque mission */
}

.missions-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Facultatif pour un style plus arrondi */
}
/* Espacement général */
.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 2rem;
}
.banner-image {
    margin-bottom: 40px; /* espace après la bannière */
}

.title h1 {
    margin-top: 40px; /* option si tu préfères espacer depuis le titre */
}

.contact-section {
  padding-top: 1rem !important; /* moins d'espace au-dessus */
}
.contact-section p {
  font-size: 1.25rem !important; /* environ 20px */
  margin-bottom: 4rem !important;
}
.contact-section .contact-title {
  color: #a27777;
  font-weight: bold;
  font-size: 1.4rem !important; /* un peu plus grand pour le titre */
}

/* ===== FAQ – contour unique façon Figma ===== */

/* L’item porte le contour et les arrondis */
.faq-page .accordion-item{
  border:1px solid #d9a8a8;
  border-radius:12px;
  background:#fff;
  overflow:hidden;           /* pour que tout suive les arrondis */
  margin-bottom:12px;
}

/* Bouton : pas de bordure, fond blanc, texte brun */
.faq-page .accordion-button{
  background:#ffffff !important;
  color:#4F3D37;
  font-size:18px;
  font-weight:400;
  padding:14px 20px;
  border:none;
  box-shadow:none;
  text-align:left;
}

/* Supprime la pseudo‑flèche gauche de Bootstrap et garde celle de droite */
.faq-page .accordion-button::before{ display:none; }
.faq-page .accordion-button::after{
  flex-shrink:0;
  width:1.25rem; height:1.25rem;
  margin-left:auto;          /* flèche bien à droite */
  background-size:1.25rem;
}

/* État ouvert : on garde le même rendu (pas de fond rose) */
.faq-page .accordion-button:not(.collapsed){
  background:#ffffff !important;
  color:#4F3D37;
  border:none;
  box-shadow:none;
  border-radius:0;           /* l’item gère les arrondis */
}

/* Corps : simple séparateur en haut, pas de contour latéral décalé */
.faq-page .accordion-body{
  border-top:1px solid #d9a8a8;
  background:#f9e9e9;
  color:#4a4a4a;
  font-size:16px;
  padding:15px 20px;
}

/* Largeur + titres comme ta maquette */
.faq-page .accordion{ max-width:900px; margin:0 auto; }
.faq-page h2{
  max-width:900px; margin:0 auto; padding-left:15px;
  text-align:left; color:#4F3D37;
}
.faq-page h2 + .accordion{ margin-top:35px; }
@media (max-width: 768px) {
    .faq-page .accordion {
        max-width: 90%; /* Laisse de l'espace sur les côtés pour les petits écrans */
    }
}
.contact-section p {
    font-size: 1.15rem; /* environ 20px */
    line-height: 1.6;   /* espace entre les lignes */
}

.form-upload {
    font-family: Arial, sans-serif;
    color: #915858; /* Couleur de texte */
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .upload-container {
    border: 2px dashed #915858;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
  }
  
  .upload-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
    color: #915858;
    cursor: pointer;
  }
  
  .upload-label .camera-icon {
    width: 24px;
    height: 24px;
  }
  
  .upload-input {
    display: none; /* Masque l'input de fichier */
  }
  
  .upload-container p {
    margin: 10px 0;
    font-size: 0.9rem;
  }
  
  .upload-container small {
    display: block;
    font-size: 0.8rem;
    color: #915858;
  }
  
  .info-text {
    color: #915858;
    font-size: 0.9rem;
    margin: 15px 0;
  }
  
  /* Checkbox et termes */
  .terms-container {
    display: flex;
    margin: 15px 0;
  }
  
  .terms-container input {
    margin-right: 10px;
  }
  
  .terms-container label {
    font-size: 0.9rem;
    color: #915858;
  }
  
  .terms-container a {
    text-decoration: none;
    font-weight: bold;
    color: #915858;
  }
  
  .terms-container a:hover {
    text-decoration: underline;
  }

/* Styles pour la page Proposez votre trajet */
/* Conteneur du formulaire */
.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #52383E; /* Couleur personnalisée */
    margin-bottom: 20px; /* Espace sous le titre */
    margin-top: 7px; /* Espace au-dessus */
    text-transform: uppercase; /* Texte en majuscules */
    letter-spacing: 1px; /* Espacement entre les lettres */
}

.form-container {
    background-color: #F7F1F2; /* Fond rose clair */
    border-radius: 12px;
    width: 100%;
    max-width: 900px;
    padding: 40px; /* Augmente le padding pour une longueur plus grande */
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}
/* Texte noir pour tous les champs du formulaire */
.form-container input,
.form-container input,
.form-container input,
.form-container select,
.form-container textarea {
    color: #A6908C !important; /* Forcer le texte en noir */
    font-size: 14px;
    font-family: 'Arial', sans-serif;
}
/* Couleur noire pour les placeholders */
.form-container input::placeholder,
.form-container textarea::placeholder {
    color: #A6908C !important; /* Placeholder en noir */
    opacity: 1; /* Assure que les placeholders ne soient pas translucides */
}
/* Focus propre pour les champs */
.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus {
    color: #A6908C !important; /* Texte en noir au focus */
    border-color: #BC929C; /* Douce bordure pour le focus */
    box-shadow: none;
}
/* Champs du formulaire */
.input-field {
    border: 1px solid #BC929C;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    color: #A6908C !important; /* Force le texte noir */
    font-size: 14px;
    background-color: #fefcfb;
    font-family: 'Arial', sans-serif;
    width: 100%; /* Garde les autres champs cohérents */
}
/* Champ "Nombre de places" plus long */
.select-field {
    width: 100%; /* S'étend sur toute la largeur de sa colonne */
    max-width: 100%; /* Empêche un débordement */
}
/* Espacement entre les champs */
.row.g-3 .col-md-6 + .col-md-12 {
    margin-top: 20px; /* Espace entre "Nombre de places" et "Informations complémentaires" */
}
/* Bouton Publier */
.submit-button {
    background-color: #BC929C;
    color: #ffffff;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 12px;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    display: block; /* Force le bouton à occuper une ligne seule */
    margin: 20px auto 0 auto; /* Centre le bouton sous le formulaire */
    width: 150px; /* Ajuste la taille du bouton */
    text-align: center;
}
.submit-button:hover {
    background-color: #BC929C;
    color: #ffffff;
}

.title {
    color: #795950;
}

/*Rechercher Trajet*/

.search-section h2 {
    font-family: 'Hubballi', sans-serif;
    font-weight: bold;
    color: #52383E;
    margin-bottom: 20px; /* Ajoute un espace entre le titre et le sous-titre */
    margin-top: 20px; /* Ajoute un espace au-dessus du titre */
}
.section-title {
    margin-top: 100px; /* Espace au-dessus du titre */
    margin-bottom: 30px; /* Espace en dessous du titre */
}

.search-section p {
    color: #6d6d6d;
    font-size: 1.1rem;
    margin-bottom: 30px; /* Ajoute un espace sous le sous-titre */
}

.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card .form-control {
    border: 1px solid #d09b9b;
    border-radius: 5px;
}

.card .btn-primary:hover {
    background-color: #c38989;
}
.search-section .btn-primary {
    margin-top: 20px; /* Ajoute un espace au-dessus du bouton */
    display: block; /* Assure que le bouton reste centré */
}


/*Les trajets proposées*/
/* Espacement général pour la section des trajets */
.trajet-page {
    background-color: #f9f6f6;
    padding: 50px 0; /* Espacement haut et bas de la section */
}

/* Titre de la section */
.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #52383E;
    margin-bottom: 20px; /* Espacement sous le titre */
}

/* Description sous le titre */
.section-description {
    font-size: 1.2rem;
    color: #6d6d6d;
    margin-bottom: 40px; /* Espacement sous la description */
}
/* L'intérieur du cadre coloré */
.trajet-page .form-container {
  background: #F7F1F2; /* ton rose clair ou autre couleur */
  border: 1px solid #ead2cc;
  border-radius: 14px;
  box-shadow: none;
}

/* Supprimer le fond extérieur */
.trajet-page,
.trajet-page .container,
.trajet-page .container.mt-4,
.trajet-page .container.d-flex {
  background: transparent !important;
}

/* Supprimer un éventuel pseudo-élément décoratif */
.trajet-page::before,
.trajet-page::after {
  content: none !important;
  background: transparent !important;
}
/*Les trajets proposées*/
/* Cartes de trajet */
.card {
    background-color: #FFF4F4;
    border: 1px solid #d5cdcd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px; /* Espacement entre les cartes */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 900px; /* Taille maximale des cartes */
    margin-left: auto;
    margin-right: auto;
}

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

/* Image de profil */
.card img {
    object-fit: cover;
    border-radius: 10px;
    width: 90px; /* Taille de l'image */
    height: 90px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Texte du profil (nom, âge) */
.card .text-center strong {
    font-size: 1rem;
    color: #52383E;
}

/* Inputs en lecture seule */
.card input {
    border: 1px solid #d8b1b6;
    border-radius: 5px;
    background-color: #fdfdfd;
    color: #52383E;
    padding: 10px;
    font-size: 0.95rem;
}

.card input[readonly] {
    cursor: not-allowed;
    background-color: #f9f9f9;
}

/* Informations complémentaires */
.card p {
    color: #6d6d6d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Bouton Contacter */
.card .btn {
    background-color: #d8b1b6;
    border: none;
    color: white;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.card .btn:hover {
    background-color: #c38989;
    color: white;
}

/* Espacement des colonnes */
.card .row .col-md-6 {
    margin-bottom: 10px;
}

.card .row .col-md-12 {
    margin-bottom: 15px;
}

/* Espacement entre les cartes */
.trajet-page .card + .card {
    margin-top: 30px;
}
.trip-card:last-child{ margin-bottom: 0 !important; }
/* Carte trajet – style Figma */
.trip-card{
  background:#FFF4F6;          /* rose très clair */
  border:1px solid #e3cbbf;     /* contour subtil */
  border-radius:12px;
  padding:18px 20px;
  margin-bottom: 50px !important; /* espace entre les cartes */
  box-shadow: 0 1px 0 rgba(0,0,0,.03); /* léger relief comme sur la maquette */
}
.trip-card:last-child{ margin-bottom: 0 !important; }

/* Espace entre les cartes déjà via .mb-4, mais tu peux ajuster:
.trip-card{ margin-bottom:24px; } */

/* Avatar carré arrondi */
.trip-avatar{
  width:110px; height:110px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid #e3cbbf;
}
.trip-avatar img{
  width:100%; height:100%;
  object-fit:cover;             /* évite les images “étirées” */
  display:block;
}

/* Nom/âge sous l’avatar */
.trip-name-age{
  font-size:.95rem;
  color:#4F3D37;
}

/* Labels fins */
.trip-label{
  font-weight:600;
  color:#4F3D37;
  font-size:.95rem;
  margin-bottom:.35rem;
}

/* Inputs fins et arrondis */
/* === Couleur de fond des champs === */
.trip-input,
.trip-input[readonly],
.trip-input:read-only {
  background:#ffffff;                 /* rose clair */
  border:1px solid #e0baba;
  color:#4F3D37;
}

/* placeholder et focus pour rester harmonieux */
.trip-input::placeholder { color:#9e7f7f; }
.trip-input:focus {
  background:#fff7f9;
  border-color:#d19898;
  box-shadow:none;
}
.trip-info{
  background:#fff8f8;           /* nouveau rose clair */
  border:1px solid #d9a8a8;
  border-radius:12px;
  padding:12px 14px;
  color:#4a4a4a;
}

/* Bouton rose */
.btn-pink{
  background-color:#c98999;     /* adapte à ta palette */
  color:#fff;
  border-radius:12px;
  border:1px solid #b87887;
  padding:.45rem 1rem;
}
.btn-pink:hover{ background-color:#b87887; color:#fff; }

/* Petits ajustements responsive */
@media (max-width: 576px){
  .trip-avatar{ width:90px; height:90px; }
}

/* Grands écrans */
@media (min-width: 992px) {
    .card {
        padding: 30px;
    }
}
/* ===== Forum SheDrive ===== */
.forum-page .btn-pink{
  background-color:#c98994;
  color:#fff;
  border:none;
}
.fixed-color {
    background-color: #f1d8d8; /* rose fixe */
    border: 1px solid #d18a8a;
    color: #fff;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}
.fixed-color:hover {
    background-color: #d18a8a;
}
.forum-page .btn-pink:hover{ background-color:#b3757f; color:#fff; }
.forum-page h1 {
    margin-bottom: 1.5rem; /* espace sous le titre */
}

.forum-page > p {
    margin-top: 1.5rem;   /* espace au-dessus du texte */
    font-size: 1.1rem;    /* taille un peu plus grande */
    margin-bottom: 2.5rem; /* espace après */
    color: #5a5a5a;
}
.forum-page h1{
  letter-spacing:.02em;
  margin-bottom:1rem;
}
.forum-page p{ color:#5a5a5a; }

.forum-page .list-group{
  gap:8px;                 /* pour l’espacement régulier */
  display:flex;
  flex-direction:column;
}
.forum-page .list-group-item{
  border-radius:20px;
  border:1px solid #d1a7af;
  padding:.65rem .9rem;
}

.forum-page .chat-box{
  background:#f8f8f8;
  border:1px solid #ddd;
  border-radius:16px;
}
.forum-page #chat-messages{
  min-height:200px;
  max-height:360px;
  overflow-y:auto;
}
.forum-page #chat-form .form-control{
  border-radius:999px;
  border:1px solid #d1a7af;
}
.forum-page #chat-form .btn-pink{
  border-radius:999px;
  padding:.55rem 1.1rem;
}

/* petits détails typographiques */
.forum-page .section-title{ font-weight:700; font-size:1.05rem; color:#6e4f52; }

.chat-box {
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding-top: 15px; /* réduit le haut */
}

.chat-box h5 {
    margin-top: 0; /* supprime l’espace au-dessus du titre */
}
/* Active topic en rose clair */
#topics .list-group-item.active {
    background-color: #f2d3d8; /* rose clair */
    border-color: #d1a7af;     /* contour assorti */
    color: #6e4f52;            /* texte brun */
}

/* Hover en version un peu plus foncée */
#topics .list-group-item.active:hover {
    background-color: #e6bfc6;
    border-color: #c9969f;
    color: #6e4f52;
}
/* responsive léger */
@media (min-width:992px){
  .forum-page h1{ font-size:1.9rem; }
}
.profile-card{
  max-width: 900px;
  background: #efdfdf;         /* rose très doux */
  border: 1px solid #d1a7af;   /* contour rose */
  border-radius: 18px;
}
.profile-sep{
  border: 0;
  border-top: 2px solid #c59aa3; /* fine ligne brune/rose */
  opacity: .6;
}
.avatar-wrapper {
  width: 180px;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #d1a7af;
  margin-top: 10px; /* espace entre texte et image */
}

.avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Taille réduite pour le label texte */
.profile-page label.btn,
.profile-page .btn-outline-secondary {
  font-size: 0.85rem;
}
.profile-title {
    font-size: 1.8rem; /* taille plus petite, ajuste si besoin */
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px; /* espace sous le titre */
}

.btn-pink{
  background-color:#c98994; color:#fff; border:none; border-radius:18px;
}
.btn-pink:hover{ background-color:#b3757f; color:#fff; }

/* ===== Footer / Newsletter hero ===== */
:root{
  --sd-rose:#c8a1a3;        /* fond bas de footer */
  --sd-rose-dark:#b98b8d;
  --sd-rose-btn:#d6a3ad;    /* bouton newsletter */
  --sd-rose-btn-hover:#e0b2bb;
  --sd-white:#fff;
}

.nl-hero{
  position: relative;
  min-height: 350px;             /* hauteur du bandeau */
  display: grid;
  place-items: center;
  overflow: hidden;
}
.nl-hero__bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.nl-hero__overlay{
  position:absolute; inset:0;
  /* léger voile pour lisibilité du texte */
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.35));
}
.nl-hero__content{
  position: relative;
  color: var(--sd-white);
  text-align: center;
  max-width: 980px;
}
.nl-hero__content h2{
  font-weight: 500;
  letter-spacing: .5px;
  margin-bottom: .5rem;
}
.nl-hero__content p{
  opacity: .95;
  margin-bottom: 1.2rem;
}

/* Forme “pill” email + bouton */
.nl-form{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  margin-inline: auto;
  max-width: 720px;
  border: 1.5px solid rgba(255,255,255,.75);
  border-radius: 36px;
  overflow: hidden;
  backdrop-filter: blur(1px);
}
.nl-form__input{
  border: 0;
  padding: .85rem 1.2rem;
  background: transparent;
  color: var(--sd-white);
  outline: none;
}
.nl-form__input::placeholder{ color: rgba(255,255,255,.85); }
.nl-form__btn{
  border: 0;
  padding: .85rem 1.5rem;
  background: var(--sd-rose-btn);
  color: var(--sd-white);
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, transform .05s ease;
}
.nl-form__btn:hover{ background: var(--sd-rose-btn-hover); }
.nl-form__btn:active{ transform: translateY(1px); }

/* ===== Footer bas ===== */
.site-footer{
  background: var(--sd-rose);
  color: #2b2021;
  padding: 26px 0 18px;
}
.site-footer__grid{
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.site-footer h5{
  font-size: 1rem;
  letter-spacing: .6px;
  margin-bottom: .35rem;
  color: #ffffff;
}
.site-footer a{
  color: #2b2021;
  text-decoration: none;
}
.site-footer a:hover{ text-decoration: underline; }

.site-footer__legal{
  text-align:center;
  background: var(--sd-rose-dark);
  color:#342f30;
  font-size:.9rem;
  padding:10px 0;
}
/* Empile proprement logo + lien, pas de wrap ni hyphénation */
.footer-brand{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;                    /* petit espace sous le logo */
}

.footer-legal{
  display:inline-block;
  white-space:nowrap;         /* pas de retour à la ligne */
  word-break:keep-all;        /* ne casse pas les mots */
  hyphens:none;            /* pas de césure auto */
}

/* Donne un peu plus de place à la 1ʳᵉ colonne si ça force encore la coupure */
.site-footer__grid{
  grid-template-columns: 1.4fr repeat(3, 1fr);
}

/* (optionnel) Si tu veux encore plus sûr, réduis un poil la taille du lien */
.footer-legal{ font-size: 0.95rem; }

@media (max-width: 576px){
  .site-footer__grid{
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center; /* centre dans la grille */
  }

  .site-footer__logo {
    display: block;
    margin: 0 auto 10px; /* centre le logo avec un petit espace en bas */
  }

  .site-footer__legal {
    text-align: center;
    margin-top: 10px;
  }
}