.affiche-hero {
    background: url('Images/Bleu.jpeg') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.affiche-hero h1 {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 0 15px #eab2bb, 0 0 30px #3C6CA8;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% { text-shadow: 0 0 15px #eab2bb; }
    100% { text-shadow: 0 0 30px #3C6CA8; }
}

.affiche-content {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.affiche-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.affiche-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.affiche-gallery img {
    width: 280px;
    border-radius: 12px;
    box-shadow: 0 0 15px #3C6CA8;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.affiche-gallery img:hover {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox .close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
}
