﻿/*=========================================
        GOOGLE FONT
=========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Poppins',sans-serif;
    background: #fff;
    color: #444;
    overflow-x: hidden;
}

/*=========================================
        COMMON
=========================================*/

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: #fff5d9;
    color: #D4AF37;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: 46px;
    font-weight: 700;
    color: #111827;
    margin: 20px 0;
}

.section-desc {
    max-width: 760px;
    margin: auto;
    color: #6b7280;
    line-height: 1.9;
}

/*=========================================
        BREADCRUMB
=========================================*/

.breadcrumb-section {
    padding: 130px 0 100px;
    background: linear-gradient(rgba(8,15,35,.82),rgba(8,15,35,.82)), url("https://images.unsplash.com/photo-1511578314322-379afb476865?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
}

.breadcrumb-content {
    text-align: center;
}

    .breadcrumb-content h1 {
        color: #fff;
        font-size: 54px;
        margin: 18px 0;
        font-weight: 700;
    }

.breadcrumb-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .breadcrumb-list li {
        color: #ddd;
    }

        .breadcrumb-list li a {
            color: #D4AF37;
            text-decoration: none;
            transition: .35s;
        }

            .breadcrumb-list li a:hover {
                color: #fff;
            }

        .breadcrumb-list li.active::before {
            content: "/";
            margin-right: 10px;
            color: #999;
        }

/*=========================================
        INTRO
=========================================*/

.gallery-intro {
    padding: 100px 0;
    background: #fff;
}

    .gallery-intro .section-title {
        color: #111827;
    }

    .gallery-intro .section-desc {
        color: #666;
    }

/*=========================================
        GALLERY
=========================================*/

.gallery-section {
    padding: 110px 0;
    background: #f8f9fb;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    transition: .45s;
}

    .gallery-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0,0,0,.18);
    }

    .gallery-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: .6s;
    }

    .gallery-card:hover img {
        transform: scale(1.10);
    }

.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0,0,0,.88));
    transition: .45s;
}

    .gallery-overlay h3 {
        color: #fff;
        font-size: 24px;
        margin-bottom: 8px;
    }

    .gallery-overlay p {
        color: #D4AF37;
        margin: 0;
    }

.gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(212,175,55,.12);
    opacity: 0;
    transition: .45s;
}

.gallery-card:hover::before {
    opacity: 1;
}

/*=========================================
        IMAGE ICON
=========================================*/

.gallery-card::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #D4AF37;
    color: #111827;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    transition: .45s;
    font-size: 24px;
}

.gallery-card:hover::after {
    transform: translate(-50%,-50%) scale(1);
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width:991px) {

    .gallery-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .section-title {
        font-size: 38px;
    }

    .breadcrumb-content h1 {
        font-size: 42px;
    }
}

@media (max-width:768px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-intro,
    .gallery-section {
        padding: 70px 0;
    }

    .gallery-card img {
        height: 260px;
    }

    .breadcrumb-section {
        padding: 90px 20px 70px;
    }

    .breadcrumb-content h1 {
        font-size: 34px;
    }

    .section-title {
        font-size: 30px;
    }
}
/*=========================================
        VIDEO GALLERY
=========================================*/

.video-gallery {
    padding: 110px 0;
    background: #111827;
}

    .video-gallery .section-title {
        color: #fff;
    }

    .video-gallery .section-desc {
        color: #cfcfcf;
    }

.video-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 35px;
    margin-top: 60px;
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

    .video-card img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        transition: .6s;
    }

    .video-card:hover img {
        transform: scale(1.08);
    }

    .video-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.45);
        transition: .35s;
    }

    .video-card:hover::before {
        background: rgba(0,0,0,.25);
    }

    .video-card a {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background: #D4AF37;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        transition: .35s;
        z-index: 5;
    }

        .video-card a i {
            font-size: 32px;
            color: #111827;
            margin-left: 6px;
        }

    .video-card:hover a {
        transform: translate(-50%,-50%) scale(1.1);
        background: #fff;
    }

/*=========================================
        CTA SECTION
=========================================*/

.gallery-cta {
    padding: 130px 0;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,.78),rgba(0,0,0,.78)), url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-content {
    max-width: 850px;
    margin: auto;
}

.gallery-cta .section-tag {
    background: rgba(212,175,55,.12);
    color: #D4AF37;
}

.gallery-cta h2 {
    font-size: 48px;
    color: #fff;
    margin: 25px 0;
}

