/*==============================
    GALLERY PAGE
==============================*/

.gallery-page{
    background:#ffffff;
}


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

.gallery-banner{
    position:relative;
    height:520px;
    background:url('../images/gallery/gallery-banner1.jpeg') center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.50);
}

.gallery-banner-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:760px;
}

.gallery-banner-content span{
    display:inline-block;
    color:#c8a96a;
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:15px;
    margin-bottom:18px;
}

.gallery-banner-content h1{
    font-size:68px;
    line-height:1.15;
    font-weight:500;
    margin-bottom:20px;
}

.gallery-banner-content p{
    font-size:20px;
    line-height:1.8;
    color:#f2f2f2;
}



/*==============================
    INTRO
==============================*/

.gallery-intro{
    padding:110px 0 80px;
    text-align:center;
}

.gallery-intro span{
    color:#b89b5e;
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:14px;
}

.gallery-intro h2{
    font-size:48px;
    font-weight:500;
    margin:18px 0 25px;
    color:#222;
}

.gallery-intro p{
    max-width:760px;
    margin:auto;
    color:#000000;
    line-height:1.9;
    font-size:17px;
}



/*==============================
    FILTER
==============================*/

.gallery-filter{
    padding-bottom:70px;
}

.gallery-filter .container{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
}

.gallery-filter button{
    border:none;
    background:#f4f4f4;
    color:#000000;
    padding:14px 28px;
    cursor:pointer;
    border-radius:50px;
    transition:.35s;
    font-size:16px;
    font-weight:500;
}

.gallery-filter button:hover{
    background:#b89b5e;
    color:#fff;
}

.gallery-filter button.active{
    background:#1d1d1d;
    color:#fff;
}



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

.gallery-section{
    padding-bottom:120px;
}

.gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

}



.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:12px;

    background:#eee;

    cursor:pointer;

}



.gallery-item img{

    width:100%;

    height:420px;

    object-fit:cover;

    transition:.6s;

    display:block;

}



.gallery-item:hover img{

    transform:scale(1.08);

}



/*==============================
    OVERLAY
==============================*/

.gallery-content{

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    padding:30px;

    color:#fff;

    background:linear-gradient(
    transparent,
    rgba(0,0,0,.85));

    opacity:0;

    transition:.4s;

}



.gallery-item:hover .gallery-content{

    opacity:1;

}



.gallery-content h4{

    font-size:26px;

    margin-bottom:8px;

    font-weight:500;

}



.gallery-content span{

    color:#d7c08b;

    letter-spacing:2px;

    font-size:14px;

    text-transform:uppercase;

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

.gallery-cta{

    padding:120px 20px;
    background:#1f1f1f;

    text-align:center;

    color:#fff;

}


.gallery-cta span{

    color:#c9a96b;
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:14px;

}


.gallery-cta h2{

    font-size:55px;
    font-weight:500;
    margin:20px 0;

}


.gallery-cta p{

    max-width:700px;
    margin:0 auto 40px;

    color:#d6d6d6;
    line-height:1.9;
    font-size:17px;

}


.gallery-cta a{

    display:inline-block;

    padding:18px 42px;

    background:#b89b5e;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    transition:.35s;

    font-weight:600;

}


.gallery-cta a:hover{

    background:#fff;
    color:#1f1f1f;

}





/*=========================================
        IMAGE HOVER
=========================================*/

.gallery-item{

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

    transition:.4s;

}


.gallery-item:hover{

    transform:translateY(-10px);

}


.gallery-item::after{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.18);

    opacity:0;

    transition:.4s;

}


.gallery-item:hover::after{

    opacity:1;

}





/*=========================================
        SMOOTH ANIMATION
=========================================*/

.gallery-item{

    animation:fadeUp .8s ease;

}



@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}





/*=========================================
        TABLET
=========================================*/

@media(max-width:991px){


.gallery-banner{

    height:420px;

}


.gallery-banner-content h1{

    font-size:46px;

}


.gallery-banner-content p{

    font-size:17px;

}



.gallery-intro{

    padding:80px 0 60px;

}


.gallery-intro h2{

    font-size:36px;

}



.gallery-grid{

    grid-template-columns:repeat(2,1fr);

    gap:22px;

}


.gallery-item img{

    height:320px;

}


.gallery-content{

    opacity:1;

    padding:22px;

}


.gallery-content h4{

    font-size:22px;

}



.gallery-filter .container{

    gap:12px;

}


.gallery-filter button{

    padding:12px 22px;

    font-size:14px;

}



.gallery-cta{

    padding:90px 20px;

}


.gallery-cta h2{

    font-size:40px;

}



}





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

