/*
Palette :
- Orange principal : #df6708
- Vert accent : #71aa34
- Jaune accent : #f6c700
- Texte : #2c2c2c
- Fond : #fef9f4
- Hover bouton : #c65400
*/
:root {
    --orange: #df6708;
    --orange-hover: #c65400;
    --green: #71aa34;
    --yellow: #f6c700;
    --text: #2c2c2c;
    --bg: #fef9f4;
    --white: #fff;
    --font-main: 'Inter', 'Segoe UI', 'Roboto', Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}
.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}
.main-header {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(223,103,8,0.07);
    padding: 1.5rem 0 1rem 0;
    margin-bottom: 2rem;
}
.logo {
    font-weight: 700;
    font-size: 2.1rem;
    color: var(--orange);
    text-decoration: none;
    letter-spacing: 1px;
}
.logo span {
    color: var(--green);
}
.main-footer {
    background: var(--green);
    color: var(--white);
    text-align: center;
    padding: 2rem 0 1rem 0;
    margin-top: 3rem;
}
section {
    margin-bottom: 3rem;
    padding: 2.5rem 0 2rem 0;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(223,103,8,0.04);
}
.hero {
    background: linear-gradient(120deg, #f6c700 0%, #df6708 100%);
    color: var(--text);
    text-align: center;
    padding: 3.5rem 0 3rem 0;
    position: relative;
    overflow: hidden;
}
.hero .hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.18;
    z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}
.hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.2rem;
    color: var(--text);
    opacity: 0.85;
}
.btn {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 1rem 2.2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.15rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(223,103,8,0.13);
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
    text-decoration: none;
    letter-spacing: 0.5px;
}

/* Boutons plus petits pour les cartes bienfaits */
.bienfait .btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.98rem;
    border-radius: 28px;
    margin-top: 1.1rem;
    box-shadow: 0 1px 4px rgba(223,103,8,0.09);
    font-weight: 500;
}

/* Bouton petit pour les avis */
.btn-small {
    padding: 0.45rem 1.1rem;
    font-size: 0.93rem;
    border-radius: 24px;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(223,103,8,0.08);
}
.btn:hover, .btn:focus {
    background: var(--orange-hover);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px rgba(223,103,8,0.18);
}
.bienfaits-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}
.bienfait {
    background: var(--bg);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(223,103,8,0.07);
    padding: 2rem 1.5rem 1.4rem 1.5rem;
    flex: 1 1 270px;
    max-width: 320px;
    text-align: center;
}
.bienfait-icon {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}
.bienfait h3 { font-size: 1.22rem; margin-bottom: 0.7rem; color: var(--orange); }
.bienfait ul { list-style: none; margin: 0; padding: 0; }
.bienfait li { font-size: 1rem; margin-bottom: 0.4rem; }
.valeurs-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.2rem;
}
.valeur {
    flex: 1 1 170px;
    max-width: 200px;
    text-align: center;
}
.valeur-icon {
    font-size: 2.3rem;
    margin-bottom: 0.7rem;
    color: var(--green);
}
.valeur h3 { font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--orange); }
.valeur p { font-size: 0.98rem; color: #444; }
.temoignages-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.2rem;
}
.temoignage {
    background: var(--bg);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(223,103,8,0.07);
    padding: 1.7rem 1.2rem 1.2rem 1.2rem;
    flex: 1 1 270px;
    max-width: 350px;
    text-align: left;
    position: relative;
}
.temoignage .stars {
    color: #f6c700;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}
.temoignage p { font-size: 1.07rem; margin-bottom: 0.7rem; }
.temoignage footer { font-size: 0.98rem; color: #666; }
.faq-list {
    margin-top: 2rem;
}
.faq-item {
    margin-bottom: 1.5rem;
}
.faq-item h3 {
    font-size: 1.08rem;
    color: var(--orange);
    margin-bottom: 0.35rem;
}
.faq-item p {
    color: #444;
    font-size: 1rem;
}
.cta {
    background: linear-gradient(120deg, #df6708 0%, #71aa34 100%);
    color: var(--white);
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(223,103,8,0.13);
}
.cta h2 { font-size: 1.6rem; margin-bottom: 1.2rem; font-weight: 700; }
.cta .btn {
    background: var(--white);
    color: var(--orange);
    font-weight: 700;
    margin-top: 1rem;
}
.cta .btn:hover {
    background: var(--yellow);
    color: var(--green);
}
.question-form {
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.question-form label {
    font-weight: 600;
    color: var(--green);
}
.question-form input, .question-form textarea {
    padding: 0.7rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
    background: #f9f9f9;
    outline: none;
    transition: border 0.18s;
}
.question-form input:focus, .question-form textarea:focus {
    border: 1.5px solid var(--orange);
}
.question-form button {
    align-self: flex-end;
}
/* Animations fade-in */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
.fade-in.visible { opacity: 1; transform: none; }
/* Responsive */
@media (max-width: 900px) {
    .container { width: 98%; }
    .bienfaits-grid, .valeurs-grid, .temoignages-list { gap: 1.2rem; }
}
@media (max-width: 600px) {
    .logo { font-size: 1.2rem; }
    section { padding: 1.2rem 0; }
    .btn { padding: 0.7rem 1.2rem; font-size: 1rem; }
    .bienfaits-grid, .valeurs-grid, .temoignages-list {
        flex-direction: column;
        gap: 1rem;
    }
    .bienfait, .valeur, .temoignage { max-width: 100%; }
}
