
.page-illu {
    overflow: hidden;
    height: 100vh;
    cursor: crosshair;
}


/* =====================
    SCÈNE PRINCIPALE
===================== */

.illu-scene {
    position: relative;

    width: 100%;
    height: calc(100vh - 2.5rem);

    overflow: hidden;
}


/* VIDÉO EN FOND */

.illu-video-fond {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter: saturate(0.75) contrast(1.05);
}


.illu-scene::after {
    content: '';

    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.25);

    pointer-events: none;
    z-index: 1;
}


.illu-hover-img {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
 
    max-width: 45vw;
    max-height: 50vh;
 
    object-fit: contain;
 
    opacity: 0;
    transition: opacity 0.25s ease;
 
    outline: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5);
 
    pointer-events: none;

}

.illu-hover-img.visible {
    opacity: 1;
}


/* =====================
    LISTE ILLU
===================== */

.illu-liste {
    position: absolute;
    bottom: 2.5rem;
    left: 2rem;
    z-index: 5;

    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.illu-liste-item {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;

    cursor: pointer;

    padding: 0.2rem 0.5rem;

    transition: background 0.15s;
}

.illu-liste-item:hover {
    background: rgba(255, 255, 255, 0.12);
    cursor: url(../IMG/curseur_hover.svg) 2 2, auto;
}


.illu-num {
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;

    color: rgba(255, 255, 255, 0.5);

    min-width: 1.5rem;
}

/* Nom illustration */
.illu-nom {
    font-family: 'Satoshi-Medium';
    font-size: 1rem;

    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;


    border-bottom: 1px solid rgba(255, 255, 255, 0.3);

    transition: border-color 0.2s, color 0.2s;
}

.illu-liste-item:hover .illu-nom {
    color: #ffffff;
    border-bottom-color: #ffffff;
}


.lettre-initiale-sm {
    font-family: 'Feroniapi';
    font-style: italic;
    font-size: 1.3rem;
}


/* =====================
    TASKBAR BAS 
===================== */

.illu-taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;

    height: 2.5rem;

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

    padding: 0 1rem;

    background: #c0c0c0;
    border-top: 2px solid #ffffff;
    box-shadow: inset 0 1px 0 #dfdfdf, inset 0 -1px 0 #808080;
}

/* HEURE */
.illu-taskbar-heure {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;

    color: #000000;

    background: #d4d0c8;
    border: 1px solid #808080;
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;

    padding: 0.15rem 0.4rem;

    min-width: 3.5rem;
    text-align: center;
}

/* CENTRE — tags texte */
.illu-taskbar-centre {
    display: flex;
    align-items: center;
    gap: 1.5rem;

    flex: 1;
    justify-content: center;
}

.illu-taskbar-tag {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;

    color: #333333;
    letter-spacing: 0.05em;
}

/* DROITE — chargement pixel */
.illu-taskbar-droite {
    display: flex;
    align-items: center;
}

.illu-taskbar-pixel {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;

    color: #6A00FF;

    letter-spacing: 0.05em;
}
