﻿/* ===== LAYOUT ===== */
.emotion-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text);
}

/* ===== HEADER ===== */
.emotion-header {
    text-align: center;
    margin-bottom: 2rem;
    /*padding: 1.5rem;*/
    background: #ffd4a4;
    border: 2px solid #8b4513;
    border-radius: 10px;
}

.emotion-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.emotion-accroche {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: #5a3a1a;
}

/* ===== SECTIONS ===== */
.emotion-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;
}

    .emotion-section h2 {
        font-family: var(--font-serif);
        color: var(--primary);
        font-size: 1.4rem;
        margin-top: 0;
        margin-bottom: 1rem;
        border-bottom: 1px solid var(--border);
        padding-bottom: 0.5rem;
    }

.emotion-definition-courte {
    font-size: 1.05rem;
    background: #e1c7a7; /*    #fff;*/
    line-height: 1.7;
    text-align: justify;
    color: #222;
    border-radius: 8px;
}

/* ===== CE QU'ELLE EST / N'EST PAS ===== */
.definition-colonnes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.definition-colonne h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}

.definition-est h3 {
    color: #2c6e2f;
}

.definition-nest-pas h3 {
    color: var(--error);
}

.definition-colonne ul {
    padding-left: 1.2rem;
}

.definition-colonne li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #333;
}

/* ===== ENTREE DOUCE (bloc poétique) ===== */
.emotion-entree-douce {
    background: #e1c7a7; /*    #fff;*/
    border-style: dashed;
}

.entree-douce-texte {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
    color: #4a3018;
}

/* ===== METAPHORES ===== */
.metaphores-liste {
    padding-left: 1.2rem;
}

    .metaphores-liste li {
        margin-bottom: 0.6rem;
        font-family: var(--font-serif);
        font-style: italic;
        font-size: 1rem;
        color: #333;
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .emotion-page {
        padding: 1rem;
    }

    .emotion-header,
    .emotion-section {
        padding: 1rem;
    }

    .definition-colonnes {
        grid-template-columns: 1fr;
    }

    .emotion-definition-courte {
        text-align: left;
    }
}
