
h1 {
    color: #f5f5dc; /* Blanc crème */
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin: 30px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2 {
    color: #f5f5dc; /* Blanc crème */
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    margin: 20px 0;
}

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

.spectacle-card {
    background-color: #3a3a3a; /* Gris anthracite moyen */
    border: 2px solid #f5f5dc; /* Motif blanc */
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(245, 245, 220, 0.3); /* Ombre avec motif blanc */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spectacle-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(245, 245, 220, 0.5); /* Ombre renforcée */
}

.spectacle-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: opacity 0.3s ease;
}

.spectacle-card img:hover {
    opacity: 0.9;
}

.spectacle-card h3 {
    color: #f5f5dc; /* Blanc crème */
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 10px 0;
}

.spectacle-card p {
    color: #f5f5dc; /* Blanc crème */
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    text-align: center;
    margin: 5px 0;
}

.spectacle-details {
    background-color: #3a3a3a; /* Gris anthracite moyen */
    border: 2px solid #f5f5dc; /* Motif blanc */
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin: 30px auto;
    box-shadow: 0 4px 8px rgba(245, 245, 220, 0.3); /* Ombre avec motif blanc */
    transition: box-shadow 0.3s ease;
}

.spectacle-details:hover {
    box-shadow: 0 6px 12px rgba(245, 245, 220, 0.5); /* Ombre renforcée */
}

.spectacle-details img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}

.spectacle-details img:hover {
    opacity: 0.9;
}

.spectacle-details p {
    color: #f5f5dc; /* Blanc crème */
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 15px 0;
}

.categorie-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f5f5dc; /* Blanc crème */
    color: #ff073a; /* Rouge arlequin */
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    border: 1px solid #f5f5dc; /* Motif blanc */
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.categorie-link:hover {
    background-color: #3a3a3a; /* Gris anthracite moyen */
    color: #f5f5dc; /* Blanc crème */
    transform: translateY(-2px);
}