/* ===========================
   SALLE LE 5B - FUSIKAB DJ
   =========================== */

/* PAGE */
.gallery-page {
    font-family: 'Poppins', sans-serif;
    background-color: #0d0d0d;
    color: #f5f5f5;
}

/* TITRES */
.gallery-page h1, .gallery-page h2, .gallery-page h3 {
    font-weight: 600;
    letter-spacing: 1px;
}

.gallery-page .gallery-title, .gallery-page .gallery-subtitle {
    color: #ffcc00;
}

/* FADE-IN ANIMATION */
.gallery-page .fade-in {
    opacity: 0;
    animation: fadeIn 1.2s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CAROUSEL */
.gallery-page #galleryCarousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    background-color: #000;
}

.gallery-page .carousel-image {
    width: 100%;
    object-fit: contain; /* conserve les proportions, pas de découpe */
    max-height: 600px; /* limite juste pour les grandes images */
}

/* DESCRIPTION SALLE */
.gallery-page .salle-description p {
    line-height: 1.5;
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .gallery-page .carousel-image {
        max-height: 300px;
    }
}
