/* Base */
body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    scroll-behavior: smooth;
  }
  
  a {
    text-decoration: none;
  }
  
 /* Barre de navigation moderne avec effet sticky */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
    padding: 0.75rem 1rem;
  }
  
  /* Ombre personnalisée */
  .shadow-custom {
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.25);
    background-color: #ffffff;
    z-index: 1030;
  }
  
  /* Logo */
  .logo-navbar {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  .logo-navbar:hover {
    transform: scale(1.05);
  }
  
  /* Alignement parfait de tous les liens */
  .navbar .navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }
  
  /* Style des liens */
  .navbar .nav-link {
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    border-radius: 40px;
    min-width: 140px;
    padding: 0.5rem 1.2rem;
    text-align: center;
    gap: 0.5rem;
    position: relative;
  }
  
  /* Bulle esthétique */
  .nav-link.menu-bulle {
    background-color: #ffffff;
    box-shadow: none;
    position: relative;
  }
  
  .nav-link.menu-bulle:hover {
    background-color: #ffffff;
    color: #000;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    transform: scale(1.07);
    animation: pulseFestif 0.6s ease-in-out;
  }
  
  .nav-link.menu-bulle.active {
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 6px 15px rgb(0 0 0 / 20%);
    transform: scale(1.06);
}
  
  /* Icône avec un peu d’espace */
  .nav-link i {
    font-size: 1.1rem;
    margin-right: 6px;
  }
  
  /* Bouton Connexion/Profil aligné */
  .btn-connexion {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    height: 3rem;
    font-weight: 600;
    border-radius: 40px;
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid #007896;
    color: #007896;
    background-color: #fff;
  }
  
  .btn-connexion:hover {
    background-color: #001e25;
    color: #fff;
    box-shadow: 0 0 12px rgba(0, 120, 150, 0.25);
    transform: scale(1.05);
  }
  
  /* Responsive */
  @media (max-width: 991px) {
    .navbar .nav-link {
      min-width: unset;
      width: 100%;
      justify-content: flex-start;
    }
  
    .btn-connexion {
      width: 100%;
      justify-content: center;
    }
  }
  
  /* Animation festive discrète */
  @keyframes pulseFestif {
    0% {
      box-shadow: 0 0 0 rgba(255, 174, 0, 0.0);
    }
    50% {
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    }
    100% {
      box-shadow: 0 0 0 rgba(255, 174, 0, 0.0);
    }
  }
  
    
  
  
  /* Hero */
  .hero-section {
    background: linear-gradient(to right, #ffffff, #f8f9fa);
    min-height: 100vh;
    padding-top: 100px;
  }
  
  .hero-section h1 {
    color: #0d6efd;
  }
  
  .hero-section .btn {
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
  }
  
  /* Animations */
  .animate-fade-in {
    animation: fadeIn 1.2s ease-in-out;
  }
  
  .animate-slide-up {
    animation: slideUp 1.2s ease-in-out;
  }
  
  .animate-zoom {
    animation: zoomIn 1s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  @keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  
  .hero-section {
    position: relative;
    overflow: hidden;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-background {
    background-image: url('../../images/banniere.png');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: auto;
  }
  
  .text-bg {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
  }
  
  .hero-section h1,
  .hero-section p {
    color: #fff;
    text-transform: uppercase;
  }
  
  /* Animation flèche rebond */
  .scroll-icon {
    animation: bounce 2s infinite;
    display: inline-block;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(10px);
    }
    60% {
      transform: translateY(5px);
    }
  }
  
  .carousel-wrapper {
    gap: 2rem;
    overflow: hidden;
    scroll-behavior: smooth;
    width: 100%;
  }
  
  .card-prestation {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    width: 180px;
    min-width: 180px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s;
    margin-bottom: 20px; /* 👈 ajout de l'espacement */
  }
  
  
  .card-prestation:hover {
    transform: scale(1.05);
  }
  
  .img-prestation {
    width: 100px;
    height: 100px;
    object-fit: contain;
  }
  
  .prestation-label {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
  }
  
  /* Flèches */
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10;
    cursor: pointer;
  }
  
  /* Cache scrollbars */
  #carousel-prestations::-webkit-scrollbar {
    display: none;
  }
  
  #carousel-prestations {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  .titre-prestations {
    text-transform: uppercase;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #0d0d0d;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
  }
  
  .titre-prestations::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #000000;
    margin: 12px auto 0;
    border-radius: 2px;
  }
  /* Hide image on small devices */
