/* ---- GALÉRIA OLDAL EGYEDI STÍLUSOK ---- */

/* Galéria cím */
.galeria-title {
    text-align: center;
    margin-top: 28px;
    font-size: 2.2rem;
    letter-spacing: 2px;
}

/* Galéria grid */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width:700px) {
    .gallery-grid { 
        grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); 
        display: grid;
    }
}

/* Egy képkocka (thumb) */
.thumb {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.09);
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
    width: 260px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid #ddd;
    padding: 18px 10px 14px 10px;
    text-align: center;
    position: relative;
}
.thumb:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 1px 3px #0002;
    transition: transform 0.15s, box-shadow 0.2s;
    cursor: pointer;
}
@media (max-width: 600px) {
    .thumb { width: 95vw; height: 50vw; }
}
.thumb img:hover {
    box-shadow: 0 2px 10px #0003;
    transform: scale(1.04);
}

/* Felirat a képek alatt */
.thumb-caption {
    margin: 14px 0 6px 0;
    text-align: center;
    font-size: 1.13em;
    font-weight: bold;
    color: #205080;
    min-height: 1.5em;
}

/* Választó gomb */
.choose-btn {
    display: block;
    margin: 12px auto 0 auto;
    background: #1976d2;
    color: #fff;
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.18s;
    width: fit-content;
}
.choose-btn:hover {
    background: #28a745;
    color: #fff;
}

/* ---- LIGHTBOX ---- */
.lightbox {
    position: fixed;
    top:0; left:0; right:0; bottom:0;
    z-index: 1000;
    background: rgba(0,0,0,0.87);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: background 0.2s, opacity 0.25s;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
    background: #fff;
    margin-bottom: 16px;
    animation: fadeIn 0.2s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.97);}
    to { opacity: 1; transform: scale(1);}
}

/* Lightbox caption bar – FELIRAT KÖZÉPEN, GOMB JOBBRA */
.lightbox-caption-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    margin-top: 8px;
    width: 90vw;
    max-width: 900px;
    min-height: 44px;
    position: relative;
    font-size: 1.2em;
    background: #f8fafd;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 1px 6px #0002;
    padding: 10px 6px 10px 6px;
}
.lightbox-caption {
    flex: 1 1 auto;
    text-align: center;
    font-weight: bold;
    color: #205080;
    word-break: break-word;
}
.lightbox-caption-bar .choose-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    font-size: 1em;
    padding: 7px 17px;
    width: auto;
}

@media (max-width: 600px) {
    .lightbox-caption-bar { width: 98vw; min-height: 36px; font-size: 1em;}
    .lightbox-caption-bar .choose-btn { right: 8px; font-size: 0.95em; padding: 6px 12px;}
}

/* Lightbox close gomb */
.close, .lightbox .close {
    position: absolute;
    top: 18px;
    right: 38px;
    color: #fff;
    font-size: 2.8em;
    cursor: pointer;
    z-index: 1100;
    text-shadow: 0 2px 6px #0007;
    user-select: none;
    font-weight: bold;
    transition: color 0.18s;
}
.close:hover, .lightbox .close:hover {
    color: #1976d2;
}

/* Lightbox navigáció */
.nav, .lightbox .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    user-select: none;
    z-index: 1100;
    background: rgba(0,0,0,0.18);
    border-radius: 40%;
    padding: 0 16px;
    transition: background 0.18s, color 0.18s;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}
.nav.left, .lightbox .nav.left { left: 20px; }
.nav.right, .lightbox .nav.right { right: 20px; }
.nav:hover, .lightbox .nav:hover { background: #1976d2; color: #fff; }

@media (max-width: 600px) {
    .nav, .lightbox .nav { font-size: 2.2rem; padding: 0 10px; }
    .close, .lightbox .close { font-size: 2rem; right: 16px; top: 12px; }
}