@import url('https://fonts.googleapis.com/css2?family=Handlee&display=swap');
.gv-lieux {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px 30px;
}

.gv-lieux h2 {
    font-family: 'Caveat', cursive;
    color: #4aa8c8;
    font-size: 42px;
    font-weight: 400;
    margin: 35px 0 5px;
    line-height: 1.1;
}

.gv-lieux h2:first-child {
    margin-top: 0;
}

.gv-lieu-adresse {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    color: #6a4a1a;
    font-size: 16px;
    margin: 0 0 15px;
}

.gv-lieux h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    color: #e8a020;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 20px 0 10px;
}

.gv-lieux .gv-gallery {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 15px;
}

.gv-lieux .gv-gallery img {
    height: 200px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.gv-lieux .gv-gallery.gv-single img {
    height: auto;
    width: 100%;
    max-width: 700px;
}

@media (max-width: 768px) {
    .gv-lieux .gv-gallery img {
        height: 130px;
    }
}

.gv-lieux .gv-map {
    margin: 10px 0 25px;
    max-width: 700px;
}

.gv-lieux .gv-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}
.gv-lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gv-lightbox-overlay.active {
    display: flex;
}

.gv-lightbox-overlay img {
    max-width: 80vw;
    max-height: 78vh;
    border-radius: 4px;
    display: block;
}

.gv-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
}

/* ── Image de couverture avec badge (mode galerie) ── */
.gv-covergroup {
    margin-bottom: 20px;
}

.gv-covergroup-cover {
    position: relative;
    display: inline-block;
    max-width: 100%;
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
}

.gv-covergroup-cover img {
    display: block;
    width: 100%;
    max-width: 700px;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    transition: opacity .6s ease;
}

.gv-covergroup-cover img.gv-rotating {
    opacity: 0;
}

.gv-covergroup-cover:hover img {
    opacity: .92;
}

.gv-covergroup-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 12px 5px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    pointer-events: none;
}

.gv-covergroup-hidden {
    display: none !important;
}

@media (max-width: 600px) {
    .gv-covergroup-badge { font-size: 11px; padding: 4px 10px 4px 8px; }
}

/* Caption lightbox (nom de section + compteur) */
.gv-lightbox-caption {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,.7);
    margin-top: 10px;
    text-align: center;
    letter-spacing: .04em;
    width: 100%;
    position: relative;
}

.gv-lightbox-prev,
.gv-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.12);
    border: none;
    color: #fff;
    font-size: 44px;
    width: 54px;
    height: 72px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    transition: background .15s;
}
.gv-lightbox-prev { left: 10px; }
.gv-lightbox-next { right: 10px; }
.gv-lightbox-prev:hover, .gv-lightbox-next:hover { background: rgba(255,255,255,.28); }
.gv-lightbox-prev.gv-lb-hidden, .gv-lightbox-next.gv-lb-hidden { opacity: .2; pointer-events: none; }

@media (max-width: 600px) {
    .gv-lightbox-overlay img { max-height: 70vh; max-width: 92vw; }
    .gv-lightbox-prev, .gv-lightbox-next { width: 44px; height: 70px; font-size: 34px; }
    .gv-lightbox-prev { left: 4px; } .gv-lightbox-next { right: 4px; }
    .gv-lightbox-close { font-size: 44px; top: 8px; right: 10px; padding: 8px; }
}

/* Libellé dynamique au-dessus de l'image de couverture */
.gv-covergroup-label {
    transition: opacity .4s ease;
}
