/* Rédacteur d'article - style journal Minecraft */
#journal-editor.minecraft-book {
    max-width: 700px;
    margin: 40px auto 30px auto;
    padding: 30px 40px;
    background: url('../Images/paper-texture.png') repeat;
    background-size: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5), inset 0 0 30px rgba(0,0,0,0.05);
    font-family: 'Minecraftia', monospace; /* police pixel/Minecraft */
    line-height: 1.6;
    color: #2b2b2b;
    position: relative;
}

/* Effet pliure / page */
#journal-editor.minecraft-book::before,
#journal-editor.minecraft-book::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 8px;
    background: #e6cfa3;
}
#journal-editor.minecraft-book::before { left: 0; border-radius: 12px 0 0 12px; }
#journal-editor.minecraft-book::after { right: 0; border-radius: 0 12px 12px 0; }

/* Titre */
#journal-editor.minecraft-book .book-header h2 {
    font-size: 1.8rem;
    color: #6b4226;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px #fff7d9;
}

/* Form inputs et textarea */
#journal-editor.minecraft-book input,
#journal-editor.minecraft-book textarea {
    font-family: 'Minecraftia', monospace;
    font-size: 16px;
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 12px;
    border: 1px solid #d4c9a1;
    border-radius: 4px;
    background: rgba(255,255,240,0.9);
    color: #2b2b2b;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
    resize: vertical;
}

/* Bouton publier */
#journal-editor.minecraft-book button {
    font-family: 'Minecraftia', monospace;
    font-size: 16px;
    padding: 10px 20px;
    background: #8b5e3c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s ease;
}

#journal-editor.minecraft-book button:hover {
    background: #6b4226;
}

/* Labels */
#journal-editor.minecraft-book label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #5a3e27;
}

.journaux h2 {
    font-family: 'Minecraftia', monospace; /* police pixel/Minecraft */
    font-size: 2rem;
    text-align: center;
    color: #6b4226; /* couleur bois / parchemin */
    text-shadow: 
        2px 2px #fdf0c2, /* effet parchemin clair derrière */
        1px 1px #8b5e3c; /* effet contour bois */
    background: url('../Images/paper-texture.png') repeat;
    background-size: cover;
    display: inline-block;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4), inset 0 0 10px rgba(255,255,255,0.1);
    margin-bottom: 30px;
}
.letter {
    position: absolute;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    left: 0;
    right: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.letter.out {
    transform: translateX(120%); /* part vers la droite */
    opacity: 0;
}

.letter.in {
    transform: translateX(-120%); /* arrive de la gauche */
    opacity: 0;
}

.letter.move-down {
    transform: translateY(100%); /* pousse les autres vers le bas */
}
