/* ========================
   Projects CSS - Full Width
======================== */

/* Conteneur général */
.projects-list {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0; /* aucun espace entre les cartes */
}

/* Section title */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #ecf5f9;
}

.section-title p {
    font-size: 1.1rem;
    color: #a3adb6;
}

/* Conteneur horizontal (en colonne) */
.projects-horizontal {
    display: flex;
    flex-direction: column;
    gap: 0; /* supprimer tout espace entre les cartes */
    margin: 0;
    padding: 0;
}

/* Chaque carte projet */
.project-card-horizontal {
    width: 100%; /* full-width */
    background: #0b1d33;
    border-radius: 0; /* coins carrés pour full width exact */
    margin: 0; /* supprime marge */
    padding: 0px;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0); /* shadow au repos */
    transition: all .4s ease;
    box-sizing: border-box;
    border-right: 0;
}

/* Hover effet shadow blanc */
.project-card-horizontal:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgb(61, 147, 234);
}

/* Contenu de la carte */
.project-row {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap; /* responsive */
}

/* Image projet */
.project-image {
    flex: 0 0 40%;
}

.project-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
}

/* Contenu texte */
.project-content {
    flex: 1;
}

.project-content h3,

.project-meta {
    color: #ffffff;
    margin: 0 0 10px 0;
}

.project-meta {
    font-size: 0.85rem;
    color: #ccc;
}

.project-description {
    color: rgba(255, 255, 255, .75);
}

/* Type projet */
.project-type {
    color: #9cc4ff;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .project-row {
        flex-direction: column;
        gap: 20px;
    }

    .project-image img {
        height: 220px;
    }
}

.project-meta {
    color: #3d93ea;
}


.project-title-row {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) max-content;
    column-gap: 64px;
    padding-right: 82px;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.project-mission {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ecf5f9;
    white-space: nowrap;
}


.project-meta {
    color: #3d93ea;
    font-size: 0.85rem;
}




