/* --- SECTION PROJETS --- */

.section-title {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
    color: white;
    font-family: 'Cascadia Code';
}

.section-title::before,
.section-title::after {
    content: "";
    flex: 1;
    border-bottom: 2px solid rgba(var(--clr-primary-a10-rgb), 0.5);
}

.section-title span {
    margin: 0 15px;
    font-weight: bold;
}

/* Grille des projets */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Carte de projet */
.project-card {
    background: rgba(32, 20, 200, 0.12);
    backdrop-filter: blur(8px) saturate(1.1);
    -webkit-backdrop-filter: blur(8px) saturate(1.1);
    border: 2px solid rgba(var(--clr-primary-a10-rgb), 0.4);
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* Hover stylé */
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
