/* ============================================
   FINISH GOOD PAGE — Page-Specific Styles
   Base/Navbar/Contact/Footer/Reveal → global.css
   ============================================ */

/* ============================================
   NAVBAR BACKGROUND
   ============================================ */
.navbar-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #1a1a1a;
    z-index: 999;
}

/* ============================================
   FINISH GOOD GRID — 2 columns
   ============================================ */
.finish-section {
    background: #f5f5f5;
    padding: 80px 0 60px;
}
.finish-page-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}


/* ---- Photo Card ---- */
.finish-photo {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16 / 9;
}
.finish-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.3s ease;
}
.finish-photo:hover img {
    transform: scale(1.06);
    filter: brightness(0.85);
}

/* Overlay on hover */
.finish-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 50%,
        rgba(0,0,0,0.4) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.finish-photo:hover::after {
    opacity: 1;
}

/* Zoom icon on hover */
.finish-photo .zoom-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,229,0,0.9);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
}
.finish-photo:hover .zoom-icon {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   LIGHTBOX — Fullscreen Image Viewer
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox.active {
    opacity: 1;
    pointer-events: all;
}
.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lightbox.active img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}
.lightbox-close:hover {
    background: rgba(255,229,0,0.9);
    color: #1a1a1a;
    transform: rotate(90deg);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10;
}
.lightbox-nav:hover {
    background: rgba(255,229,0,0.9);
    color: #1a1a1a;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 600px) {
    .finish-page-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 16px;
    }
    .finish-photo {
        border-radius: 0;
    }
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
