.projet-flex {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 60px auto 40px auto;
}

.projet-visuel {
    flex: 0 0 320px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.projet-visuel-img {
    width: 320px;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    background: #fff;
    padding: 10px;
}

.projet-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.projet-client {
    color: #CC8B65;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.projet-shortdesc {
    font-size: 1.08rem;
    color: #444;
    margin-bottom: 18px;
}

.projet-content h2 {
    color: #CC8B65;
    font-size: 1.3rem;
    margin-top: 28px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.projet-content p,
.projet-content ul {
    font-size: 1.08rem;
    color: #444;
    line-height: 1.7;
}

.projet-content ul {
    margin-left: 20px;
    margin-bottom: 18px;
}

.projet-gallery {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 12px;
    justify-content: flex-start;
}

.projet-gallery img {
    width: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    background: #f7f7f7;
    transition: transform 0.2s;
}

.projet-gallery img:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 18px rgba(204,139,101,0.12);
}

.btn-retour-projets {
    display: inline-block;
    width: fit-content;
    margin-left: auto;
    margin-top: 32px;
    padding: 12px 28px;
    background: #CC8B65;
    color: #fff;
    border-radius: 30px;
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(204,139,101,0.07);
}
.btn-retour-projets:hover {
    background: #a86a44;
    color: #fff;
}

@media (max-width: 1000px) {
    .projet-flex {
        flex-direction: column;
        padding: 20px 5vw 30px 5vw;
        gap: 30px;
    }
    .projet-visuel {
        justify-content: flex-start;
    }
    .projet-gallery img {
        width: 100%;
        max-width: 320px;
        height: 180px;
    }
}