
     /* HEADER STYLE IMAGE */
    header {
      position: relative;
      height: 70vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 60px;
      background: linear-gradient(135deg, #fff8f0 0%, #ffe4cc 100%);
      overflow: hidden;
    }

    header::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(254, 153, 0, 0.15) 0%, transparent 70%);
      border-radius: 50%;
    }

#home {

  background:
    linear-gradient(
      rgba(255, 250, 245, 0.8),
      rgba(255, 250, 245, 0.9)
    ),
    url("https://images.pexels.com/photos/1055272/pexels-photo-1055272.jpeg");
  background-size: cover;
  background-position: center;
  height: auto;

}

    .header-content {
      flex: 1;
      z-index: 2;
      max-width: 600px;
    }

    .header-content h1 {
      font-family: 'Pacifico', cursive;
      font-size: 64px;
      color: var(--secondary);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .header-content p {
      font-size: 20px;
      color: #666;
      margin-bottom: 10px;
      line-height: 1.6;
    }

    .btn {
      padding: 15px 40px;
      background: var(--primary);
      color: white;
      text-decoration: none;
      border-radius: 30px;
      font-weight: 600;
      display: inline-block;
      transition: all 0.3s ease;
      box-shadow: 0 5px 20px rgba(254, 153, 0, 0.3);
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(254, 153, 0, 0.4);
    }

    .header-image {
      position: relative;
      z-index: 2;
    }

    .header-image img {
      width: 350px;
      height: 350px;
      object-fit: cover;
      border-radius: 50%;
      border: 15px solid white;
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
      margin-bottom: 10px;
    }
    
    /* SECTION À PROPOS AMÉLIORÉE */
    #about {
      padding: 100px 40px;
      background: white;
      position: relative;
    }

    #about h2 {
      font-family: 'Pacifico', cursive;
      font-size: 48px;
      color: var(--secondary);
      text-align: center;
      margin-bottom: 60px;
      position: relative;
    }

    #about h2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: var(--primary);
      border-radius: 2px;
    }

    .about-flex {
      display: flex;
      align-items: center;
      gap: 80px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px;
    }

    .about-text {
      flex: 1.2;
    }

    .about-text p {
      font-size: 18px;
      line-height: 2;
      color: #555;
      margin-bottom: 25px;
      text-align: justify;
    }

    .about-text strong {
      color: var(--primary);
      font-weight: 700;
    }

    .about-highlights {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 35px;
    }

    .highlight-item {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 15px;
      background: var(--light-cream);
      border-radius: 12px;
      border-left: 4px solid var(--primary);
    }

    .highlight-item span {
      font-size: 24px;
    }

    .highlight-item p {
      font-size: 14px;
      font-weight: 600;
      color: var(--secondary);
      margin: 0;
    }

    .about-image {
      flex: 1;
      position: relative;
    }

    .about-image::before {
      content: '';
      position: absolute;
      top: -20px;
      right: -20px;
      width: 100%;
      height: 100%;
      background: var(--primary);
      border-radius: 30px;
      z-index: -1;
      opacity: 0.2;
    }

    .about-image img {
      width: 100%;
      max-width: 450px;
      border-radius: 30px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.15);
      display: block;
    }

    /* PRODUITS */
    section {
      padding: 80px 40px;
      text-align: center;
    }

    h2 {
      font-family: 'Pacifico', cursive;
      font-size: 42px;
      margin-bottom: 50px;
      color: var(--secondary);
      position: relative;
      display: inline-block;
    }

    h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--primary);
    }

    .products {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .product-item {
      background: white;
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: all 0.4s ease;
    }

    .product-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .product-item img {
      width: 100%;
      height: 250px;

    }

    .product-item h3 {
      margin: 20px 0 10px;
      font-weight: 700;
      font-size: 22px;
      color: var(--secondary);
    }

    .product-item p {
      font-size: 15px;
      color: #777;
      margin-bottom: 25px;
      padding: 0 20px;
    }

    /* GALERIE */
    .gallery {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .gallery img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .gallery img:hover {
      transform: scale(1.05);
    }

    /* WHATSAPP */
    .whatsapp {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background: #25D366;
      color: white;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 28px;
      text-decoration: none;
      box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
      z-index: 2000;
      transition: all 0.3s ease;
    }

    .whatsapp:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    }


    /* Testimonial script */
  .testimonials-carousel {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-item {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
}

.testimonial-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

.note {
  margin-top: 10px;
  font-size: 18px;
  color: #f5c518;
}

