/* Palette personnalisée Aronia */
:root {
    --violet: #682e8e;
    --violet-hover: #4f1d6d;
    --green: #93c01f;
    --beige: #fef8f0;
    --text: #2c2c2c;
    --bg: #ffffff;
    --font-main: 'Poppins', 'Open Sans', 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(--bg);
    box-shadow: 0 2px 12px rgba(104,46,142,0.07);
    padding: 1.5rem 0 1rem 0;
    margin-bottom: 2rem;
}
.logo img {
    display: block;
    margin: 0 auto;
    height: 54px;
    max-width: 180px;
    width: auto;
}
.main-footer {
    background: var(--violet);
    color: var(--bg);
    text-align: center;
    padding: 2rem 0 1rem 0;
}
footer .copyright a {
    color: #fff !important;
}

section {
    margin-bottom: 3rem;
    padding: 2.5rem 0 2rem 0;
    background: var(--beige);
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(104,46,142,0.04);
}
.hero {
    background: linear-gradient(120deg, #682e8e 0%, #93c01f 100%);
    color: var(--bg);
    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.3rem;
}
.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.1rem;
    color: var(--beige);
}
.btn {
    display: inline-block;
    background: var(--violet);
    color: var(--bg);
    padding: 1rem 2.2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.15rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(104,46,142,0.13);
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.btn:hover, .btn:focus {
    background: var(--violet-hover);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px rgba(104,46,142,0.16);
}
.btn-small {
    font-size: 0.98rem;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    line-height: 1.1;
    min-width: 0;
}
.bienfaits-grid, .valeurs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.bienfait, .valeur {
    flex: 1 1 220px;
    background: var(--bg);
    border-radius: 14px;
    padding: 1.5rem 1.2rem;
    box-shadow: 0 2px 8px rgba(104,46,142,0.07);
    text-align: center;
    margin-bottom: 0.8rem;
}
.bienfait-icon {
    font-size: 2.1rem;
    margin-bottom: 0.7rem;
    color: var(--violet);
}
.bienfait h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--violet-hover);
}
.valeur-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--green);
}
.valeur h3 {
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
    color: var(--green);
}
.temoignages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}
.temoignage {
    flex: 1 1 260px;
    background: var(--bg);
    border-radius: 14px;
    padding: 1.5rem 1.2rem;
    box-shadow: 0 1px 4px rgba(104,46,142,0.09);
    text-align: left;
    margin-bottom: 0.8rem;
    position: relative;
}
.temoignage .stars {
    color: #f6c700;
    font-size: 1.12rem;
    margin-bottom: 0.4rem;
}
.temoignage footer {
    margin-top: 0.7rem;
    font-size: 1rem;
    color: var(--violet);
}
.faq-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}
.faq-item {
    flex: 1 1 240px;
    background: var(--bg);
    border-radius: 14px;
    padding: 1.3rem 1.1rem;
    box-shadow: 0 1px 4px rgba(104,46,142,0.07);
    margin-bottom: 0.7rem;
}
.faq-item h3 {
    font-size: 1.08rem;
    color: var(--violet);
    margin-bottom: 0.4rem;
}
.cta {
    background: linear-gradient(120deg, #682e8e 0%, #93c01f 100%);
    color: var(--bg);
    text-align: center;
    padding: 2.5rem 0 2.2rem 0;
    border-radius: 18px;
    margin-bottom: 2.2rem;
    position: relative;
}
.cta-img {
    max-width: 160px;
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(104,46,142,0.13);
    margin-bottom: 1.2rem;
}
.question-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.2rem;
}
.question-form label {
    font-weight: 500;
    color: var(--violet);
}
.question-form input, .question-form textarea {
    padding: 0.7rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
}
.question-form button {
    align-self: flex-start;
    margin-top: 0.3rem;
}
/* Animations fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}
.fade-in.visible {
    opacity: 1;
    transform: none;
}
/* Responsive */
@media (max-width: 800px) {
    .bienfaits-grid, .valeurs-grid, .temoignages-list, .faq-list {
        flex-direction: column;
        gap: 1.2rem;
    }
    .bienfait, .valeur, .temoignage, .faq-item {
        margin-bottom: 1.2rem;
    }
}
@media (max-width: 500px) {
    .hero h1 { font-size: 1.5rem; }
    .hero-subtitle { font-size: 1.01rem; }
    .btn { padding: 0.7rem 1.2rem; font-size: 1rem; }
}
