/* ==========================================================================
   1. RESET, STRUCTURES ET VARIABLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --side-padding: 15px; 
    --mouse-x: 0px;
    --mouse-y: 0px;
}

body {
    background-color: #000000;
    color: #000000;
    font-family: 'Montserrat', sans-serif; 
    font-size: 16px;           
    letter-spacing: -0.01em;   
    line-height: 1.45;         
    overflow-x: hidden;
}

/* ==========================================================================
   2. CURSEUR VOLANT TITRE SOURIS
   ========================================================================== */
.custom-cursor-title {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none; 
    z-index: 9999; 
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    
    transform: translate3d(var(--mouse-x), var(--mouse-y), 0) translate(-50%, -50%); 
    transform-origin: center center;
    
    opacity: 0;
    white-space: nowrap;
    will-change: transform, opacity;
    transition: none !important;
}

.custom-cursor-title.active {
    opacity: 1 !important;
}

body.force-cursor-visible .project-fullscreen.clickable-cover {
    cursor: auto !important;
}

@media (min-width: 769px) {
    .project-fullscreen.clickable-cover {
        cursor: none !important;
    }
}

.page-fade {
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}
.fade-out {
    opacity: 0 !important;
}
.hidden {
    display: none !important;
}

/* ==========================================================================
   3. BARRE DE NAVIGATION
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px var(--side-padding); 
    z-index: 100;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important; 
    font-weight: 550 !important;
    font-variation-settings: "wght" 550 !important;
    letter-spacing: -0.01em !important;    
    transition: color 0.3s ease;
    pointer-events: none !important; 
}

.logo a, .nav-links a {
    pointer-events: auto !important; 
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 550 !important;
    font-variation-settings: "wght" 550 !important;
    color: #ffffff !important;
    text-decoration: none;
    font-size: inherit;
    letter-spacing: inherit;
    transform: none !important; 
    transform-origin: unset !important;
    display: inline-block !important;
}

.nav-links a {
    margin-left: 24px;
}

.navbar-about-colors {
    color: #ffffff !important;
}
.navbar-about-colors .logo a,
.navbar-about-colors .nav-links a {
    color: #ffffff !important;
}

/* ==========================================================================
   4. ACCUEIL ET COUVERTURES DE PROJETS
   ========================================================================== */
.fullscreen-projects {
    background-color: #000;
    width: 100vw;
}

.project-fullscreen {
    position: relative;
    width: 100vw;
    height: 100vh;   
    height: 100dvh;  
    overflow: hidden;
    display: flex;   
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.bg-image-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw !important;     
    height: 100vh !important;    
    height: 100dvh !important;   
    object-fit: cover !important; 
    object-position: center center; 
    filter: grayscale(15%);
    transition: filter 0.5s ease;
    pointer-events: none; 
}

.project-fullscreen:hover .bg-image-cover {
    filter: grayscale(0%);
}

.video-playable {
    pointer-events: auto !important;
}

video::-webkit-media-controls {
    display: none !important;
}

/* ==========================================================================
   4B. LECTEUR VIDÉO SUR-MESURE MINIMALISTE (TOUT EN BAS)
   ========================================================================== */
.video-controls-bar {
    position: absolute;
    bottom: 20px;
    left: var(--side-padding);
    right: var(--side-padding);
    height: 40px;
    background: transparent !important; 
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0 15px;
    z-index: 1000;
}

.video-ctrl-btn {
    background: none !important;
    border: none !important;
    outline: none !important;
    cursor: pointer !important;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 550 !important;
    font-size: 11px !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    padding: 0 !important;
    white-space: nowrap;
}

.video-timeline-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.video-seek-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    height: 2px;
    outline: none;
    cursor: pointer;
    transition: background 0.3s;
}

.video-seek-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
}

