.card img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
}

footer h5, footer h6 {
    margin-bottom: 15px;
}

footer ul li {
    margin-bottom: 8px;
}

footer {
    font-size: 0.95rem;
}

/* Lightbox fond */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background-color: rgba(0,0,0,0.9);
}

/* Image zoomée */
.lightbox-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 80%;
}

/* Bouton fermer */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.gallery-card a {
    pointer-events: none;
}

.gallery-overlay {
    transform: translateY(20px);
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}