:root {
  --orange: #D3822A;
  --brown: #4C1E0C;
  --bg: #fffaf0;
  --text: #3e2f22;
  --accent: #c58f65;
  --button: #a67c52;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
header {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  font-family: 'Poppins', sans-serif;
}
.logo {
  width: 120px;
}
.hamburger {
  font-size: 2rem;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  font-family: 'Poppins', sans-serif;
}
nav {
  display: flex;
  gap: 1.2rem;
  font-family: 'Poppins', sans-serif;
}
nav a {
  color: var(--brown);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
  font-family: 'Poppins', sans-serif;
}
nav a:hover {
  color: var(--brown);
}
@media (max-width: 800px) {
  nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 1.5rem;
    background: #fff;
    flex-direction: column;
    gap: 0;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    min-width: 180px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
  }
  nav.open {
    display: flex;
  }
  nav a {
    color: var(--brown);
    padding: 1rem;
    border-bottom: 1px solid #eee;
    font-family: 'Poppins', sans-serif;
  }
  .hamburger {
    display: block;
  }
}
a {
  text-decoration: none;
}
.hero {
  background: url('hero.jpg') no-repeat center center/cover;
  min-height: calc(100vh - 80px);
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  font-family: 'Poppins', sans-serif;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 9, 2, 0.65);
  z-index: 1;
}
@media (max-width: 800px) {
  .hero {
    min-height: calc(100vh - 70px);
    height: calc(100vh - 70px);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2rem 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}
.hero-content h1 {
  font-family: 'Poppins', serif;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.hero-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  font-family: 'Poppins', sans-serif;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
}
.btn-main, .btn-secondary {
  box-shadow: 0 4px 18px rgba(0,0,0,0.13);
}
.btn-main {
  background: var(--orange);
  color: var(--bg);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  font-family: 'Poppins', sans-serif;
}
.btn-main:hover {
  background: var(--orange);
  color: #fff;
  transform: scale(1.05);
}
.btn-secondary {
  background: #fff;
  color: var(--brown);
  border: 2px solid #fff;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  font-family: 'Poppins', sans-serif;
}
.btn-secondary:hover {
  background: #fff;
  color: var(--brown);
  transform: scale(1.05);
}
.whatsapp-float {
  background: var(--orange);
  color: var(--bg);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  font-family: 'Poppins', sans-serif;
}
.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 3;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  animation: bounce 1.5s infinite;
  font-size: 2.2rem;
  color: #fff;
  opacity: 0.85;
  font-family: 'Poppins', sans-serif;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(18px); }
}
main {
  max-width: 1100px;
  margin: auto;
  padding: 2rem 1rem 0 1rem;
  font-family: 'Poppins', sans-serif;
}
section {
  width: 100%;
  margin: 3rem 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 2.5rem 1.5rem;
  font-family: 'Poppins', sans-serif;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 1.5rem;
  text-align: center;
}
.about-content {
  max-width: 700px;
  margin: auto;
  text-align: justify;
  font-size: 1.1rem;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  font-family: 'Poppins', sans-serif;
}
.card {
  background: #f0d5b5;
  border-radius: 14px;
  padding: 2rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'Poppins', sans-serif;
}
.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}
.card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.card p {
  font-size: 0.8rem;
  color: #6d4c2b;
  font-family: 'Poppins', sans-serif;
}
.product-image {
  width: 100%;
  height: 60%;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: transform 0.2s;
}
.product-price {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 800;
  margin: 0.7rem 0;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
}
.avis-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  font-family: 'Poppins', sans-serif;
}
.avis {
  background: #f9e6d0;
  border-radius: 12px;
  padding: 1.2rem 1rem;
  max-width: 320px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  font-size: 1.1rem;
  color: var(--brown);
  position: relative;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
.avis .fa-star {
  color: var(--orange);
  margin-right: 2px;
}
.avis .client {
  font-weight: bold;
  margin-top: 0.7rem;
  display: block;
  font-size: 1.3rem;
  color: #a67c52;
  font-family: 'Poppins', sans-serif;
}
.reseaux-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.7rem;
  margin-top: 1rem;
  font-family: 'Poppins', sans-serif;
}
.reseaux-links a {
  color: var(--brown);
  background: #fff8f0;
  border-radius: 50%;
  padding: 1rem;
  font-size: 2.3rem;
  transition: color 0.3s, background 0.3s, transform 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reseaux-links a:hover {
  color: #fff;
  background: var(--accent);
  transform: scale(1.15);
}
.collab-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  padding: 1rem 0;
}
.collab-logos img {
  height: 60px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(0.2);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 0.5rem;
}
.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(120deg, #fff8f0 60%, #f9e6d0 100%);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 2.5rem 1.5rem;
  margin: 2rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.contact-infos {
  flex: 1;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  align-items: flex-start;
  justify-content: center;
}
.contact-info-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.contact-info-block i {
  font-size: 2.2rem;
  color: var(--orange);
  background: #fff8f0;
  border-radius: 50%;
  padding: 0.7rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.contact-info-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown);
  font-family: 'Poppins', sans-serif;
}
.contact-info-link {
  color: var(--brown);
  font-size: 1.05rem;
  text-decoration: underline;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}
