body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

main {
    padding: 20px;
    padding-bottom: 100px;
}

/* Liste des chorégraphies */
.choregraphies-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.choregraphie {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 220px;
    overflow: hidden;
    transition: transform 0.3s;
}

.choregraphie:hover {
    transform: scale(1.05);
}

.choregraphie-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.choregraphie-info {
    padding: 15px;
}

.choregraphie-info h2 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.choregraphie-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 5px 0;
}

.mon-bouton {
    display: block;
    margin-top: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    margin-right: 30px;
}

button {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
}

button:hover {
    background-color: #555;
}

/*Page form_recherche*/

.recherche{
    margin: 30px;
}

.form-rech-title{
    margin: 30px; 
}

.bouton-form-rech{
    display: block;
    margin-top: 10px;
    border-radius: 8px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Responsive Design */
@media (min-width: 576px) {
    .choregraphie-info h2 {
        font-size: 1.2rem;
    }

    .choregraphie-info p {
        font-size: 0.9rem;
    }

    button {
        width: auto;
        padding: 10px 20px;
    }
}