h1 {
    color: #f5f5dc; /* Blanc crème */
    text-align: center;
}

h2 {
    color: #f5f5dc; /* Blanc crème */
    margin-top: 30px;
}

.spectacle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.spectacle-card {
    background-color: #3a3a3a; /* Gris anthracite moyen */
    border: 2px solid #f5f5dc; /* Motif blanc */
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s;
}

.spectacle-card:hover {
    transform: scale(1.05);
}

.spectacle-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.spectacle-card h3 {
    color: #f5f5dc; /* Blanc crème */
    margin: 10px 0;
}

.spectacle-card p {
    color: #f5f5dc; /* Blanc crème */
    text-align: center;
}

.categorie-link, .auteur-link {
    color: #f5f5dc; /* Blanc crème */
    text-decoration: none;
    font-weight: bold;
}

.categorie-link:hover, .auteur-link:hover {
    color: #d3d3d3; /* Argenté doux */
    text-decoration: underline;
}