/* =============================================
   BUREAU PAGE - SPECIFIC STYLES
   ============================================= */

/* ----- PAGE HEADER ----- */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--color-accent);
}

.back-link svg {
    transition: transform 0.3s ease;
}

.back-link:hover svg {
    transform: translateX(-5px);
}

.page-title {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
}

.page-intro {
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ----- MEMBERS SECTION ----- */
.members-section {
    padding-top: 40px;
}

.member-full {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.member-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-accent) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.member-full:hover::before {
    opacity: 1;
}

.member-full:hover {
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.03);
    transform: translateX(8px);
}

/* Member Header */
.member-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
}

.member-info {
    flex: 1;
}

.member-role-tag {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 100px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.member-name {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.member-tagline {
    color: var(--color-text-muted);
    font-style: italic;
    font-size: 1rem;
}

/* NOUVEAU STYLE POUR LES PHOTOS */
.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    /* Bordure dorée */
    border: 3px solid var(--color-accent);
    /* Ombre portée pour donner du relief */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    background-color: #000;
}

/* Member Content */
.member-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.member-bio p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.member-bio p:last-child {
    margin-bottom: 0;
}

.member-bio strong {
    color: var(--color-text);
    font-weight: 500;
}

.member-bio em {
    color: var(--color-text);
    font-style: italic;
}

/* Member Highlights */
.member-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.highlight:hover {
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.05);
}

.highlight-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    margin-bottom: 0.35rem;
}

.highlight-value {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-text);
}

/* ----- CTA SECTION ----- */
.cta-section {
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 992px) {
    .member-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .member-highlights {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .highlight {
        flex: 1;
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 60px;
    }
    
    .member-full {
        padding: 1.5rem;
    }
    
    .member-header {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .member-info {
        text-align: center;
    }
    
    .member-highlights {
        flex-direction: column;
    }
    
    .highlight {
        min-width: 100%;
    }
}