/* =============================================
   LCHOTFIX GALLERY PAGE - NEW REDESIGNED STYLES
   File: gallery-new.css
   Version: 1.0
   ============================================= */

/* =============================================
   SECTION 1: HERO SECTION
   ============================================= */

.lcx-gallery-hero {
    background: #000000;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.lcx-gallery-hero-title {
    font-family: 'Koulen', sans-serif;
    font-size: 80px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 20px;
    line-height: 1;
}

.lcx-gallery-hero-subtitle {
    color: #b87333;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.lcx-gallery-hero-desc {
    color: #ccc;
    font-size: 16px;
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.lcx-gallery-hero-img {
    width: 100%;
    max-width: 600px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 20px;
}

/* Stats Cards */
.lcx-gallery-stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.lcx-gallery-stat-card {
    background: rgba(184, 115, 51, 0.15);
    border: 1px solid rgba(184, 115, 51, 0.3);
    border-radius: 12px;
    padding: 20px 25px;
    text-align: center;
    min-width: 120px;
}

.lcx-gallery-stat-number {
    font-family: 'Koulen', sans-serif;
    font-size: 48px;
    color: #b87333;
    line-height: 1;
    display: block;
}

.lcx-gallery-stat-label {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    display: block;
}

/* Featured Preview Grid */
.lcx-gallery-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.lcx-gallery-preview-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #2a2a2a;
}

.lcx-gallery-preview-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.lcx-gallery-preview-item:hover img {
    transform: scale(1.1);
}

.lcx-gallery-preview-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.3) 0%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}

/* =============================================
   SECTION 2: FILTER TABS
   ============================================= */

.lcx-gallery-filter-section {
    background: #0b0d17;
    padding: 30px 0;
    border-top: 2px solid #b87333;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.lcx-gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.lcx-gallery-filter-btn {
    background: transparent;
    border: 2px solid rgba(184, 115, 51, 0.5);
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lcx-gallery-filter-btn:hover,
.lcx-gallery-filter-btn.active {
    background: linear-gradient(135deg, #b87333 0%, #cd853f 100%);
    border-color: #b87333;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(184, 115, 51, 0.4);
}

/* =============================================
   SECTION 3: GALLERY GRID
   ============================================= */

.lcx-gallery-grid-section {
    background: #0b0d17;
    padding: 80px 0;
}

.lcx-gallery-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.lcx-gallery-section-title {
    font-family: 'Koulen', sans-serif;
    font-size: 48px;
    color: #fff;
    margin-bottom: 15px;
}

.lcx-gallery-section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #b87333, #cd853f);
    margin: 0 auto;
    border-radius: 2px;
}

/* Gallery Grid */
.lcx-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lcx-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
    cursor: pointer;
    aspect-ratio: 1;
}

.lcx-gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.lcx-gallery-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.lcx-gallery-item img,
.lcx-gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.lcx-gallery-item:hover img,
.lcx-gallery-item:hover video {
    transform: scale(1.1);
}

/* Overlay */
.lcx-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    text-decoration: none;
    cursor: pointer;
    z-index: 2;
}

.lcx-gallery-overlay:hover {
    text-decoration: none;
}

.lcx-gallery-item:hover .lcx-gallery-overlay {
    opacity: 1;
}

.lcx-gallery-overlay-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.lcx-gallery-item:hover .lcx-gallery-overlay-title {
    transform: translateY(0);
}

.lcx-gallery-overlay-category {
    color: #b87333;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.lcx-gallery-item:hover .lcx-gallery-overlay-category {
    transform: translateY(0);
}

/* Expand Icon */
.lcx-gallery-expand-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b87333 0%, #cd853f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0) rotate(-180deg);
    transition: transform 0.4s ease;
    z-index: 2;
}

.lcx-gallery-expand-icon i {
    color: #fff;
    font-size: 20px;
}

.lcx-gallery-item:hover .lcx-gallery-expand-icon {
    transform: scale(1) rotate(0);
}

/* Video Badge */
.lcx-gallery-video-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.lcx-gallery-video-badge i {
    color: #ff4757;
}

/* =============================================
   SECTION 4: LOAD MORE
   ============================================= */

.lcx-gallery-load-more {
    text-align: center;
    margin-top: 50px;
}

.lcx-gallery-load-btn {
    background: transparent;
    border: 2px solid #b87333;
    color: #fff;
    padding: 16px 50px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lcx-gallery-load-btn:hover {
    background: linear-gradient(135deg, #b87333 0%, #cd853f 100%);
    border-color: #b87333;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 115, 51, 0.4);
}

.lcx-gallery-load-btn i {
    font-size: 18px;
}

/* =============================================
   SECTION 5: NO ITEMS MESSAGE
   ============================================= */

.lcx-gallery-empty {
    text-align: center;
    padding: 80px 20px;
}

.lcx-gallery-empty-icon {
    width: 100px;
    height: 100px;
    background: rgba(184, 115, 51, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.lcx-gallery-empty-icon i {
    font-size: 40px;
    color: #b87333;
}

.lcx-gallery-empty h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
}

.lcx-gallery-empty p {
    color: #999;
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto;
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */

@media (max-width: 1199px) {
    .lcx-gallery-hero-title {
        font-size: 60px;
    }
    
    .lcx-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .lcx-gallery-hero-title {
        font-size: 48px;
        letter-spacing: 4px;
    }
    
    .lcx-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lcx-gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .lcx-gallery-stats {
        flex-wrap: wrap;
    }
    
    .lcx-gallery-preview {
        display: none;
    }
}

@media (max-width: 767px) {
    .lcx-gallery-hero {
        padding: 40px 0;
    }
    
    .lcx-gallery-hero-title {
        font-size: 36px;
        letter-spacing: 3px;
    }
    
    .lcx-gallery-section-title {
        font-size: 36px;
    }
    
    .lcx-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .lcx-gallery-filters {
        gap: 10px;
    }
    
    .lcx-gallery-filter-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .lcx-gallery-stat-card {
        min-width: 100px;
        padding: 15px 20px;
    }
    
    .lcx-gallery-stat-number {
        font-size: 36px;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lcx-gallery-item {
    animation: fadeInUp 0.6s ease forwards;
}

.lcx-gallery-item:nth-child(1) { animation-delay: 0.1s; }
.lcx-gallery-item:nth-child(2) { animation-delay: 0.15s; }
.lcx-gallery-item:nth-child(3) { animation-delay: 0.2s; }
.lcx-gallery-item:nth-child(4) { animation-delay: 0.25s; }
.lcx-gallery-item:nth-child(5) { animation-delay: 0.3s; }
.lcx-gallery-item:nth-child(6) { animation-delay: 0.35s; }
.lcx-gallery-item:nth-child(7) { animation-delay: 0.4s; }
.lcx-gallery-item:nth-child(8) { animation-delay: 0.45s; }
