/* --- HEADER H1 --- */
.selection-header {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1.5rem clamp(1rem, 5vw, 4rem) 2rem;
}
.selection-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
}
.selection-title .title-sub {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1.2px var(--color-black-01);
}

/* --- STRUCTURE LIGNES --- */
.projets-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 4rem);
}
.projet-line {
    display: flex;
    align-items: center;
    gap: 5%;
    margin-bottom: 8rem;
    position: relative;
}
.projet-line .projet-content-col a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.projet-line:nth-child(even) { flex-direction: row-reverse; }
.projet-image-col, .projet-content-col { width: 47.5%; }

/* --- IMAGE & ZOOM --- */
.projet-image-col {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f4f4f4;
}
.projet-image-col img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.projet-line:hover .projet-image-col img { transform: scale(1.08) !important; }

/* --- TITRES --- */
.projet-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.projet-title a { text-decoration: none !important; color: inherit; }

.projet-line:hover .projet-title a {
    color: var(--color-red-01);
}
.projet-client-stroke {
    font-family: var(--font-title);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-black-01);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* --- BOUTON SANS FLÈCHE --- */
.btn-home-style {
    display: inline-flex;
    padding: 1rem 2.8rem;
    border: 1px solid var(--color-black-01);
    color: var(--color-black-01);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    text-decoration: none !important;
    transition: 0.3s;
}
.projet-line:hover .btn-home-style {
    background: var(--color-black-01);
    color: #fff;
}

/* --- BANDEAU ARCHIVES--- */
.all-projects-link-wrapper {
    text-decoration: none !important;
    display: block;
}

.all-projects-block {
    background:  var(--color-black-02); 
    color: #fff;
    padding: 6rem 0;
    margin-top: 4rem;
    transition: background 0.4s ease; 
}

.all-projects-link-wrapper:hover .all-projects-block {
    background: var(--color-black-04); 
}

.all-projects-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 4rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.all-projects-title {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 10px 0;
}

.all-projects-description {
    opacity: 0.8;
    font-size: 1.1rem;
    margin: 0;
    color: #fff;
}

.btn-outline-white {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    border: 1px solid #fff;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 700;
    transition: 0.3s;
}

.all-projects-link-wrapper:hover .btn-outline-white {
    background: #fff;
    color: #111 !important;
}

/* --- MOBILE --- */
@media (max-width: 850px) {
    .projet-line, .projet-line:nth-child(even) { flex-direction: column; gap: 2rem; }
    .projet-image-col, .projet-content-col { width: 100%; }
    .all-projects-content { flex-direction: column; text-align: center; gap: 2rem; }
}