:root {
    --primary: #6D28D9;
    --gold: #FFD700;

    --color-bg: #FFF8F0;
    --color-text: #333333;
    --color-border: #E5D6C8;

    --color-highlight: #D4B896;

    --color-accent-1: #6D28D9;
    --color-accent-2: #B48A5A;
}

/* ==========================================
   RESET
========================================== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding-top: 100px;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, sans-serif;
    line-height: 1.75;
}

/* ==========================================
   NAVBAR
========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: min(95%, 1400px);

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0.6rem 1.2rem;

    background: linear-gradient(
        to bottom,
        #EDE9FE,
        #6D28D9
    );

    border-bottom: 3px solid #ddd;
    border-radius: 0 0 12px 12px;

    box-shadow: 0 6px 16px rgba(0,0,0,0.28);

    z-index: 1000;
}

/* ==========================================
   LOGO
========================================== */

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;

    background: transparent;
    border: none;
    cursor: pointer;

    text-decoration: none;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.navbar-brand span {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

/* ==========================================
   MENU
========================================== */

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links button,
.dropdown-btn {
    appearance: none;
    -webkit-appearance: none;

    background: transparent;
    border: none;
    cursor: pointer;

    color: white;
    text-decoration: none;

    padding: 0.45rem 0.8rem;

    font-size: 0.85rem;
    font-weight: 500;

    white-space: nowrap;

    border-radius: 6px;

    transition: all .2s ease;
}

.nav-links button:hover,
.nav-links button.active,
.dropdown-btn:hover {
    background: rgba(255,255,255,0.2);
    color: var(--gold);
}

/* ==========================================
   DROPDOWN
========================================== */

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;

    position: absolute;
    top: 100%;
    left: 0;

    min-width: 280px;

    background: linear-gradient(
        to bottom,
        #EDE9FE,
        #6D28D9
    );

    border: 1px solid #ddd;
    border-top: none;

    border-radius: 0 0 10px 10px;

    box-shadow: 0 8px 18px rgba(0,0,0,0.35);

    overflow: hidden;

    z-index: 1100;
}

.dropdown-content button {
    display: block;
    width: 100%;

    padding: 0.75rem 1.2rem;

    text-align: left;

    background: transparent;
    border: none;
    cursor: pointer;

    color: white;
    font-size: inherit;
}

.dropdown-content button:hover {
    background: rgba(255,255,255,0.15);
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
}
/* ==========================================
   CONTENEUR
========================================== */

.container {
    width: min(95%, 1400px);
    margin: 0 auto;
}
/* ======================
PAGE ACCUEIL
====================== */

.home-title {
text-align: center;
color: #843fa1;
margin-bottom: 0.5rem;
}

.home-subtitle {
text-align: center;
color: #b96ad9;
font-style: italic;
margin-bottom: 2rem;
}

.home-center {
text-align: center;
}

.section-title {
color: #843fa1;
margin-top: 2rem;
}

.home-list {
margin-bottom: 2rem;
}

.home-link {
margin-top: 2rem;
}

.home-link a {
color: #843fa1;
font-weight: 600;
text-decoration: none;
}

.home-link a:hover {
text-decoration: underline;
}

.home-notice,
.home-contact-title,
.home-contact-mail {
text-align: center;
font-weight: 600;
}

.home-contact-mail {
margin-bottom: 2rem;
}

/* ==========================================
   IMAGES
========================================== */

.bio-image {
    max-width: 360px;
    border-radius: 10px;

    box-shadow:
        0 10px 28px rgba(0,0,0,0.15);
}

/* ==========================================
   FOOTER
========================================== */

footer {
    margin-top: 4rem;

    padding: 2rem;

    text-align: center;

    background: #222;
    color: #ccc;
}

/* ==========================================
   RESPONSIVE TABLETTE
========================================== */

@media (max-width: 1200px) {

    .nav-links {
        gap: 4px;
    }

    .nav-links a,
    .dropdown-btn {
        font-size: 0.75rem;
        padding: 0.35rem 0.55rem;
    }

}
/* ====================== BIO CONTAINER ====================== */
.bio-container {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 1.8rem auto 2.2rem auto;
    padding: 2rem 2.2rem 2.2rem;
    background-color: var(--color-bg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(212, 184, 150, 0.2);
	margin-top: 10px !important;
}

/* ====================== IMAGE BIO - HAUTE + TRÈS À DROITE ====================== */
.bio-image-container {
    position: relative;
    margin: -195px 0 20px auto !important;   /* auto à droite + marge négative en haut */
    margin-left: 680px !important;           /* ← Décalage important vers la droite */
    width: fit-content;
    max-width: 360px;
    border-radius: 10px;
    padding: 0.7rem;
    background-color: white;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 28px rgba(212, 184, 150, 0.3);
    transform: rotate(1.5deg);
    z-index: 10;
}

.bio-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* ====================== BIO PARAGRAPHES ====================== */
.bio-intro {
    text-align: center;
    font-size: 1.32rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2.2rem;
    padding: 1rem;
    background-color: rgba(244, 212, 182, 0.3);
    border-radius: 8px;
    border-left: 5px solid var(--color-highlight);
    width: 80%;
}

.bio-paragraph {
    position: relative;
    padding: 1.6rem;
    margin: 1.8rem 0;
    background-color: white;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    box-shadow: 0 5px 14px rgba(212, 184, 150, 0.18);
    color: var(--color-text);
    line-height: 1.75;
}

.bio-paragraph.p1 {
    margin-left: 4.5rem !important;
    border-top: 4px solid var(--color-accent-1);
    width: 50%;
}

.bio-paragraph.p2 {
    margin-left: -1rem !important;
    border-top: 4px solid var(--color-accent-2);
    width: 50%;
}
.bio-btn {
    appearance: none;
    -webkit-appearance: none;

    background: linear-gradient(
        to bottom,
        #EDE9FE,
        #6D28D9
    );

    border: none;
    border-radius: 8px;

    color: white;
    font-size: 0.95rem;
    font-weight: 600;

    padding: 0.8rem 1.4rem;

    cursor: pointer;

    transition: all .2s ease;

    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.bio-btn:hover {
    color: var(--gold);
    background: linear-gradient(
        to bottom,
        #F5F3FF,
        #7C3AED
    );

    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.bio-btn:active {
    transform: translateY(0);
}
/* ==========================================
   RESPONSIVE MOBILE
========================================== */

@media (max-width: 768px) {

    .navbar {
        width: 98%;
        padding: 0.8rem;
        flex-direction: column;
        gap: 0.8rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    body {
        padding-top: 180px;
    }

}
