/* ==========================================================================
   Goldschmied Autóhűtő - közös stílusfájl
   Az összes aloldalról ide lett kiszedve a beágyazott <style> kód,
   hogy egy helyen legyen karbantartható.
   ========================================================================== */

/* --- Lightbox (cégtörténet oldal képnagyítása) -------------------------- */
#ceg-lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    overflow: auto;
    cursor: pointer;
}

#lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    transition: transform 0.3s ease, max-width 0.3s ease;
    cursor: zoom-in;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

#lightbox-img.zoomed {
    transform: scale(1.5);
    max-width: none;
    max-height: none;
    cursor: zoom-out;
    margin: 50px;
}

.close-btn {
    position: fixed;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 50px;
    z-index: 1001;
    cursor: pointer;
    line-height: 1;
}

.zoom-img {
    cursor: zoom-in;
    transition: 0.3s;
}

.zoom-img:hover {
    filter: brightness(1.1);
}

/* --- Galéria oldal: lightbox2 finomhangolás + album kártyák -------------- */
.lb-outerContainer {
    background-color: rgba(0, 0, 0, 0.8) !important;
    transition: none !important;
}

.lb-image {
    transition: opacity 0.2s ease-in-out !important;
}

.album-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 58, 138, 0.9);
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.album-card:hover .album-label {
    transform: translateY(0);
}

.album-card img {
    height: 320px;
    width: 100%;
    object-fit: cover;
}
