/**
 * ============================================================================
 * RAUCIMS & PARTNERS — PAGE DIRECTEUR GÉNÉRAL (DG)
 * ============================================================================
 *
 * Stylisation premium de la page Directeur Général.
 *
 * Palette de couleurs :
 * - Orange principal : #FF6B35
 * - Bleu marine : #1A2E4A
 * - Blanc : #FFFFFF
 * - Noir : #000000
 *
 * Structure :
 * - Section Intro : Titre de la page
 * - Section Biographie : Photo + Infos + Bio + Expertise
 * - Section Message : Message institutionnel du DG
 */

/* ============================
   VARIABLES CSS
   ============================ */
:root {
    --raucims-orange: #FF6B35;
    --raucims-orange-hover: #FF8555;
    --raucims-orange-light: rgba(255, 107, 53, 0.1);
    --raucims-blue-marine: #1A2E4A;
    --raucims-blue-dark: #0F1A2E;
    --raucims-white: #FFFFFF;
    --raucims-black: #000000;
    --raucims-text-gray: #555555;
    --raucims-bg-light: #F8F9FA;
    --raucims-bg-blue-light: #F5F7FA;
    --raucims-border-light: #E0E0E0;
    --raucims-transition: all 0.3s ease-in-out;
}

/* ============================
   SECTION 1 : INTRODUCTION
   ============================ */

.section_dg_intro {
    background: var(--raucims-bg-blue-light);
    padding: 60px 0;
    border-bottom: 1px solid var(--raucims-border-light);
}

.section_dg_titre {
    text-align: center;
}

.section_dg_titre h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--raucims-blue-marine);
    margin: 0;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

/* Soulignement élégant orange */
.section_dg_titre h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--raucims-orange);
    border-radius: 2px;
}

/* ============================
   SECTION 2 : BIOGRAPHIE
   ============================ */

.section_dg_biographie {
    padding: 60px 0;
    background: var(--raucims-white);
}

/* ============================
   PHOTO PLACEHOLDER (COLONNE GAUCHE)
   ============================ */

.dg-photo-placeholder {
    width: 100%;
    height: 320px;
    background: url('../images/dg/dg-sidebar.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(26, 46, 74, 0.15);
    transition: var(--raucims-transition);
    position: relative;
    overflow: hidden;
}

/* Effet hover subtil */
.dg-photo-placeholder:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 46, 74, 0.25);
}

/* Overlay gradient subtil */
.dg-photo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
    z-index: 1;
}

.dg-photo-icon {
    position: relative;
    z-index: 2;
}

.dg-photo-icon i {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.25);
    transition: var(--raucims-transition);
}

.dg-photo-placeholder:hover .dg-photo-icon i {
    color: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

/* ============================
   CARTE INFOS DG (COLONNE GAUCHE)
   ============================ */

.dg-info-card {
    background: var(--raucims-white);
    border: 2px solid var(--raucims-border-light);
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: var(--raucims-transition);
}

.dg-info-card:hover {
    border-color: var(--raucims-orange);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.15);
}

.dg-info-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--raucims-blue-marine);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.dg-info-role {
    font-size: 16px;
    font-weight: 600;
    color: var(--raucims-orange);
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dg-info-company {
    font-size: 15px;
    font-weight: 500;
    color: var(--raucims-text-gray);
    margin: 0 0 25px 0;
}

/* ============================
   CREDENTIALS (COLONNE GAUCHE)
   ============================ */

.dg-credentials {
    border-top: 1px solid var(--raucims-border-light);
    padding-top: 25px;
    margin-top: 5px;
}

.dg-credential-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--raucims-text-gray);
    margin: 0 0 15px 0;
    line-height: 1.6;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dg-credential-item:last-child {
    margin-bottom: 0;
}

.dg-credential-icon {
    color: var(--raucims-orange);
    font-size: 16px;
    flex-shrink: 0;
}

/* ============================
   CARTE BIOGRAPHIE (COLONNE DROITE)
   ============================ */

.dg-bio-card {
    background: var(--raucims-white);
    border: 2px solid var(--raucims-border-light);
    border-radius: 12px;
    padding: 40px 35px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.dg-bio-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--raucims-blue-marine);
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--raucims-orange);
}

.dg-bio-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--raucims-text-gray);
    line-height: 1.8;
    margin: 0 0 20px 0;
    text-align: justify;
}

.dg-bio-text:last-of-type {
    margin-bottom: 30px;
}

/* ============================
   EXPERTISE BOX (COLONNE DROITE)
   ============================ */

.dg-expertise-box {
    background: var(--raucims-orange-light);
    border-left: 4px solid var(--raucims-orange);
    border-radius: 8px;
    padding: 25px 30px;
    margin-top: 10px;
}

