/* ---------- BASE ---------- */
body {
    margin: 0;
    background: #f4f4f4;
    font-family: League;
    font-size: 16px;
    color: #000;
}

/* ---------- BANNIÈRE ---------- */
.project-banner {
    width: 100%;
    border-bottom: 1px solid #000;
    background: #eaeaea;
    padding: 30px 30px 10px;
}

.project-title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: Grave;
}

/* ---------- ZONE PROJET ---------- */
.container-projet {
    background: #eaeaea;
}

/* ---------- COLONNES ---------- */
.col-icons,
.col-principal,
.col-scroll-img {
    position: relative;
    padding: 25px;
    box-sizing: border-box;
    background: #eaeaea;
}

/* séparations verticales */
.col-principal::before,
.col-scroll-img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    height: calc(100% - 80px);
    width: 1px;
    background: #000;
}

/* ---------- ICÔNE PROJET ---------- */
.project-icon {
    width: 64px;
    height: 64px;
    border: 2px solid #000;
    padding: 6px;
    margin-bottom: 20px;
    background: #f4f4f4;
    object-fit: contain;
}

/* ---------- COLONNE CENTRALE ---------- */
.project-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 1px solid #000;
    margin-bottom: 30px;
    background: #000;
}

.project-video iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.desc {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ---------- COLONNE DROITE ---------- */
.scroll-img {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #000;
    cursor: zoom-in;
}

/* ---------- ZOOM ---------- */
#zoom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 20000;
}

#zoom-overlay img {
    max-width: 90%;
    max-height: 90%;
    border: 1px solid #000;
}