body {
    font-family: lato, sans-serif;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    min-height: 100vh;
}
.encache {
    display: none;
}
#lesdates {
    scroll-margin-top: 80px; /* Ajuste selon la hauteur de ta barre */
}
.dates {
    width: 85% ;
}
.titre {
    display: flex;
    flex-direction: row;
    width: 78%;
    background-color: #ffffff;
    /*! margin-bottom: 20px; */
    overflow: hidden;
    font-size: 36px
}
.cadre {
    display: flex;
    flex-wrap: wrap; /* Permet de retourner à la ligne si nécessaire */
    justify-content: center; /* Centre les éléments horizontalement */
    /*! align-items: center; */ /* Centre les éléments verticalement */
    /*! padding: 20px; */ /* Espacement interne */
    width: 100%;
}
.card {
    display: flex;
    flex-direction: row;
    width: 75%;
    background-color: #ffffff;
    border: 1px solid #000;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.avant-pied {
   /*! min-height: 50vh; */
}
.avant-pied img {
   width: 80%;
   position: relative;
   left: 50%;
   transform: translateX(-50%);
}
.encache {
    display: none;
}
.column {
    padding: 15px;
}

.column:first-child {
    flex: 2;
    /* Première colonne */
    border-right: 1px solid #ddd;
}

.column:nth-child(2) {
    flex: 3;
    display: flex;
    align-items: center; /* Centre verticalement */
}

.column a {
    text-decoration: none;
    color: inherit;
}


.column:last-child {
    flex: 1;
    /* Troisième colonne */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
}

.with:hover {
    background-color: black;
    color: white;
    transition: 2s;
}
.with {
    border-left: 1px solid #ddd;
}
.without {
    border-left: none;
}
.without:hover {
    cursor: auto;
}
.subtitle {
    font-size: 14px;
    color: #000;
    margin-bottom: 5px;
}
.title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}
.title span {
    font-size: 16px;
    color: #8a8787;
}
.text {
    font-size: 16px;
    color: #000;
    /*! line-height: 60px; */
}
.bleu {
    color: #0e549f;
}
.rouge {
    color: #E73E01;
}
.subtitle span {
    color: red;
}
.artistes {
    padding-top: 26px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: row;
    width: 78%;
}
.noms {
    display: block;
    padding-right: 0px;
    padding-left: 0px;
}

.btn {
    margin: 10px 20px 10px 0px;
    display: inline-block;
    padding: 10px 15px;
    color: white;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    /*! font-size: 12px; */
}

input.btn {
    -webkit-appearance: button;
}

.btn.bg-red {
    background-color: #9ca995;
    border: 1px solid #5f4641;
}
.btn.bg-red-inverse {
    background-color: white;
    color: #5f4641;
    border: 1px solid #5f4641;
}
.btn.bg-red:hover {
    background-color: #fff;
    color: #5f4641;
    transition: background-color 1s ease;

}



@media screen and (max-width: 991px) {
    .noms {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .card {
    
    width: 80%;
  
}
}

@media screen and (max-width: 767px) {
    .noms {
        padding-left: 10px;
    }
.titre {
    padding-top:80px;
}
}
@media (max-width: 800px) {
    
    .card {
        flex-direction: column;
         width: 95%;
    }

    .column {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .column:last-child {
        border-bottom: none;
        background-color: black;
    color: white;
    }
    
}