@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arizonia&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Condiment&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* Reset + base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f3f4f6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  main {
    flex-grow: 1; /* Permet au contenu principal de prendre tout l'espace restant */
  }
  
  /* Navbar styles */
  /* Navbar styles */
.navbar {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 100px;
  width: 100px;
  object-fit: contain;
  justify-content: center;
  align-items: center;
}

/* Nav links */
.nav-links {
  font-family: "Bebas Neue";
  font-size: 1.3rem;
  font-style: normal;
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  position: relative;
  transition: color 0.3s;
  padding: 0.5rem;
  display: inline-block;
}

.nav-links a:hover {
  color: #2563eb;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #2563eb;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Contact Button */
.contact-btn a {
  font-family: "Bebas Neue";
  background-color: #2563eb;
  color: white;
  font-size: 1.5rem; /* taille du texte augmentée */
  padding: 0.5rem 2rem; /* plus d’espace intérieur */
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s;
}


.contact-btn a:hover {
  background-color: #1d4ed8;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #333;
}

/* Mobile menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 1rem;
  gap: 1rem;
}

.mobile-menu a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: #2563eb;
}

.mobile-contact {
  background-color: #2563eb;
  color: white;
  padding: 0.5rem;
  text-align: center;
  border-radius: 8px;
}
  /* Hidden class */
  .hidden {
    display: none;
  }
  
  /* Active link style */
  .active-link {
    color: #2563eb;
    font-weight: bold;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-links,
    .contact-btn {
      display: none;
    }
  
    .burger {
      display: flex;
    }
  }
  
  
  footer {
    position: relative;
    width: 100%;
    background: #3486ff;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: auto; /* S'assure que le footer est en bas */
  }
  
  footer .social_icon,
  footer .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
  }
  
  footer .social_icon li,
  footer .menu li {
    list-style: none;
  }
  
  footer .social_icon li a {
    font-size: 2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
  }
  
  footer .social_icon li a:hover {
    transform: translateY(-10px);
  }
  
  footer .menu li a {
    font-size: 1rem;
    font-family: "Oswald";
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    text-decoration: none;
    opacity: 0.75;
  }
  
  footer .menu li a:hover {
    opacity: 1;
    transition: 0.5s;
    transform: translateY(-10px);
  }
  
  footer p {
    color: #fff;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 0.9em;
  }
  
  footer .wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: whitesmoke url(wave.png);
    background-size: 1000px 100px;
  }
  
  footer .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
  }
  
  @keyframes animateWave {
    0% {
      background-position-x: 1000px;
    }
    100% {
      background-position-x: 0px;
    }
    
  }
  .cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 10px 20px;

  }
  
  .card {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 300px;
    background: linear-gradient(-45deg, #f89b29 0%, #ffffff 100%);
    border-radius: 10px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 40px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .card:hover {
    transform: rotate(-3deg) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
  }
  
  /* Contenu caché par défaut */
  .card__content {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: whitesmoke;
    width: 100%;
    padding: 1rem;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
    text-align: center;
  }
  
  /* S'affiche au survol */
  .card:hover .card__content {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Titres et description */
  .card__title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
  }
  
  .card__description {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .card {
      flex: 1 1 calc(50% - 40px);
    }
  }
  
  @media (max-width: 600px) {
    .card {
      flex: 1 1 100%;
    }
  }
  
  .label {
    margin-top: 5px;
    font-size: 1rem;
    color: #555;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(8px);
    }
  }

.titre-principal {
  margin-top: 5rem; 
  text-align: center;
  padding: 2rem 1rem;
  font-family: 'Oswald', sans-serif;
}

.titre-principal h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #0d47a1;
}

@media (max-width: 768px) {
  .titre-principal h1 {
    font-size: 1.5rem;
  }
}
.satisfaction-section {
  text-align: center;
  margin: 60px auto;
  max-width: 90%; /* au lieu de 800px, pour plus de flexibilité */
  padding: 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-out;
  margin-bottom: 10rem;
  position: relative;
}

.satisfaction-text {
  font-size: 1.2rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #0d47a1;
  margin-bottom: 20px;
}

/* IMAGE RESPONSIVE */
.satisfaction-section .satisfaction-image {
  max-width: 100%;      /* prend la largeur de son conteneur */
  height: auto;         /* garde les proportions */
  margin-bottom: 20px;
  border-radius: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.satisfaction-guarantee.shiny {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #00e676;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.6);
}

.satisfaction-guarantee.shiny::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.4) 100%
  );
  transform: skewX(-20deg);
  animation: shine 2.5s infinite;
}

/* MEDIA QUERIES POUR LES PETITS ÉCRANS */
@media (max-width: 600px) {
  .satisfaction-text {
    font-size: 1rem;
  }

  .satisfaction-guarantee.shiny {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
}


@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 130%;
  }
}

.badge-icon {
  font-size: 1.5rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




