/*
Palette principale :
- Orange argousier : #df6708
- Fond beige doux : #fff6ed
- Texte foncé naturel : #442c1f
- Hover/secondaire : #f0a252
Font : 'Poppins', sans-serif
*/

/**** CONTACT FORMULAIRE ****/
.contact-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(223,103,8,0.07);
  margin: 3rem 0 2rem 0;
  padding: 2.5rem 0 2rem 0;
}
.contact-section h2 {
  text-align: center;
  color: var(--orange);
  margin-bottom: 1.7rem;
}
.contact-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-form label {
  font-weight: 500;
  color: var(--dark);
}
.contact-form input,
.contact-form textarea {
  padding: 0.7rem 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff6ed;
  color: var(--dark);
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--orange);
  outline: none;
}
.contact-form button[type="submit"] {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.contact-form button[type="submit"]:hover {
  background: var(--hover);
}
.success-message, .error-message {
  text-align: center;
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 500;
}
.success-message {
  background: #e7faea;
  color: #1e7d3a;
  border: 1.5px solid #b0eac3;
}
.error-message {
  background: #fff0ee;
  color: #c02d1d;
  border: 1.5px solid #f3b3a2;
}


:root {
  --orange: #df6708;
  --beige: #fff6ed;
  --dark: #442c1f;
  --hover: #f0a252;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  background: var(--beige);
  color: var(--dark);
  min-height: 100vh;
}
.container {
  width: 90%; max-width: 1100px; margin: 0 auto;
}
.header {
  background: #fff;
  border-bottom: 2px solid var(--orange);
  padding: 1.2rem 0 0.7rem 0;
}
.logo {
  font-size: 2rem;
  color: var(--orange);
  margin: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
nav { margin-top: 0.5rem; display: flex; gap: 2rem; }
nav a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover { color: var(--orange); }
/**** HERO ****/
.hero {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 2.5rem 0 1.5rem 0;
  background: var(--beige);
  animation: fadeIn 1s;
}
.hero-flex {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2.5rem;
}

.hero-content {
  flex: 1 1 350px;
  min-width: 260px;
  order: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}
.hero-img {
  width: 320px;
  max-width: 35vw;
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(223,103,8,0.13);
  order: 2;
  align-self: flex-end;
  margin-left: 2.5rem;
}
/**** BIENFAITS ****/
.bienfaits {
  background: #fff;
  border-radius: 1.5rem;
  margin: 2.5rem 0;
  padding: 2rem 1rem;
  box-shadow: 0 2px 18px rgba(223,103,8,0.08);
}
.bienfaits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 2rem;
}
.bienfait {
  flex: 1 1 180px; min-width: 170px;
  background: var(--beige);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 2px 8px rgba(68,44,31,0.07);
  text-align: center;
  transition: transform 0.18s;
}
.bienfait:hover {
  transform: translateY(-6px) scale(1.03);
  background: #fff;
}
.bienfait i {
  font-size: 2.1rem;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.bienfait h3 { font-size: 1.1rem; margin: 0.5rem 0 0.6rem 0; }
/**** VALEURS ****/
.valeurs {
  margin: 2.5rem 0;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem 1rem;
  box-shadow: 0 2px 18px rgba(223,103,8,0.08);
}
.valeurs-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.valeurs-list li {
  flex: 1 1 220px; min-width: 180px;
  font-size: 1.1rem;
  color: var(--dark);
  background: var(--beige);
  border-radius: 1rem;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 2px 8px rgba(68,44,31,0.07);
}
.valeurs-list i { font-size: 1.7rem; color: var(--orange); }
/**** TEMOIGNAGE ****/
.temoignage {
  margin: 2.5rem 0;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 18px rgba(223,103,8,0.08);
  text-align: center;
}
.temoignage-block {
  font-size: 1.1rem;
  color: var(--dark);
  font-style: italic;
  margin: 0 auto;
  max-width: 600px;
  position: relative;
}
.temoignage-block footer {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--orange);
  font-style: normal;
}
/**** FAQ ****/
.faq {
  margin: 2.5rem 0;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem 1rem;
  box-shadow: 0 2px 18px rgba(223,103,8,0.08);
}
.faq-list { margin-top: 1.5rem; }
.faq-item {
  margin-bottom: 1rem;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(68,44,31,0.06);
  background: var(--beige);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--orange);
  padding: 1rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}
.faq-question:hover {
  background: var(--hover);
  color: #fff;
}
.faq-answer {
  display: none;
  padding: 1rem;
  color: var(--dark);
  background: #fff;
}
.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.5s;
}
/**** CTA ****/
.cta {
  margin: 2.5rem 0 1.5rem 0;
  text-align: center;
  padding: 2rem 1rem;
  background: var(--orange);
  border-radius: 1.5rem;
  color: #fff;
}
.btn-primary, .btn-cta {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
  margin-top: 1.2rem;
}
.btn-primary:hover, .btn-cta:hover {
  background: var(--hover);
  color: #fff;
}
/**** FOOTER ****/
.footer {
  background: #fff;
  border-top: 2px solid var(--orange);
  padding: 1.2rem 0 0.7rem 0;
  text-align: center;
  color: var(--dark);
  font-size: 1rem;
}
/**** RESPONSIVE ****/
@media (max-width: 900px) {
  .hero {
    gap: 2rem;
    padding: 2rem 0 1rem 0;
  }
  .hero-img {
    width: 220px;
    max-width: 60vw;
    margin-left: 1rem;
  }
  .bienfaits-list, .valeurs-list {
    flex-direction: column;
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 1.5rem 0 1rem 0;
  }
  .hero-content {
    order: 1;
    min-width: unset;
    text-align: center;
  }
  .hero-img {
    order: 2;
    margin: 0 auto;
    margin-top: 1.5rem;
    width: 180px;
    max-width: 80vw;
    display: block;
    align-self: center;
  }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
