/* TITRE PAGE */

.page-title {
    text-align: center;
    padding: 50px 10%;
    background: #f8f9fa;
}

.page-title h2 {
    color: #1E3A8A;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.page-title p {
    color: #444;
}


/* GALERIE GRID */

.galerie-grid {
    padding: 50px 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.galerie-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, border 0.3s;
}

.galerie-grid img:hover {
    transform: scale(1.05);
    border: 3px solid #16A34A;
}


/* LIGHTBOX */

.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.lightbox img {
    max-width: 80%;
    max-height: 70%;
    margin: auto;
    border-radius: 10px;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

#lightbox-caption {
    margin-top: 15px;
    color: #fff;
    font-size: 18px;
}


/* BOUTON DOWNLOAD LIGHTBOX */

.download-btn {
    display: inline-block;
    margin-top: 15px;
    background: #16A34A;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s;
}

.download-btn:hover {
    background: #FACC15;
    color: #000;
}