/* -----------------------------
   GLOBAL
----------------------------- */
body {
    background-color: #f8f9fa;
}

/* Titres */
h2, h4 {
    font-weight: 600;
}

/* -----------------------------
   NAVBAR
----------------------------- */
.navbar-brand {
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* -----------------------------
   CARDS (albums & photos)
----------------------------- */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.card-img-top {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

/* -----------------------------
   GRILLE PHOTOS
----------------------------- */
.row img {
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.row img:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

/* -----------------------------
   LIGHTBOX
----------------------------- */
#lightbox-overlay {
    animation: fadeIn 0.3s ease-in-out;
}

#lightbox-img {
    animation: zoomIn 0.3s ease-in-out;
    border-radius: 6px;
}

/* -----------------------------
   PAGINATION
----------------------------- */
.pagination .page-item.active .page-link {
    background-color: #212529;
    border-color: #212529;
}

.pagination .page-link {
    color: #212529;
}

.pagination .page-link:hover {
    background-color: #e9ecef;
}

/* -----------------------------
   COMMENTAIRES
----------------------------- */
.border-bottom {
    padding-bottom: 10px;
}

/* -----------------------------
   FOOTER
----------------------------- */
footer {
    font-size: 0.9rem;
}

/* -----------------------------
   ANIMATIONS
----------------------------- */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.85); }
    to   { transform: scale(1); }
}
