/* ==================== GLOBAL ==================== */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdfdfd; /* Fond blanc très léger */
    color: #111111; /* Texte noir */
    line-height: 1.6;
}

ul {
    padding-left: 20px;
}

h1, h2, h3, h4, h5 {
    margin: 0;
}

/* ==================== HERO ==================== */
header {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, #a8e063, #56ab2f); /* Vert dégradé */
    color: #111;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1 1 500px;
    text-align: left;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #0a3d00; /* Vert foncé pour le titre */
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: #111111;
}

.hero-text button {
    padding: 14px 30px;
    font-size: 18px;
    background: linear-gradient(135deg, #56ab2f, #a8e063);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-text button:hover {
    background: linear-gradient(135deg, #4a9825, #92c150);
}

.hero-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
}

/* ==================== SECTIONS ==================== */
section {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2e7d32; /* Vert foncé */
    text-align: center;
}

section p, section ul {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    color: #111111;
}

/* ==================== FORMULAIRE ==================== */
form {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px 30px;
    background-color: #ffffff; /* Blanc pour le formulaire */
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="file"] {
    padding: 12px 15px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #56ab2f; /* Vert bordure */
    background-color: #f5f5f5;
    color: #111111;
    width: 100%;
}

form label {
    font-size: 14px;
    color: #111111;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

form button {
    padding: 14px;
    font-size: 18px;
    background: linear-gradient(135deg, #56ab2f, #a8e063);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background: linear-gradient(135deg, #4a9825, #92c150);
}

.step {
    display: none;
}

.step.active {
    display: flex;
    flex-direction: column;
}

/* ==================== COMMENTAIRES ==================== */
#comments {
    padding: 50px 20px;
    background-color: #e9f5e9; /* Vert très clair pour différencier */
}

.comment-feed {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.comment {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #f5fff5;
    padding: 15px;
    border-radius: 12px;
    width: 100%;
    max-width: 700px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.comment-avatar {
    width: 50px;
    height: 50px;
    background-color: #56ab2f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

.comment-body .name {
    font-weight: bold;
    color: #111111;
}

.comment-body .email {
    font-size: 0.85rem;
    color: #555555;
}

.comment-body .text {
    margin-top: 5px;
    color: #111111;
}

/* ==================== FOOTER ==================== */
footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #f5f5f5;
    color: #555555;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-text button {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .comment {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .comment-avatar {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8rem;
    }

    header p {
        font-size: 1rem;
    }

    form {
        padding: 25px;
    }

    .comment-avatar {
        font-size: 0.8rem;
    }
}
