/* Import de la police manuscrite depuis Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');

body {
    font-family: 'Shadows Into Light', cursive;
    background-color: #fefefe;
    color: #333;
    margin: 0;
    padding: 0;
}

/* En-tête */
header {
    background-color: #ffffff;
    padding: 2rem 1rem;
    border-bottom: 2px solid #eee;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.8rem;
    letter-spacing: 1px;
}

nav {
    margin-top: 1rem;
}

nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: #444;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #A8C3A1;
}

/* Conteneur principal */
.post-feed {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Article de blog */
.post {
    margin-bottom: 3rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 2rem;
}

.post img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.post-content {
    margin-top: 0.5rem;
}

.post h2 {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    margin: 0.3rem 0;
}

.date {
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.2rem;
}

.description {
    font-size: 1rem;
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* Petits points de couleur */
.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Couleurs par section */
.journal .dot { background-color: #A8C3A1; }      /* vert sauge */
.quotes .dot { background-color: #2D4C3C; }       /* vert forêt */
.learning .dot { background-color: #FFF4C1; }     /* jaune pastel */
.archived .dot { background-color: #F7D6DC; }     /* rose clair */
.brain .dot { background-color: #D3D3D3; }        /* gris doux */
