/* =====================
   GLOBAL RESET & BASE
===================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    scroll-behavior: smooth;
    line-height: 1.6;
    background-color: #fff;
    color: #212529;
  }
  
  /* =====================
     NAVIGATION
  ===================== */
  header {
    z-index: 1000;
  }
  
  header .nav-link {
    color: #212529;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  header .nav-link:hover {
    color: #ffc107;
  }

 /* =====================
   HERO SECTION
===================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 120px 0;
  color: #fff;
  text-align: center; /* texte centré */
  background: url("../../photo/fond2.JPG") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center; /* centre horizontalement */
}

.hero-section .container {
  position: relative;
  z-index: 1;
  max-width: 900px; /* plus large pour desktop */
  margin: 0 auto; /* centre le container */
}


.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); /* overlay plus doux */
  z-index: 0;
}

.hero-section h1 {
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

/* Effet zoom texte HERO */
.hero-section h1,
.hero-section p {
  transition: transform 0.5s ease-out;
  transform-origin: center center;
}

.hero-section h1 span {
  color: #ffc107; /* partie mise en valeur */
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.95;
  color: #f1f1f1;
}

.hero-section .btn-warning {
  background-color: #ffc107;
  border: none;
  color: #212529;
  font-weight: 700;
  padding: 12px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: 8px;
}

.hero-section .btn-warning:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-section .btn-outline-secondary {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.hero-section .btn-outline-secondary:hover {
  background: #fff;
  color: #000;
}

.hero-section .counter {
  font-size: 2rem;
  font-weight: 800;
  color: #ffc107;
}

.hero-section .small {
  font-size: 0.85rem;
  color: #ddd;
  text-transform: uppercase;
}

/* =====================
   HERO SECTION (Desktop adjust)
===================== */
@media (min-width: 769px) {
  .hero-section {
    justify-content: center; /* centre horizontalement */
    text-align: center;      /* centre le texte */
  }

  .hero-section .container {
    margin-left: 0;  /* supprime l’espace gauche */
    max-width: 900px; /* un peu plus large pour desktop */
  }

  .hero-section h1 {
    font-size: 4rem; /* plus grand pour desktop */
    line-height: 1.15;
  }

  .hero-section p {
    font-size: 1.4rem; /* texte un peu plus gros */
    margin-bottom: 30px;
  }

  .hero-section .mt-4.d-flex,
  .hero-section .mt-5.d-flex {
    justify-content: center; /* boutons et compteurs centrés */
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
    min-height: 90vh; /* occupe presque tout l’écran */
    padding: 80px 20px;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
}

  
  
  /* =====================
     SECTIONS CARDS (ATOUTS, SERVICES, TEMOIGNAGES, FORFAITS)
  ===================== */
/* CARD CONTAINER */
#atouts .card {
    border: none;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background-color: #fff;
  }
  
  /* HOVER EFFECT */
  #atouts .card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
  }
  
  /* ICON CONTAINER */
  #atouts .card .bg-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-radius: 50%;
    font-size: 2rem; /* plus grand */
    margin-bottom: 1rem;
  }
  
  /* TITLES AND TEXT */
  #atouts h5 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  #atouts p {
    font-size: 0.95rem;
    color: #6c757d;
  }

  #apropos img {
    width: 100%;       /* remplit la colonne */
    height: auto;      /* conserve le ratio */
    max-height: 200px; /* limite la hauteur */
    object-fit: cover; /* recadre si nécessaire */
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  #apropos img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
  }
  
/* Section À PROPOS */
#apropos {
  min-height: 500px; /* garde une hauteur fixe sur desktop */
  display: flex;
  align-items: center;
}

/* Images */
#apropos img {
  width: 100%;
  height: 220px;         /* fixe la hauteur sur desktop */
  object-fit: cover;     /* recadre si nécessaire */
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.5s, opacity 0.5s;
}

#apropos img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

/* Mobile */
@media (max-width: 767px) {
  #apropos {
    min-height: 900px; /* augmente la section pour accueillir des images plus hautes */
    flex-direction: column;
    align-items: stretch;
  }

  #apropos .col-6 {
    flex: 0 0 100% !important; 
    max-width: 100% !important;
    margin-bottom: 1rem;
  }

  #apropos img {
    height: 280px;  /* plus grand que 180px → images bien visibles */
  }
}


  
  /* Service cards */
.service-card {
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
  }
  
  .service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
  }
  
  /* Icones dans cercle */
  .service-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
  }
  

  
  
  
  /* =====================
     GALERIE
  ===================== */
  #galerie img {
    border-radius: 0.5rem;
    transition: transform 0.3s, filter 0.3s;
    cursor: pointer;
  }
  
  #galerie img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
  }
  
/* Produits */
#produits {
    background-color: #f9f9f9; /* fond clair et doux */
    padding: 60px 20px;
  }
  
  #produits .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffc107; /* titre en jaune doré */
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .product-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  
  .product-card img {
    height: 220px;
    object-fit: contain;
    padding: 1rem;
    background-color: #ffffff; /* léger fond derrière l'image pour un effet « produit premium » */
  }
  
  .product-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #212529; /* texte sombre */
  }
  
  .product-card .card-text {
    font-size: 0.9rem;
    color: #555; /* gris clair pour le texte */
  }
  
  @media (max-width: 768px) {
    .product-card img {
      height: 180px;
    }
  }
  

  /* =====================
     FAQ
  ===================== */