.gallery-cta p {
    color: #ddd;
    line-height: 1.9;
    margin-bottom: 45px;
}

/*=========================================
        BUTTONS
=========================================*/

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 15px 38px;
    background: #D4AF37;
    color: #111827;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
}

    .cta-btn:hover {
        background: #fff;
        color: #111827;
        transform: translateY(-4px);
    }

.cta-btn-outline {
    display: inline-block;
    padding: 15px 38px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: .35s;
    font-weight: 600;
}

    .cta-btn-outline:hover {
        background: #fff;
        color: #111827;
        transform: translateY(-4px);
    }

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .video-grid {
        grid-template-columns: 1fr;
    }

    .gallery-cta h2 {
        font-size: 38px;
    }
}

@media(max-width:768px) {

    .video-gallery,
    .gallery-cta {
        padding: 80px 0;
    }

    .video-card img {
        height: 260px;
    }

    .gallery-cta h2 {
        font-size: 30px;
    }

    .gallery-cta p {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn,
    .cta-btn-outline {
        width: 260px;
        text-align: center;
    }
}
/*=========================================
        PREMIUM HOVER EFFECTS
=========================================*/

.gallery-card,
.video-card,
.cta-btn,
.cta-btn-outline {
    transition: all .4s ease;
}

    .gallery-card:hover {
        box-shadow: 0 30px 70px rgba(0,0,0,.22);
    }

    .video-card:hover {
        box-shadow: 0 30px 70px rgba(212,175,55,.18);
    }

    .gallery-card img,
    .video-card img {
        transition: transform .7s ease;
    }

    .gallery-card:hover img,
    .video-card:hover img {
        transform: scale(1.08);
    }

    /*=========================================
        GOLDEN SHINE EFFECT
=========================================*/

    .gallery-card::before,
    .video-card::after {
        content: "";
        position: absolute;
        top: -120%;
        left: -120%;
        width: 70%;
        height: 300%;
        background: rgba(255,255,255,.18);
        transform: rotate(25deg);
        transition: .8s;
        pointer-events: none;
    }

    .gallery-card:hover::before,
    .video-card:hover::after {
        left: 140%;
    }

/*=========================================
        IMAGE OVERLAY
=========================================*/

.gallery-overlay {
    opacity: 0;
    transform: translateY(20px);
    transition: .45s;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/*=========================================
        SECTION SPACING
=========================================*/

.gallery-section,
.video-gallery,
.gallery-cta {
    position: relative;
    overflow: hidden;
}

    .gallery-section::before {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: rgba(212,175,55,.05);
        top: -120px;
        left: -120px;
    }

    .gallery-section::after {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(17,24,39,.04);
        right: -100px;
        bottom: -100px;
    }

/*=========================================
        BUTTON ANIMATION
=========================================*/

.cta-btn,
.cta-btn-outline {
    position: relative;
    overflow: hidden;
}

    .cta-btn::before,
    .cta-btn-outline::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,.25);
        transform: skewX(-30deg);
        transition: .6s;
    }

    .cta-btn:hover::before,
    .cta-btn-outline:hover::before {
        left: 120%;
    }

/*=========================================
        FADE ANIMATION
=========================================*/

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/*=========================================
        SCROLLBAR
=========================================*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111827;
}

::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 20px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #f3ca57;
    }

/*=========================================
        MOBILE OPTIMIZATION
=========================================*/

@media(max-width:991px) {

    .section-title {
        font-size: 38px;
    }

    .section-desc {
        font-size: 15px;
    }

    .gallery-card img {
        height: 280px;
    }

    .video-card img {
        height: 300px;
    }
}

@media(max-width:768px) {

    .section-title {
        font-size: 30px;
    }

    .breadcrumb-content h1 {
        font-size: 34px;
    }

    .gallery-overlay h3 {
        font-size: 20px;
    }

    .gallery-overlay p {
        font-size: 14px;
    }

    .gallery-card img,
    .video-card img {
        height: 240px;
    }

    .gallery-section,
    .video-gallery,
    .gallery-cta {
        padding: 70px 0;
    }
}

@media(max-width:576px) {

    .section-tag {
        font-size: 12px;
        padding: 6px 18px;
    }

    .section-title {
        font-size: 26px;
    }

    .breadcrumb-content h1 {
        font-size: 28px;
    }

    .gallery-card {
        border-radius: 16px;
    }

        .gallery-card img,
        .video-card img {
            height: 220px;
        }

    .gallery-overlay {
        padding: 18px;
    }

    .cta-btn,
    .cta-btn-outline {
        width: 100%;
        max-width: 260px;
        margin: auto;
    }
}