.dg-expertise-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--raucims-blue-marine);
    margin: 0 0 18px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dg-expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dg-expertise-item {
    font-size: 15px;
    font-weight: 500;
    color: var(--raucims-text-gray);
    margin: 0 0 12px 0;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dg-expertise-item:last-child {
    margin-bottom: 0;
}

.dg-expertise-item i {
    color: var(--raucims-orange);
    font-size: 16px;
    flex-shrink: 0;
}

/* ============================
   SECTION 3 : MESSAGE INSTITUTIONNEL
   ============================ */

.section_dg_message {
    padding: 80px 0;
    background: var(--raucims-bg-light);
}

.dg-message-card {
    background: var(--raucims-white);
    border-radius: 12px;
    padding: 50px 45px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* ============================
   QUOTE WATERMARK
   ============================ */

.dg-message-quote {
    position: absolute;
    top: 30px;
    right: 40px;
    z-index: 1;
    opacity: 0.06;
}

.dg-message-quote i {
    font-size: 180px;
    color: var(--raucims-orange);
}

/* ============================
   CONTENU MESSAGE
   ============================ */

.dg-message-content {
    position: relative;
    z-index: 2;
}

.dg-message-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--raucims-blue-marine);
    margin: 0 0 30px 0;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--raucims-orange);
}

.dg-message-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--raucims-text-gray);
    line-height: 1.9;
    margin: 0 0 20px 0;
    text-align: justify;
}

.dg-message-text.intro {
    font-size: 18px;
    font-weight: 600;
    color: var(--raucims-blue-marine);
    font-style: italic;
    margin-bottom: 25px;
}

/* ============================
   SIGNATURE
   ============================ */

.dg-message-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--raucims-border-light);
    text-align: right;
}

.dg-signature-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--raucims-blue-marine);
    margin: 0 0 5px 0;
}

.dg-signature-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--raucims-orange);
    margin: 0;
    font-style: italic;
}

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

/* Tablette (≤991px) */
@media (max-width: 991px) {
    .section_dg_intro {
        padding: 50px 0;
    }

    .section_dg_titre h2 {
        font-size: 32px;
    }

    .section_dg_biographie {
        padding: 50px 0;
    }

    .dg-photo-placeholder {
        height: 280px;
        margin-bottom: 25px;
    }

    .dg-photo-icon i {
        font-size: 100px;
    }

    .dg-info-card {
        margin-bottom: 40px;
    }

    .dg-bio-card {
        padding: 35px 30px;
    }

    .dg-bio-title {
        font-size: 26px;
    }

    .section_dg_message {
        padding: 60px 0;
    }

    .dg-message-card {
        padding: 40px 35px;
    }

    .dg-message-quote {
        top: 20px;
        right: 20px;
    }

    .dg-message-quote i {
        font-size: 140px;
    }

    .dg-message-title {
        font-size: 28px;
    }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
    .section_dg_intro {
        padding: 40px 0;
    }

    .section_dg_titre h2 {
        font-size: 28px;
    }

    .section_dg_biographie {
        padding: 40px 0;
    }

    .dg-photo-placeholder {
        height: 260px;
    }

    .dg-photo-icon i {
        font-size: 80px;
    }

    .dg-info-card {
        padding: 25px 20px;
    }

    .dg-info-name {
        font-size: 22px;
    }

    .dg-bio-card {
        padding: 30px 25px;
    }

    .dg-bio-title {
        font-size: 24px;
    }

    .dg-bio-text {
        font-size: 15px;
    }

    .dg-expertise-box {
        padding: 20px 25px;
    }

    .section_dg_message {
        padding: 50px 0;
    }

    .dg-message-card {
        padding: 35px 25px;
    }

    .dg-message-quote {
        top: 15px;
        right: 15px;
        opacity: 0.04;
    }

    .dg-message-quote i {
        font-size: 100px;
    }

    .dg-message-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .dg-message-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .dg-message-text.intro {
        font-size: 16px;
    }

    .dg-message-signature {
        text-align: center;
    }

    .dg-signature-name {
        font-size: 18px;
    }

    .dg-signature-title {
        font-size: 14px;
    }
}

/* Petit mobile (≤480px) */
@media (max-width: 480px) {
    .section_dg_intro {
        padding: 32px 0;
    }

    .section_dg_titre h2 {
        font-size: 24px;
    }

    .section_dg_biographie {
        padding: 32px 0;
    }

    .dg-photo-placeholder {
        height: 240px;
    }

    .dg-bio-card {
        padding: 25px 20px;
    }

    .dg-bio-title {
        font-size: 22px;
    }

    .dg-expertise-box {
        padding: 18px 20px;
    }

    .section_dg_message {
        padding: 40px 0;
    }

    .dg-message-card {
        padding: 30px 20px;
    }

    .dg-message-title {
        font-size: 22px;
    }

    .dg-signature-name {
        font-size: 17px;
    }
}