.accordion-button {
    transition: all 0.3s;
    font-size: 1rem;
    background-color: #fff;
    color: #212529;
    border-radius: 0.5rem;
  }
  
  .accordion-button:not(.collapsed) {
    background-color: #212529;
    color: #ffc107;
  }
  
  .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
  }
  
  .accordion-body {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    border-radius: 0 0 0.5rem 0.5rem;
  }
  
  .accordion-item {
    border: none;
    overflow: hidden;
  }
  
  .accordion-button::after {
    transition: transform 0.3s;
  }
  
  .accordion-button.collapsed::after {
    transform: rotate(0deg);
  }
  
  .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
  }
  
  /* Forfaits */
.forfait-card {
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
  }
  
  .forfait-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
  }
  
  .forfait-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
  }
  
  
  /* =====================
     CONTACT FORM
  ===================== */
 /* CONTACT */
#contact {
    position: relative;
  }
  
  /* Formulaire */
  .contact-input {
    border-radius: 0.5rem;
    transition: box-shadow 0.3s, border-color 0.3s;
    background-color: #212529;
    color: #fff;
    border: 1px solid #6c757d;
    padding: 0.75rem 1rem;
  }
  
  .contact-input:focus {
    box-shadow: 0 0 12px rgba(255, 193, 7, 0.5);
    border-color: #ffc107;
  }
  
  /* Bouton */
  .contact-btn {
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  }
  
  /* Cartes d'info */
  .contact-card {
    border-radius: 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
  }
  
  .contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

  /* Placeholder blanc pour les inputs du formulaire */
.contact-input::placeholder {
    color: #fff; /* blanc */
    opacity: 1;  /* pour que ça ne soit pas transparent */
  }
  
  /* Optionnel : pour Safari */
  .contact-input::-webkit-input-placeholder {
    color: #fff;
    opacity: 1;
  }
  
  .contact-input:-ms-input-placeholder { /* IE */
    color: #fff;
  }
  
  .contact-input::-ms-input-placeholder { /* Edge */
    color: #fff;
  }

  /* =====================
   CONCLUSION SECTION
===================== */
.conclusion-section {
    background-color: #212529; /* fond sombre */
    color: #fff; /* texte blanc */
    padding: 80px 0;
    text-align: center;
  }
  
  .conclusion-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffc107; /* titre jaune pour rappel du style */
    margin-bottom: 20px;
  }
  
  .conclusion-section .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #f8f9fa; /* texte blanc légèrement doux */
  }
  
  @media (max-width: 767px) {
    .conclusion-section .section-title {
      font-size: 2rem;
    }
  
    .conclusion-section .lead {
      font-size: 1rem;
    }
  }
  
  
/* =====================
   CONTACT SECTION (Fond clair, jaune & noir)
===================== */
.contact-section {
    background-color: #f7f7f7; /* fond clair */
    color: #212529; /* texte noir/gris foncé */
    padding: 80px 20px;
    position: relative;
    z-index: 1;
  }
  
  .contact-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffc107; /* accent jaune */
    margin-bottom: 25px;
    text-align: center;
  }
  
  .contact-section p {
    font-size: 1rem;
    color: #444; /* texte gris foncé pour contraste */
    line-height: 1.7;
    margin-bottom: 12px;
  }
  
  .contact-section a {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
  }
  
  .contact-section a:hover {
    color: #e0a800; /* jaune un peu plus foncé au hover */
    text-decoration: underline;
  }
  
  /* WhatsApp Button */
  .contact-section .btn-dark {
    background-color: #212529; /* bouton noir */
    color: #ffc107;
    border-radius: 50px;
    padding: 0.7rem 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .contact-section .btn-dark:hover {
    background-color: #ffc107;
    color: #212529;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  
  /* Layout Styling */
  .contact-section .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
  }
  
  .contact-section .contact-info {
    flex: 1;
    min-width: 280px;
    max-width: 480px;
    padding: 20px;
  }
  
  .contact-section .map-container {
    flex: 1;
    min-width: 280px;
    max-width: 600px;
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  }
  
  .contact-section .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    transition: transform 0.3s ease;
    border-radius: 10px;
  }
  
  .contact-section .map-container iframe:hover {
    transform: scale(1.02);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .contact-section .content-wrapper {
      flex-direction: column;
      align-items: center;
    }
  
    .contact-section .map-container {
      height: 300px;
      margin-top: 20px;
    }
  }
  

  
/* =====================
   FOOTER
===================== */
.footer {
    background-color: #fff;
    color: #212529;
    font-size: 0.9rem;
    padding: 40px 0;
    border-top: 1px solid #dee2e6;
  }
  
  .footer .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
  }
  
  .footer a {
    color: #212529;
    transition: color 0.3s;
  }
  
  .footer a:hover {
    color: #ffc107;
    text-decoration: none;
  }
  
  .footer .bi {
    font-size: 1.25rem;
    transition: transform 0.2s, color 0.3s;
  }
  
  .footer .bi:hover {
    transform: translateY(-3px);
    color: #ffc107;
  }
  
  .footer ul.list-inline {
    padding-left: 0;
    margin-bottom: 0.5rem;
  }
  
  .footer ul.list-inline li a {
    margin: 0 8px;
  }
  
  
  /* =====================
     FORFAITS LIST
  ===================== */
  #forfaits ul li {
    margin-bottom: 0.5rem;
  }
  
  /* =====================
     RESPONSIVE
  ===================== */
  @media (max-width: 992px) {
    .hero-section .d-md-flex,
    #apropos .d-md-flex,
    #contact .d-md-flex {
      flex-direction: column;
    }
    .hero-section {
      text-align: center;
    }
    .hero-section .hero-img {
      margin-top: 2rem;
    }
    #apropos .row.g-3 {
      margin-top: 1rem;
    }
  }
  