body {
    background-image: url('images/IMG_5901.webp'); 
    background-size: cover; 
    background-attachment: fixed; 
    background-position: center; 
    background-repeat: no-repeat; 
    color: white; 
    font-family: 'Anton', sans-serif;
}
.card-text {
    font-family: 'Poppins', sans-serif;
}


.overlay {
    background: rgba(0,0,0,0.8); 
    padding: 50px 20px;
    border-radius: 10px;
}
.info-box {
    height: auto;
    background-color:  rgba(0,0,0,0.6);
    background-size :1000px;
    display:grid ;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-rows: 300px 300px 300px ;
    gap: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    
}
.info-box_parcours {
    text-align: center;
    display: grid;
    justify-items: center;
    gap:20px;
    
}

.info-box img.image-encadre {
    width: 100% ;
    max-width: 265px;
    height: auto;
    margin: 4px;
    border-radius: 8px;
    margin-bottom: 10px;
}


.social-icons a {
    color: white;
    font-size: 40px;
    margin: 0 15px;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    color: #007bff;
}

/* 📱 Téléphones */
@media (max-width: 768px) {

    

    .overlay {
        padding: 30px 15px;
    }

    .info-box {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }

    .info-box img.image-encadre {
        max-width: 90%;
        height: auto;
    }

    .social-icons a {
        font-size: 30px;
        margin: 0 10px;
    }
}
