/* ==================================
   GALLERY PAGE — 2 COLOR GRADIENT
================================== */

.gallery-page{
    padding:3px 5vw 160px;

    background:
            linear-gradient(
                    180deg,
                    var(--gallery-bg-1, #1a0f0a) 0%,
                    var(--gallery-bg-2, #120807) 100%
            );

    background-attachment: fixed;
    color:#fff;
}


/* =====================
   HERO
===================== */

.gallery-hero{
    text-align:center;
    padding-top:50px;
    margin-bottom:70px;
}

.gallery-title{
    font-size:34px;
    letter-spacing:.25em;
    color: var(--gallery-color-title);
}

.gallery-title::after{
    content:"";
    display:block;
    width:70px;
    height:2px;
    margin:18px auto 0;

    background:
            linear-gradient(
                    90deg,
                    transparent,
                    #c8a46a,
                    transparent
            );
}

.gallery-sub{
    margin-top:12px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;

    font-size:11px;
    letter-spacing:.2em;
    color: var(--gallery-color-sub-title);
    color:#c8a46a;
}

.gallery-sub .dot{
    width:6px;
    height:6px;
    background:#c8a46a;
    border-radius:50%;
}


/* =====================
   GRID
===================== */

.gallery-grid{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(240px, 1fr));
    gap:28px;
}


/* =====================
   ITEM
===================== */

.gallery-item{
    position:relative;
    aspect-ratio:4/5;
    overflow:hidden;
    border-radius:16px;

    background:#000;
    box-shadow:0 12px 35px rgba(0,0,0,.45);
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}


/* OVERLAY */

.gallery-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;

    background:
            linear-gradient(
                    180deg,
                    rgba(26,15,10,.15),
                    rgba(26,15,10,.85)
            );

    opacity:0;
    transition:.35s ease;
}

.gallery-overlay i{
    font-size:28px;
    color:#efd9b0;
    transform:scale(.8);
    transition:.35s ease;
}


/* HOVER */

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-item:hover .gallery-overlay i{
    transform:scale(1);
}


/* =====================
   EMPTY
===================== */

.gallery-empty{
    text-align:center;
    opacity:.6;
    letter-spacing:.15em;
}


/* =====================
   MOBILE
===================== */

@media (max-width:768px){

    .gallery-page{
        padding:90px 4vw 70px;
    }

    .gallery-title{
        font-size:22px;
        letter-spacing:.18em;
    }
}



