   body {
  margin: 0;
  font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
  background: #0d0d0d;
  color: #f0f0f0;
  line-height: 1.7;
  scroll-behavior: smooth;
}
.header-boxed {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
  gap: 2rem;
  background-color: #0d0d0d;
  flex-wrap: wrap;
  text-align: center;
  padding: 1rem;
}
.video-center {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.video-responsive {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  position: relative;
}

.video-responsive video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.header-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.header-text h1 {
  color: #ffcc00;
  font-size: 2.8rem;
  margin: 0;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.header-subtitle {
  font-size: 1.3rem;
  color: #fff;
  margin-top: 1rem;
}


header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), ;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

header h1 {
  font-size: 2.8rem;
  margin: 0;
  color: #ffcc00;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.header-subtitle {
  font-size: 1.3rem;
  margin-top: 1rem;
  color: #fff;
}

main {
  padding: 2rem 1.5rem;
  max-width: 1100px;
  margin: auto;
}

section {
  margin-bottom: 3rem;
  background: rgba(20, 20, 20, 0.7);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

h2 {
  color: #ffcc00;
  border-bottom: 2px solid #ffcc00;
  padding-bottom: 0.5rem;
  font-size: 1.8rem;
  margin-top: 0;
}

p, ul {
  font-size: 1.1rem;
  line-height: 1.8;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 1.5rem 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

a {
  color: #ffcc00;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

a:hover {
  color: #ffdd33;
  text-decoration: underline;
}

.product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.product-links a {
  display: inline-block;
  background-color: #1a1a1a;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  border: 1px solid #ffcc00;
  font-weight: 600;
}

.product-links a:hover {
  background-color: #333;
  text-decoration: none;
  transform: translateY(-2px);
}

.testimonial {
  font-style: italic;
  padding: 1.5rem;
  background: rgba(255, 204, 0, 0.1);
  border-left: 4px solid #ffcc00;
  margin: 1.5rem 0;
}

.testimonial-author {
  font-weight: bold;
  text-align: right;
  margin-top: 1rem;
}

.breadcrumb {
  padding: 0.5rem 0;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #aaa;
}

.breadcrumb a {
  color: #aaa;
}

.breadcrumb a:hover {
  color: #ffcc00;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  margin-top: 2rem;
  position: relative;
}

.carousel-track {
  display: flex;
  animation: scroll-cards 80s linear infinite;
  gap: 1.5rem;
  padding: 1rem 0;
}

.review-tile {
  flex: 0 0 280px;
  background-color: #1a1a1a;
  color: #f0f0f0;
  padding: 1.2rem;
  border: 1px solid #ffcc00;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  font-size: 1rem;
  line-height: 1.6;
  min-height: 200px;
  max-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@keyframes scroll-cards {
  0% { transform: translateX(0); }
  100% { transform: translateX(-4500px); }
}

.magic-divider {
  text-align: center;
  margin: 4rem auto 3rem auto;
  position: relative;
}

.magic-divider h2 {
  font-size: 2rem;
  color: #ffcc00;
  font-family: 'Playfair Display', serif;
  position: relative;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: #1a1a1a;
  border: 2px solid #ffcc00;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
}

/* MENU STICKY AVEC TOGGLE */
.nav-menu {
  background-color: #1a1a1a;
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
}

.nav-menu ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: #ffcc00;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  background-color: #333;
  text-decoration: none;
  color: #ffdd33;
}

/* BOUTON BURGER */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #ffcc00;
  cursor: pointer;
  padding: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  header {
    height: 50vh;
  }

  header h1 {
    font-size: 2rem;
  }

  .header-subtitle {
    font-size: 1.1rem;
  }

  main {
    padding: 1rem;
  }

  section {
    padding: 1rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .review-tile {
    flex: 0 0 80%;
    font-size: 0.95rem;
    min-height: 220px;
    max-height: 220px;
  }

  .carousel-track {
    animation: scroll-cards-mobile 90s linear infinite;
  }

  @keyframes scroll-cards-mobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(-6000px); }
  }

  .menu-toggle {
    display: block;
    margin: 0 auto 1rem;
  }

  .nav-menu ul {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-menu.open ul {
    display: flex;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    text-align: center;
  }
