.container h1 {
    text-align: center;
    font-family: 'PantonBlack';
}
.container {
    margin-top: 1%;
    margin-bottom: 1%;
    display: flex;
    justify-content: center; /* centre horizontalement */
    align-items: center;     /* centre verticalement (facultatif) */
    flex-direction: column;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

li {
    margin: 10px 0;
}

button {
    padding: 10px 15px;
    background-color:rgb(255, 0, 0);
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}


.card-container {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.card {
    background-color: #0c1008;
    border-radius: 32px;
    overflow: hidden;
    transition: box-shadow 0.2s;
    width: 256px;
    color: #ffffff; /* Ajout pour assurer un contraste de texte */
}

.card:hover {
    box-shadow: 0px 0px 50px 20px rgba(0, 0, 0, 0.3);
}

.card .card-img {
    padding: 1%;
    width: 100%;
    height: auto;
    object-fit: contain; /* ou supprimer cette ligne */
    object-position: top; /* <-- C’est ce qui affiche le haut de l’image */
    display: block;
}


.card p {
    padding: 10%;
    color: #000000;
    margin: 0;
    text-align: center;
}

.no-photo {
    background-color: #ffffff;
    color: #000000;
    font-style: italic;
}
@media (max-width: 768px) {
    .card-container {
        justify-content: center;
        gap: 16px; /* Réduit l'espacement entre cartes */
    }

    .card {
        width: calc(50% - 16px); /* Deux cartes par ligne, avec un petit espace entre elles */
    }
}