.gallery-hero{
    height:400px;
    background:url('../img/gallery.png') no-repeat;
    position:relative;
    margin-top: 100px;
    background-position: center 50%;
    background-size:cover;
}

.gallery-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:40px;
    top: 266px;
}

.gallery-title{
    background:#fff;
    display:inline-block;
    padding:20px 40px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.gallery-title .jp{
    font-size:36px;
    color:#e60023;
    font-weight:700;
    margin-right:15px;
}

.gallery-title .en{
    font-size:28px;
    color:#555;
}

/* ================= GALLERY ================= */

.gallery{
    padding:80px 60px;
    
}

.gallery-title{
    text-align:center;
    font-size:34px;
    color:#e60023;
    margin-bottom:40px;
}

/* grid */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}

/* item */
.gallery-item{
    overflow:hidden;
    position:relative;
}

/* image */
.gallery-item img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:0.4s;
}

/* hover effect */
.gallery-item:hover img{
    transform:scale(1.1);
}

@media(max-width:992px){
    .gallery-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:576px){
    .gallery-grid{
        grid-template-columns:1fr;
    }
}

/* LIGHTBOX */
.lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

/* gambar besar */
.lightbox img{
    max-width:90%;
    max-height:90%;
}

/* tombol close */
.lightbox .close{
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}