.video-seek-slider::-moz-range-thumb {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

/* ==========================================================================
   5. GALERIES EN FLUX VERTICAL
   ========================================================================== */
.project-gallery-page {
    width: 100vw;
    background-color: #000;
}

.vertical-stream {
    display: flex;
    flex-direction: column;
    align-items: center; 
    width: 100vw;
    background-color: #000;
}

.stream-item {
    width: 100vw;
    height: auto; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: #000;
    overflow: hidden;
}

.gallery-stream-img {
    width: 100%;
    height: auto; 
    display: block;
}

/* ==========================================================================
   6. SECTION ABOUT (MODIFIÉ : Dégradé inspiré du ciel de la photo)
   ========================================================================== */
.about-section-fullscreen {
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding: 120px var(--side-padding) 0px var(--side-padding); 
    background: linear-gradient(to bottom, #a3a3a3 0%, #c2c2c2 100%) !important; 
    color: #ffffff !important;            
    position: relative; 
}

.about-content-wrapper {
    max-width: 45vw; 
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    margin-left: 0;
    margin-right: auto;              
    margin-top: 20px;            
    padding-bottom: 20px !important;
}

.about-bio-text p { 
    margin-bottom: 0px !important; 
    line-height: 1.5 !important; 
    font-size: 14px !important;
}

.about-meta-lists { 
    margin-top: 12px; 
    display: flex; 
    flex-direction: column; 
    gap: 24px; 
}

.meta-block h3 { 
    margin-bottom: 8px; 
    text-transform: uppercase; 
}

.meta-block ul { 
    list-style-type: none; 
    padding-left: 0 !important; 
    margin-left: 0 !important;
}

.meta-block li { 
    margin-bottom: 2px; 
}

.bullet-list {
    list-style-position: inside !important;
    padding-left: 0 !important;
}

.bullet-list li {
    display: list-item !important;
}

.about-email-link { 
    color: #ffffff !important; 
    text-decoration: none; 
}

.about-email-link:hover { 
    text-decoration: underline; 
}

/* =0. CONFIGURATION DES PUCES POUR CREATIVE SERVICES = */
.bullet-list {
    list-style-type: disc !important; /* 'disc' fait des ronds pleins. Si tu préfères des tirets, remplace par 'none' ou utilise des puces personnalisées */
    list-style-position: inside !important; /* Place le point à l'intérieur du texte, aligné proprement */
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.bullet-list li {
    display: list-item !important;
    margin-bottom: 2px !important;
}

/* ==========================================================================
   PETIT LOGO / DESSIN SECTION ABOUT (MOITIÉ DROITE)
   ========================================================================== */


/* ==========================================================================
   7. PIED DE PAGE
   ========================================================================== */
.footer-about {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    gap: 24px; 
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 var(--side-padding) 15px var(--side-padding); 
    box-sizing: border-box;
}

.jobs-dropdown-container,
.credits-dropdown-container {
    position: relative;
    display: inline-block;
    padding-top: 15px; 
    margin-top: -15px;
}

.jobs-trigger-btn,
.credits-trigger-btn {
    background: none !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    cursor: pointer !important;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 550 !important;
    font-variation-settings: "wght" 550 !important;
    font-size: 14px !important;
    letter-spacing: -0.01em !important;
    text-transform: uppercase !important;
    display: flex;
    align-items: center;
    transform: none !important; 
}

.jobs-dropdown-content,
.credits-dropdown-content {
    position: absolute !important;
    bottom: calc(100% - 5px) !important; 
    right: 0 !important;
    background: transparent !important;
    border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding-top: 12px !important;
    width: max-content !important;
    text-align: right !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(5px) !important;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s !important;
    z-index: 100 !important;
}

.jobs-dropdown-container:hover .jobs-dropdown-content,
.credits-dropdown-container:hover .credits-dropdown-content {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.jobs-dropdown-content .jobs-text,
.credits-dropdown-content .credits-text,
.jobs-text,
.credits-text {
    font-size: 14px !important;
    line-height: 1.4 !important;
    color: #ffffff !important;
    margin: 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: -0.01em !important;
}

/* ==========================================================================
   8. POÈME AUTOMATIQUE
   ========================================================================== */
.poetic-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    z-index: 20000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s;
    pointer-events: none;
    cursor: pointer;
}

.poetic-overlay.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.poetic-content {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-align: left;
    line-height: 1.1;
    padding: 0;
    text-transform: none;
    
    display: grid;
    grid-template-columns: repeat(6, 180px); 
    column-gap: 20px; 
    max-width: 1200px; 
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    align-items: start; 
}

.colonne {
    padding: 10px;
    margin-top: 0px; 
}

.poetic-content p {
    margin-bottom: 5px;
}

/* ==========================================================================
   9. FORCE TYPO
   ========================================================================== */
.about-section-fullscreen,
.about-section-fullscreen a,
.about-section-fullscreen p,
.about-section-fullscreen div,
.about-section-fullscreen li {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;           
    font-size: 14px !important;            
    letter-spacing: -0.01em !important;     
    line-height: 1.45 !important;          
    text-transform: none;                  
}

.brand-highlight, 
.about-title-highlight,
.about-section-fullscreen strong,
.about-section-fullscreen h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;  
    font-size: 14px !important;                             
    text-shadow: none !important; 
    text-transform: uppercase !important;  
    color: #ffffff !important;
}

/* ==========================================================================
   10. RESPONSIVE DESIGN (MOBILE)
   ========================================================================== */
@media (max-width: 768px) {
    :root {
        --side-padding: 8px; 
    }
    
    body {
        cursor: auto !important;
    }
    
    .custom-cursor-title {
        display: none !important;
    }

    .navbar { 
        padding: 15px var(--side-padding); 
        flex-direction: row; 
        justify-content: space-between;
    }

    .logo a, .nav-links a {
        font-size: 11px !important;
    }

    .navbar-about-colors { 
        background-color: transparent; 
    }

    .nav-links a { 
        margin-left: 15px; 
    }

    .about-section-fullscreen { 
        padding: 100px var(--side-padding) 40px var(--side-padding); 
    } 

    .about-content-wrapper { 
        max-width: 100%; 
    }

    .jobs-dropdown-content {
        right: auto !important;
        left: -30px !important; 
        text-align: left !important;
    }
    
    .credits-dropdown-content {
        right: 0 !important;
        text-align: right !important;
    }
}

/* Correction radicale de l'espace entre les paragraphes de la bio */
.about-bio-text p {
    margin-bottom: 15px !important; /* Change 4px par 0px, 8px, ou ce que tu veux pour ajuster l'espace */
}