#bac{
    text-align: center;
    min-height: 100vh;
    background: #f4f4f4;
    padding: 20px;
    max-height: max-content;
}
.titre-bac{
    font-size: 36px;
    color: #333333;
    margin-bottom: 30px;
}
.bac-cartes-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;  
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.carte-bac{
    background-color: rgb(255, 255, 255);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
}

.carte-bac:hover{
    transform: translateY(-10px);
}

.carte-bac img{
    height: 200px;
    width: 100%;
    border-radius: 10px;
    object-fit: contain; /* Changé de 'fill' à 'contain' */
    object-position: center;
    margin-bottom: 15px;
    padding: 10px; /* Espace autour de l'image */
}

.carte-bac img:hover{
    transform: scale(1.02); /* Légèrement réduit pour plus de naturel */
    transition: transform 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.carte-bac-content{
    flex: 1;
    display: flex;
    flex-direction: column;
}

h2{
    font-size: 22px;
    margin-bottom: 10px;
    color: red;
}

p{
    font-size: 16px;
    color: #353434;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.9;
}
footer p{
    font-size: 14px;
    color: #ffffff;
    margin-top: auto;
    }