/*==========================================
CUSTOMER GALLERY PAGE
==========================================*/

.customer-banner{
    position:relative;
    width:100%;
    height:70vh;
    min-height:520px;
    overflow:hidden;
    background:#000;
}

.customer-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(.45);
}

.banner-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    background:linear-gradient(to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.20));
}

.banner-overlay .container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.event-badge{
    display:inline-block;
    background:#d4af37;
    color:#111;
    padding:10px 24px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:25px;
}

.banner-overlay h1{
    color:#fff;
    font-size:64px;
    font-weight:700;
    margin-bottom:20px;
}

.gallery-meta{
    display:flex;
    gap:30px;
    color:#ddd;
    margin-bottom:25px;
    font-size:18px;
}

.gallery-meta i{
    color:#d4af37;
    margin-right:8px;
}

.banner-overlay p{
    color:#ddd;
    max-width:850px;
    line-height:1.9;
    font-size:18px;
}

/*==========================================
SECTION
==========================================*/

.customer-gallery-section{
    background:#111;
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    color:#fff;
    font-size:42px;
    margin-bottom:15px;
}

.section-title p{
    color:#aaa;
    font-size:18px;
}

/*==========================================
GALLERY GRID
==========================================*/

.customer-gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
    margin-top:40px;
}

.customer-gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    background:#1b1b1b;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
    transition:.35s ease;
}

.customer-gallery-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.45);
}

.customer-gallery-item img{
    width:100%;
    height:380px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.customer-gallery-item:hover img{
    transform:scale(1.08);
}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:1100px){

.gallery-grid{

column-count:2;

}

.banner-overlay h1{

font-size:50px;

}

}

@media(max-width:768px){

.customer-banner{

height:55vh;

min-height:420px;

}

.banner-overlay h1{

font-size:36px;

}

.gallery-grid{

column-count:1;

}

.gallery-meta{

flex-direction:column;

gap:12px;

}

.banner-overlay p{

font-size:16px;

}

}

/*==========================================
LUXURY LIGHTBOX
==========================================*/

.lightbox{

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.95);

display:none;

justify-content:center;

align-items:center;

z-index:99999;

animation:fadeIn .35s;

}

.lightbox.active{

display:flex;

}

.lightbox-image{

    max-width:70%;

    max-height:80vh;

    width:auto;

    height:auto;

    object-fit:contain;

    border-radius:16px;

    box-shadow:0 20px 70px rgba(0,0,0,.7);

    animation:zoomIn .35s;

}

.lightbox-close{

position:absolute;

top:30px;

right:40px;

font-size:34px;

color:#fff;

cursor:pointer;

transition:.3s;

}

.lightbox-close:hover{

color:#d4af37;

}

.lightbox-prev,

.lightbox-next{

position:absolute;

top:50%;

transform:translateY(-50%);

width:65px;

height:65px;

border-radius:50%;

background:rgba(255,255,255,.12);

display:flex;

justify-content:center;

align-items:center;

cursor:pointer;

font-size:24px;

color:#fff;

transition:.3s;

}

.lightbox-prev{

left:30px;

}

.lightbox-next{

right:30px;

}

.lightbox-prev:hover,

.lightbox-next:hover{

background:#d4af37;

color:#111;

}

.lightbox-counter{

position:absolute;

bottom:35px;

left:50%;

transform:translateX(-50%);

background:rgba(255,255,255,.12);

padding:12px 22px;

border-radius:40px;

color:#fff;

font-size:16px;

}

@keyframes fadeIn{

from{

opacity:0;

}

to{

opacity:1;

}

}

@keyframes zoomIn{

from{

transform:scale(.85);

opacity:0;

}

to{

transform:scale(1);

opacity:1;

}

}

@media(max-width:768px){

.lightbox-prev,

.lightbox-next{

width:50px;

height:50px;

font-size:20px;

}

.lightbox-close{

right:20px;

top:20px;

}

}