.contact-map {
  flex: 2;
  min-width: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-map iframe {
  border-radius: 12px;
  border: 0;
  width: 100%;
  min-width: 180px;
  height: 120px;
}
@media (max-width: 700px) {
  .contact-flex {
    flex-direction: column;
    align-items: stretch;
    padding: 1.2rem 0.5rem;
  }
  .contact-map {
    margin-top: 2rem;
  }
}
.equipe-slider {
  position: relative;
  width: 400px;
  margin: 2rem auto;
  text-align: center;
}
.equipe-slide {
  display: none;
  flex-direction: column;
  align-items: center;
}
.equipe-slide.active {
  display: flex;
}
.equipe-photo {
  width: 100%;
  object-fit: cover;
  border-radius: 18px; /* coins arrondis mais pas circulaire */
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 1rem;
  background: #fff;
}
.equipe-nom {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.equipe-description {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 1rem;
  text-align: justify;
}
.equipe-prev, .equipe-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.3s;
}
.equipe-prev { left: -50px; }
.equipe-next { right: -50px; }
.equipe-prev:hover, .equipe-next:hover {
  background: var(--brown);
}
@media (max-width: 500px) {
  .equipe-slider { width: 100%; }
  .equipe-prev, .equipe-next { left: 5px; right: 5px; }
}
footer {
  width: 100%;
  background: #fff; /* Fond blanc */
  border-top: 2px solid var(--accent);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.04);
  padding: 2.5rem 1rem 1.5rem 1rem;
  text-align: center;
  font-size: 1rem;
  color: var(--brown);
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

footer a {
  color: var(--orange);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--brown);
}

footer #faq {
  margin-top: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background: #fff8f0;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.5rem 1rem;
}

footer #faq h3 {
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 1rem;
  font-weight: 700;
}

footer details {
  margin-bottom: 1rem;
  text-align: left;
}

footer summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--accent);
  font-size: 1rem;
  padding: 0.2rem 0;
  border-radius: 6px;
  transition: background 0.2s;
}

footer summary:hover {
  background: #f9e6d0;
}

footer details[open] summary {
  color: var(--brown);
}

footer details div {
  margin-top: 0.5rem;
  color: var(--text);
  font-size: 0.98rem;
}
.avis-slider {
  position: relative;
  width: 100%;
  max-width: 370px;
  margin: 2rem auto 0 auto;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avis-slide {
  display: none;
  width: 100%;
  transition: opacity 1s;
}
.avis-slide.active {
  display: block;
  animation: fadeAvis 1.4s;
}
@keyframes fadeAvis {
  from { opacity: 0; transform: scale(0.98);}
  to { opacity: 1; transform: scale(1);}
}
.avis-prev, .avis-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.3s;
  z-index: 2;
}
.avis-prev { left: -40px; }
.avis-next { right: -40px; }
.avis-prev:hover, .avis-next:hover {
  background: var(--brown);
}
.avis-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}
.avis-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: #e0c6a2;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.avis-dot.active {
  background: var(--orange);
}
@media (max-width: 500px) {
  .avis-slider { max-width: 98vw; }
  .avis-prev, .avis-next { display: none;}
}
.avis-photo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.7rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: block;
  margin-left: auto;
  margin-right: auto;
}