*,
*::after,
*::before {
    box-sizing: border-box;
}
/* .logo{
    position: absolute;
    top: 15px;
    left: 15px;
    width: clamp(100px, 20vw, 225px);
    z-index: 4; 
} */
.barre-fixe {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #7a0125;
    padding: 10px 40px;
    z-index: 999;
    border-bottom: 2px solid black;
    display: flex;
    align-items: center;
}

.barre-fixe form {
    display: flex;
    gap: 10px;
    width: 100%;
}

.barre-fixe input {
    flex: 1;
    padding: 8px 18px;
    font-family: "Afacad Flux", sans-serif;
    font-size: 1rem;
    border: 2px solid black;
    border-radius: 30px;
}

.barre-fixe button {
    padding: 8px 22px;
    background: #f5f1e4;
    color: #7a0125;
    font-family: "Odibee Sans", sans-serif;
    font-size: 1rem;
    border: 2px solid black;
    border-radius: 30px;
    cursor: pointer;
}



.grille-resultats {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;          
    padding: 20px 0;
    margin-left: 100px;     
    margin-right: 100px;
}

.card-resultat {
    width: 420px;          
    background: #7a0125; 
    border: 2px solid #000000;
    border-radius: 10px;
    padding: 16px;
    font-family: "Afacad Flux", sans-serif;
    color: #f5f1e4;
    display: flex;
    flex-direction: column;
}


.card-resultat .date {
    font-size: 0.9rem;
    color: #b4b4b4;
    margin-bottom: 6px;
}

.card-resultat .titre {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: #f5f1e4;
}

.card-resultat .info {
    font-size: 14px;
    color: #d6d6d6;
    margin-bottom: 4px;
}


.card-resultat .style-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #f5f1e4;
    color: #7a0125;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 10px;
    align-self: flex-start; 
}

.card-resultat .etoiles {
    color: #ffcc00;
    font-size: 1.1rem;
    margin-top: 5px;
}

.card-resultat iframe {
    width: 100%;
    height: 240px;
    border-radius: 6px;
    margin-top: 12px;
    border: none;
}


.card-resultat .photo-artiste {
    width: 50%;
    height: 240px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid black;
    margin-top: 12px;
}


.aucun {
    margin-left: 100px;
    font-family: "Afacad Flux", sans-serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
}



.lien-retour {
    position: fixed;
    top: 60px;
    display: inline-block;
    margin: 20px 100px;
    padding: 8px 16px;
    background: #ffffff;
    color: #7a0125;
    font-family: "Odibee Sans", sans-serif;
    font-size: 1rem;
    border: 2px solid black;
    border-radius: 30px;
    text-decoration: none;
} 
  
.lien-retour:hover {
    background: #7a0125 !important;
    color: white !important;
}
.container {
    padding-top: 120px; 
}
h1{
    margin-left: 100px;
    font-family: 'Odibee Sans', sans-serif;
    font-size: 4rem;    
}
.section{
    margin-bottom: 40px;
}
h2{
    margin-left: 100px;
    font-family: 'Odibee Sans', sans-serif;
    font-size: 3rem;
}
.info{
    color: #b4b4b4; 
    margin-bottom: 10px;
}
.btn-details { 
    margin-top: 15px;
    padding: 8px 16px;
    background: #f5f1e4;
    color: #7a0125; 
    border: 2px solid black;
    border-radius: 20px;
    text-decoration: none;
    font-family: "Odibee Sans", sans-serif;
    font-size: 1.1rem;
    text-align: center;
    transition: 0.2s ease;
    width: fit-content;

}

.btn-details:hover {
    background: black;
    color: #f5f1e4;
}
.artistes-section {
    margin-bottom: 40px;
    margin-left: 
    100px;
    font-family: "Afacad Flux", sans-serif;
}



.zone-filtres {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: #7a0125;
    padding: 15px 20px;
    border: 2px solid black;
    border-radius: 10px;
    flex-wrap: wrap;
    width: fit-content;
    position: relative;
    margin-left: 60%;
    top: -180px;
}

.bloc-select {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bloc-select label {
    font-weight: bold;
    color: #ffffff;
    font-family: "Afacad Flux", sans-serif;
}

.bloc-select select {
    padding: 8px 12px;
    border: 2px solid black;
    border-radius: 10px;
    background: white;
    font-family: "Afacad Flux", sans-serif;
    font-weight: bold; 
    cursor: pointer;
}