/* ==========================================================================
   VARIABLES DE THÈME
   ========================================================================== */
:root {
    --bg: #1e1f22;
    --bg-card: #2a2c2f;
    --text-main: #e6e6e6;
    --text-muted: #9aa0a6;
    --accent: #4cc37b;
    --border: #3a3d40;

    --code-bg: #242628;
    --code-border: var(--accent);

    --inline-code-bg: rgba(76,195,123,0.15);
    --inline-code-color: #7fffb2;
}

[data-theme="light"] {
    --bg: #ffffff;
    --bg-card: #f5f6f7;
    --text-main: #222;
    --text-muted: #666;
    --accent: #268a58;
    --border: #dadada;

    --code-bg: #f1f3f3;
    --inline-code-bg: #e6f5eb;
    --inline-code-color: #1f6a47;
}

/* ==========================================================================
   LAYOUT GÉNÉRAL
   ========================================================================== */
body {
    overflow-x: auto;
}

body {
    font-family: system-ui, Arial, sans-serif;
    line-height: 1.7;
    margin: 0;
    background: var(--bg);
    color: var(--text-main);
}
.main-content {
    min-width: 0;
}

.sidebar {
    min-width: 200px;
    flex-shrink: 1;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
header {
    background: var(--bg-card);
    padding: 1rem 0;
    border-bottom: 2px solid var(--accent);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 1rem;
    padding: 0;
    list-style: none;
}

header a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

/* ==========================================================================
   STRUCTURE PAGE
   ========================================================================== */
.content-wrapper {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}


.main-content { flex: 3; }
.sidebar      { flex: 1; }

/* ==========================================================================
   BLOCS / CARTES
   ========================================================================== */

.main-content .article {
    margin-bottom: 2rem; /* espace entre les articles */
}

.article, .bio, .all-tags {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.article img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;  /* centrer horizontalement */
}

/* ==========================================================================
   TITRES
   ========================================================================== */
h1, h2, h3, h4 {
    color: var(--accent);
    margin-top: 1.5rem;
}

/* ==========================================================================
   LIENS
   ========================================================================== */
a { color: var(--accent); }
a:hover { text-decoration: underline; }

/* ==========================================================================
   CODE
   ========================================================================== */
.codehilite {
    background: var(--code-bg);
    border-left: 3px solid var(--code-border);
    padding: 1rem;
    border-radius: 6px;
    overflow-x: auto;
    font-family: "JetBrains Mono", monospace;
}

code {
    background: var(--inline-code-bg);
    color: var(--inline-code-color);
    padding: 2px 5px;
    border-radius: 4px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.9em;
}

/* ==========================================================================
   TAGS / META
   ========================================================================== */
.meta-box,
.tag {
    background: var(--accent);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
}

/* TAGS DANS LA SIDEBAR */


.all-tags .tags-list {
    display: flex;
    flex-wrap: wrap;   /* les tags passent à la ligne si trop larges */
    gap: 6px;          /* espace entre les tags */
}

.all-tags a {
    display: inline-block; /* pour conserver le style des spans .meta-box */
}

.all-tags .meta-box {
    white-space: normal; /* permet le retour à la ligne à l'intérieur du tag si texte long */
}


.sidebar > div {
    margin-bottom: 1.5rem; /* espace entre bio et tags */
}


.navigation {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex: 0 0 100%;
}


.navigation a:hover {
    background: #c2e6c2;
}



/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    margin-top: 3rem;
    padding: 2rem 0;
    text-align: center;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1000px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
}