.illustration-gauche {
    max-height: 740px;
    object-fit: contain;
    flex-shrink: 0;
  }
  
  /* Responsive: cacher présentateur sur mobile */
  @media (max-width: 768px) {
    .illustration-gauche {
      display: none;
    }
  }
  
  /* Style pour le menu déroulant sur mobile */
  .select-ville-mobile select.form-select {
    font-size: 1rem;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  }
  .about-section {
    background-color: #f8f9fa;
    padding: 3rem 1rem;
    border-top: 1px solid #ddd;
    margin-top: 3rem;
  }
  
  .about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .about-text-block {
    flex: 1 1 500px;
  }
  
  .about-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .about-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0d0d0d;
    position: relative;
  }
  
  .about-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #000000;
    margin-top: 12px;
    border-radius: 2px;
  }
  
  .about-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: justify;
  }
  
  .about-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
  }
  
  .about-list li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
  }
  
  .about-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
  }
  
  .about-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0d6efd;
  }
  
  .about-steps {
    padding-left: 1.2rem;
    list-style-type: decimal;
    color: #333;
  }
  
  .about-steps li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
      text-align: center;
    }
  
    .about-text-block {
      text-align: left;
    }
  
    .about-image {
      margin-top: 2rem;
    }
  
    .about-title {
      font-size: 1.6rem;
    }
  
    .about-text,
    .about-list li,
    .about-steps li {
      font-size: 1rem;
    }
  }

  .why-section {
    background-color: #ffffff;
    padding: 3rem 1rem;
    border-top: 1px solid #ddd;
    margin-top: 3rem;
  }
  
  .why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .why-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .why-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .why-text-block {
    flex: 1 1 500px;
  }
  
  .why-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0d0d0d;
    position: relative;
  }
  
  .why-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #000000;
    margin-top: 12px;
    border-radius: 2px;
  }
  
  .why-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    color: #333;
    text-align: justify;
  }
  
  .why-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
  }
  
  .why-list li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
  }
  
  .why-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
  }
  
  @media (max-width: 768px) {
    .why-container {
      flex-direction: column;
      text-align: center;
    }
  
    .why-text-block {
      text-align: left;
    }
  
    .why-image {
      margin-bottom: 2rem;
    }
  
    .why-title {
      font-size: 1.6rem;
    }
  
    .why-text,
    .why-list li {
      font-size: 1rem;
    }
  }

  .wordcloud-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: auto;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  #cloud {
    flex: 1 1 600px;
    min-height: 400px;
  }
  
  .wordcloud-image {
    flex: 1 1 300px;
    text-align: center;
  }
  
  .wordcloud-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .wordcloud-left {
    flex: 1 1 600px;
    text-align: center;
  }
  
  .wordcloud-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0d0d0d;
  }
  
  #cloud svg {
    margin: 0 auto;
    display: block;
  }
  
  @media (max-width: 768px) {
    .wordcloud-container {
      flex-direction: column;
    }
  
    .wordcloud-image {
      order: -1;
      margin-bottom: 1.5rem;
    }
  }
  .breadcrumb {
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    padding: 0.95rem 1.5rem;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    color: #333;
  }
  
  .breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    justify-content: flex-start; /* ✅ assure l’alignement à gauche */
    text-align: left;
  }
  
  .breadcrumb a,
  .breadcrumb .current {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .breadcrumb a {
    color: #007896;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .breadcrumb a:hover {
    color: #005f6b;
  }
  
  .separator {
    color: #aaa;
  }
  
  .current {
    color: #666;
  }
  
  .breadcrumb svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
  }
  