/* external: https://cdn.vexar.io/uploads/templates/sections/cd9d2e8c-2d79-4f1e-a3fe-7bdb777a710d/style.css */
.vxr_gallery1_main_box {
background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.vxr_gallery1_main_box::before {
content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 30%, rgb(11 71 184 / 10%) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgb(11 127 184 / 5%) 0%, transparent 50%);
    pointer-events: none;
}

.vxr_gallery1_main_box .vxr_g1_container {
max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.vxr_gallery1_main_box .vxr_g1_header {
text-align: center;
    margin-bottom: 60px;
}

.vxr_gallery1_main_box .vxr_g1_title {
font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffd96a 0%, #ff7803 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(184, 134, 11, 0.3);
}

.vxr_gallery1_main_box .vxr_g1_subtitle {
font-size: 1.2rem;
    color: #cccccc;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin: 0;
}

.vxr_g1_tabs {
display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}

.vxr_g1_tabs li {
position: relative;
    overflow: hidden;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vxr_g1_tabs li::before {
content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.3), transparent);
    transition: left 0.5s;
}

.vxr_g1_tabs li:hover::before {
left: 100%;
}

.vxr_g1_tabs li:hover {
transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(243, 156, 18, 0.2);
    border-color: rgba(243, 156, 18, 0.4);
}

.vxr_g1_tabs li.uk-active {
background: linear-gradient(135deg, #f39c12, #e67e22);
    border-color: #f39c12;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
    transform: translateY(-1px);
}

.vxr_g1_tabs a {
display: block;
    padding: 12px 28px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.vxr_g1_tabs li:hover a {
color: #f39c12;
}

.vxr_g1_tabs li.uk-active a {
color: #ffffff;
}

/* Gallery Grid */
.vxr_g1_tabs_content {
display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.vxr_g1_tabs_content li {
opacity: 1;
    transform: scale(1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

/* UIkit filter animations */
.vxr_g1_tabs_content li[hidden] {
opacity: 0;
    transform: scale(0.8) translateY(30px);
    pointer-events: none;
}

.vxr_g1_tabs_content li:hover {
transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(243, 156, 18, 0.3);
}

.vxr_g1_tabs_content a {
display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Image Container */
.vxr_g1_image_wrapper {
position: relative;
    height: 250px;
    overflow: hidden;
    background: #1a1a2e;
}

.vxr_g1_image_wrapper img {
width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.vxr_g1_tabs_content li:hover .vxr_g1_image_wrapper img {
transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

.vxr_g1_image_wrapper::after {
content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
            135deg,
            rgba(243, 156, 18, 0.0) 0%,
            rgba(230, 126, 34, 0.1) 50%,
            rgba(211, 84, 0, 0.2) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vxr_g1_tabs_content li:hover .vxr_g1_image_wrapper::after {
opacity: 1;
}

/* Item Info */
.vxr_g1_item_info {
padding: 25px;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
}

.vxr_g1_item_title {
font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.vxr_g1_tabs_content li:hover .vxr_g1_item_title {
color: #f39c12;
}

.vxr_g1_item_category {
font-size: 0.85rem;
    color: #8892b0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    position: relative;
    padding-left: 15px;
}

.vxr_g1_item_category::before {
content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 2px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    border-radius: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
.vxr_g1_main {
        padding: 20px 15px;
    }

    .vxr_g1_tabs {
        gap: 5px;
    }

    .vxr_g1_tabs a {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .vxr_g1_tabs_content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vxr_g1_image_wrapper {
        height: 200px;
    }

    .vxr_g1_item_info {
        padding: 20px;
    }

    .vxr_g1_item_title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .vxr_g1_tabs {
        flex-direction: column;
        align-items: center;
    }

    .vxr_g1_tabs li {
        width: 100%;
        max-width: 200px;
    }

    .vxr_g1_tabs a {
        text-align: center;
    }
}

.vxr_g1_tabs_content li:nth-child(1) {
animation-delay: 0.1s;
}

.vxr_g1_tabs_content li:nth-child(2) {
animation-delay: 0.2s;
}

.vxr_g1_tabs_content li:nth-child(3) {
animation-delay: 0.3s;
}

.vxr_g1_tabs_content li:nth-child(4) {
animation-delay: 0.4s;
}

.vxr_g1_tabs_content li:nth-child(5) {
animation-delay: 0.5s;
}

.vxr_g1_tabs_content li:nth-child(6) {
animation-delay: 0.6s;
}

/* Focus States for Accessibility */
.vxr_g1_tabs a:focus,
.vxr_g1_tabs_content a:focus {
outline: 2px solid #f39c12;
    outline-offset: 2px;
}

/* Hover effects enhancement */
.vxr_g1_tabs_content li:hover {
box-shadow:
            0 25px 50px rgba(0, 0, 0, 0.3),
            0 0 0 1px rgba(243, 156, 18, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
}