/*=========================================
        SMOOTH SCROLL
=========================================*/

html {
    scroll-behavior: smooth;
}

/*=========================================
        IMAGE RENDER QUALITY
=========================================*/

img {
    display: block;
    max-width: 100%;
    image-rendering: auto;
}

/*=========================================
            END
=========================================*/
/*=========================================
        PREMIUM HOVER EFFECTS
=========================================*/

.gallery-card,
.video-card,
.cta-btn,
.cta-btn-outline {
    transition: all .4s ease;
}

    .gallery-card:hover {
        box-shadow: 0 30px 70px rgba(0,0,0,.22);
    }

    .video-card:hover {
        box-shadow: 0 30px 70px rgba(212,175,55,.18);
    }

    .gallery-card img,
    .video-card img {
        transition: transform .7s ease;
    }

    .gallery-card:hover img,
    .video-card:hover img {
        transform: scale(1.08);
    }

    /*=========================================
        GOLDEN SHINE EFFECT
=========================================*/

    .gallery-card::before,
    .video-card::after {
        content: "";
        position: absolute;
        top: -120%;
        left: -120%;
        width: 70%;
        height: 300%;
        background: rgba(255,255,255,.18);
        transform: rotate(25deg);
        transition: .8s;
        pointer-events: none;
    }

    .gallery-card:hover::before,
    .video-card:hover::after {
        left: 140%;
    }

/*=========================================
        IMAGE OVERLAY
=========================================*/

.gallery-overlay {
    opacity: 0;
    transform: translateY(20px);
    transition: .45s;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/*=========================================
        SECTION SPACING
=========================================*/

.gallery-section,
.video-gallery,
.gallery-cta {
    position: relative;
    overflow: hidden;
}

    .gallery-section::before {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: rgba(212,175,55,.05);
        top: -120px;
        left: -120px;
    }

    .gallery-section::after {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(17,24,39,.04);
        right: -100px;
        bottom: -100px;
    }

/*=========================================
        BUTTON ANIMATION
=========================================*/

.cta-btn,
.cta-btn-outline {
    position: relative;
    overflow: hidden;
}

    .cta-btn::before,
    .cta-btn-outline::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,.25);
        transform: skewX(-30deg);
        transition: .6s;
    }

    .cta-btn:hover::before,
    .cta-btn-outline:hover::before {
        left: 120%;
    }

/*=========================================
        FADE ANIMATION
=========================================*/

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/*=========================================
        SCROLLBAR
=========================================*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111827;
}

::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 20px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #f3ca57;
    }

/*=========================================
        MOBILE OPTIMIZATION
=========================================*/

@media(max-width:991px) {

    .section-title {
        font-size: 38px;
    }

    .section-desc {
        font-size: 15px;
    }

    .gallery-card img {
        height: 280px;
    }

    .video-card img {
        height: 300px;
    }
}

@media(max-width:768px) {

    .section-title {
        font-size: 30px;
    }

    .breadcrumb-content h1 {
        font-size: 34px;
    }

    .gallery-overlay h3 {
        font-size: 20px;
    }

    .gallery-overlay p {
        font-size: 14px;
    }

    .gallery-card img,
    .video-card img {
        height: 240px;
    }

    .gallery-section,
    .video-gallery,
    .gallery-cta {
        padding: 70px 0;
    }
}

@media(max-width:576px) {

    .section-tag {
        font-size: 12px;
        padding: 6px 18px;
    }

    .section-title {
        font-size: 26px;
    }

    .breadcrumb-content h1 {
        font-size: 28px;
    }

    .gallery-card {
        border-radius: 16px;
    }

        .gallery-card img,
        .video-card img {
            height: 220px;
        }

    .gallery-overlay {
        padding: 18px;
    }

    .cta-btn,
    .cta-btn-outline {
        width: 100%;
        max-width: 260px;
        margin: auto;
    }
}

/*=========================================
        SMOOTH SCROLL
=========================================*/

html {
    scroll-behavior: smooth;
}

/*=========================================
        IMAGE RENDER QUALITY
=========================================*/

img {
    display: block;
    max-width: 100%;
    image-rendering: auto;
}

/*=========================================
            END
=========================================*/