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

.gallery-hero{

    position:relative;

    min-height:70vh;

    display:flex;

    align-items:center;

    justify-content:center;

    background:url("asset/images/gallery/gallery-banner.jpg")
               center/cover no-repeat;

    overflow:hidden;

}

.gallery-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(8,18,32,.78),
        rgba(8,18,32,.82)
    );

}

.gallery-title{

    position:relative;

    color:#fff;

    font-size:clamp(2.8rem,6vw,4.8rem);

    font-family:"Cormorant Garamond",serif;

    margin:25px 0;

    line-height:1.1;

}

.gallery-title span{

    color:#c89b2c;

}

.gallery-description{

    position:relative;

    max-width:760px;

    margin:auto;

    color:#d5d9df;

    font-size:1.15rem;

    line-height:1.9;

}

.gallery-hero .hero-buttons{

    position: relative;
    margin-top:45px;

}
/*==========================================
GALLERY GRID
==========================================*/

.gallery-section{

    background:#f8fafc;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:24px;

}

.gallery-item{

    overflow:hidden;

    border-radius:18px;

    background:#fff;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

@media(max-width:768px){

    .gallery-item img{

        height:250px;

    }

}
/*==========================================
GALLERY CTA
==========================================*/

.gallery-cta{

    padding:100px 0;

    background:#ffffff;

}

.gallery-cta .cta-box{

    background:linear-gradient(135deg,#102846,#1b426d);

    border-radius:28px;

    padding:80px 50px;

    text-align:center;

    color:#fff;

}

.gallery-cta .cta-box h2{

    font-size:clamp(2.2rem,5vw,3.8rem);

    font-family:"Cormorant Garamond",serif;

    margin:25px 0;

    line-height:1.2;

}

.gallery-cta .cta-box h2 span{

    color:#c89b2c;

}

.gallery-cta .cta-box p{

    max-width:760px;

    margin:0 auto;

    color:#d8dde4;

    line-height:1.9;

    font-size:1.08rem;

}

.gallery-cta .hero-buttons{

    margin-top:45px;

}

@media(max-width:768px){

    .gallery-cta .cta-box{

        padding:60px 25px;

    }

}