@media(max-width:576px){


.gallery-banner{

    height:360px;

}


.gallery-banner-content h1{

    font-size:34px;

    line-height:1.3;

}


.gallery-banner-content p{

    font-size:15px;

}



.gallery-intro{

    padding:60px 0 45px;

}


.gallery-intro h2{

    font-size:30px;

}


.gallery-intro p{

    font-size:15px;

}



.gallery-filter .container{

    justify-content:center;

    gap:10px;

}


.gallery-filter button{

    width:100%;

    max-width:220px;

    padding:12px;

}


.gallery-grid{

    grid-template-columns:1fr;

}


.gallery-item img{

    height:280px;

}


.gallery-content{

    opacity:1;

    padding:18px;

}


.gallery-content h4{

    font-size:20px;

}


.gallery-content span{

    font-size:12px;

}



.gallery-cta{

    padding:70px 20px;

}


.gallery-cta h2{

    font-size:30px;

}


.gallery-cta p{

    font-size:15px;

}


.gallery-cta a{

    width:100%;

    max-width:260px;

    text-align:center;

}


}



/*=========================================
        VIDEO GALLERY
=========================================*/

.video-gallery{
    padding:110px 0;
    background:#f8f8f6;
}

.video-grid{
    width:100%;
}

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

.video-desktop-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

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

.video-mobile-slider{
    display:none;
}

/*=========================
    CARD
=========================*/

.video-card{

    background:#fff;
    border-radius:16px;
    overflow:hidden;
    border:1px solid #ececec;
    transition:.35s;
    box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.video-card:hover{

    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.video-card video{

    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    display:block;
    background:#000;

}

.video-card h4{

    font-size:22px;
    font-weight:600;
    color:#222;
    text-align:center;
    padding:20px;

}

/*=========================
    SWIPER
=========================*/

.videoSwiper{

    width:100%;
    overflow:hidden;
    padding-bottom:55px;

}

.videoSwiper .swiper-slide{

    height:auto;

}

.videoSwiper .swiper-pagination{

    bottom:0 !important;

}

.videoSwiper .swiper-pagination-bullet{

    width:10px;
    height:10px;
    background:#d0d0d0;
    opacity:1;
    transition:.3s;

}

.videoSwiper .swiper-pagination-bullet-active{

    width:28px;
    border-radius:20px;
    background:#C89B5E;

}

/*=========================
      TABLET
=========================*/

@media(max-width:991px){

.video-gallery{

    padding:80px 0;

}

.video-desktop-grid{

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.video-card h4{

    font-size:20px;

}

}

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

@media(max-width:767px){

.video-gallery{

    padding:60px 0;

}

/* Hide Desktop */

.video-desktop-grid{

    display:none;

}

/* Show Slider */

.video-mobile-slider{

    display:block;

}

.videoSwiper{

    overflow:hidden;

}

.videoSwiper .swiper-wrapper{

    display:flex !important;

}

.videoSwiper .swiper-slide{

    width:100% !important;
    flex-shrink:0;

}

.video-card h4{

    font-size:18px;
    padding:18px;

}

}
/*=========================================
        VIDEO SECTION TITLE
=========================================*/

.video-gallery .section-title{

    max-width:800px;
    margin:0 auto 60px;
    text-align:center;

}

.video-gallery .section-title span{

    display:inline-block;

    color:#C89B5E;

    font-size:15px;
    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.video-gallery .section-title h2{

    font-size:48px;
    font-weight:700;

    color:#222;

    line-height:1.2;

    margin-bottom:20px;

}

.video-gallery .section-title p{

    max-width:700px;

    margin:0 auto;

    font-size:17px;

    line-height:1.9;

    color:#000000;

}

/* Tablet */

@media(max-width:991px){

.video-gallery .section-title h2{

    font-size:38px;

}

}

/* Mobile */

@media(max-width:767px){

.video-gallery .section-title{

    margin-bottom:40px;

}

.video-gallery .section-title span{

    font-size:14px;
    letter-spacing:2px;

}

.video-gallery .section-title h2{

    font-size:30px;

}

.video-gallery .section-title p{

    font-size:15px;
    line-height:1.8;

}

}