body
{
	background: #FAFAFA;
	font-family: Tahoma, Geneva, sans-serif;
	color: #333333;
}

header
{
    position: relative;
    text-align: center;
}

.banniere
{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.titre-banniere
{
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 4.5rem;
    color: #efebe2;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
    letter-spacing: 4px;
    font-weight: bold;
}

.logo-container
{
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.logo
{
    width: 120px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px #0004;
}

.bio
{
    margin: 80px auto 40px;
    width: 90%;
    max-width: 1000px;
    text-align: center;
}

.bio p
{
    text-align: justify;
	font-size: 16px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.bio h2
{
    font-size: 28px;
    margin-bottom: 15px;
	font-weight: bold;
}

.reseaux a
{
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;

    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;

    /* Relief initial */
    box-shadow:
        0 4px 0 #222,
        0 8px 12px rgba(0,0,0,0.4);

    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* 🔽 AU SURVOL : le bouton s'enfonce */
.reseaux a:hover
{
    transform: translateY(2px);
    box-shadow:
        0 2px 0 #222,
        0 4px 6px rgba(0,0,0,0.4);
}

/* 🔽 AU CLIC : encore plus enfoncé */
.reseaux a:active
{
    transform: translateY(4px);
    box-shadow:
        inset 0 3px 6px rgba(0,0,0,0.6);
}

.publications
{
    width: 90%;
    max-width: 1000px;
    margin: auto;
	position: relative;
}

.publications h2
{
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
}

.publication
{
	display: block; /* IMPORTANT */
    background: #fff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;

    text-decoration: none;
    color: inherit;
    cursor: pointer;

    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* effet enfoncé */
.publication:hover
{
    transform: translateY(2px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.publication .lire
{
    color: #d35400;
    font-weight: bold;
}

.publication .cover
{
    float: left;
    width: 120px;
    height: 170px;
    object-fit: cover;
    margin-right: 20px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.publication::after
{
    content: "";
    display: block;
    clear: both;
}

.publication h3
{
    font-size: 22px;
    margin-bottom: 15px;
}

.publication h4
{
    font-size: 18px;
    margin-bottom: 15px;
}

.publication p
{
    text-align: justify;
	font-size: 16px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.floating_button
{
    position: fixed;
    bottom: 20px;
    right: 20px;

    z-index: 1000;
}

.floating_button a
{
    display: inline-block;
    padding: 10px 14px;

    /* ✅ fond semi‑transparent */
    background: rgba(255, 255, 255, 0.6);
    color: #444;
    font-weight: bold;
    text-decoration: none;

    border-radius: 6px;

    /* ✅ relief */
    box-shadow:
        0 4px 0 rgba(0,0,0,0.15),
        0 8px 12px rgba(0,0,0,0.15);

    /* ✅ flou du fond (si supporté) */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease;
}

/* 🔽 enfoncement */
.floating_button a:hover
{
    transform: translateY(2px);
    background: rgba(255, 255, 255, 0.75);
    box-shadow:
        0 2px 0 rgba(0,0,0,0.15),
        0 4px 6px rgba(0,0,0,0.15);
}

/* 🔽 clic */
.floating_button a:active
{
    transform: translateY(4px);
    box-shadow:
        inset 0 3px 6px rgba(0,0,0,0.2);
}

.badge
{
    display: inline-block;
    padding: 4px 10px;
    margin-bottom: 10px;

    font-size: 13px;
    font-weight: bold;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ✅ Publié */
.badge-publie
{
    background: #2ecc71;
    color: #fff;
}

/* ⚠️ Brouillon */
.badge-brouillon
{
    background: #f39c12;
    color: #fff;
}

.footer
{
    width: 90%;
    max-width: 1000px;
    margin: 20px auto 10px;
    text-align: center;
    padding: 10px 0;
    color: #555;
}