﻿/* ===== LAYOUT ===== */
.idee-recue-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text);
}

/* ===== HEADER ===== */
.idee-recue-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0.3rem 0.9rem;
    background: #ffd4a4;
    border: 2px solid #8b4513;
    border-radius: 10px;
}

.idee-recue-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.idee-recue-souscription {
    font-size: 1rem;
    color: #555;
    font-style: italic;
}

/* ===== SELECTEUR ===== */
.idee-recue-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.idee-recue-pill {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: 2px solid #8b4513;
    background: #b0c4de; /*   #fff;*/
    color: var(--text);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

    .idee-recue-pill:hover {
        background: #ffe8cc;
        transform: translateY(-1px);
    }

.idee-recue-pill-active {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

/* ===== SECTION AFFIRMATION ===== */
.idee-recue-section {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    background: #ffd4a4;
    border: 2px solid #8b4513;
    border-radius: 10px;
}

.idee-recue-affirmation {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* ===== BOUTONS DE POSITION ===== */
.idee-recue-positions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.btn-position {
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    border: 2px solid #8b4513;
    background: #b0c4de;/* #fff;*/
    color: var(--text);
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

    .btn-position:hover {
        background: #ffe8cc;
        transform: translateY(-1px);
    }

.btn-position-active {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

/* ===== REPONSE ET PISTE DE REFLEXION ===== */
.idee-recue-reponse {
    background: #e1c7a7; /*    #fff;*/
    border-radius: 8px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    text-align: justify;
    color: #222;
}

.idee-recue-piste {
    background: #e1c7a7; /*    #fff;*/
    border: 1px dashed #8b4513;
    border-radius: 8px;
    padding: 1.2rem;
}

    .idee-recue-piste h3 {
        font-family: var(--font-serif);
        font-size: 1rem;
        color: var(--primary);
        margin-bottom: 0.5rem;
    }

    .idee-recue-piste p {
        font-style: italic;
        line-height: 1.7;
        color: #4a3018;
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .idee-recue-page {
        padding: 1rem;
    }

    .idee-recue-header,
    .idee-recue-section {
        padding: 1rem;
    }

    .idee-recue-affirmation {
        font-size: 1.1rem;
    }

    .idee-recue-reponse {
        text-align: left;
    }
}
