/* Empty State Design */
.empty-gallery-state {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.empty-state-content {
    max-width: 600px;
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(201,169,97,0.05) 0%, rgba(9,44,42,0.05) 100%);
    border: 2px dashed #C9A961;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.empty-state-content::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201,169,97,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.empty-state-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #C9A961 0%, #876624 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(201,169,97,0.3);
    position: relative;
    z-index: 1;
}

.empty-state-icon i {
    font-size: 50px;
    color: #ffffff;
}

.empty-state-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.empty-state-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.empty-state-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.empty-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.empty-feature i {
    font-size: 28px;
    color: #C9A961;
    width: 60px;
    height: 60px;
    background: rgba(201,169,97,0.1);
    border: 2px solid #C9A961;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.empty-feature:hover i {
    background: #C9A961;
    color: #ffffff;
    transform: translateY(-5px);
}

.empty-feature span {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.empty-state-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #C9A961;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201,169,97,0.3);
    position: relative;
    z-index: 1;
}

.empty-state-btn:hover {
    background: #092c2a;
    color: #C9A961;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(9,44,42,0.4);
}

/* Filter No Results Design */
.filter-no-results {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, rgba(201,169,97,0.03) 0%, rgba(9,44,42,0.03) 100%);
    border: 2px dashed rgba(201,169,97,0.3);
    border-radius: 15px;
    margin-top: 40px;
}

.no-results-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(201,169,97,0.1);
    border: 2px solid #C9A961;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-results-icon i {
    font-size: 35px;
    color: #C9A961;
}

.no-results-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.no-results-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

/* Gallery Items */
.gallery-item-wrapper {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}



.gallery-image-container {
    position: relative;
    overflow: hidden;
    height: 280px;
    border-radius: 12px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
   
}


/* New Overlay Design */
.gallery-overlay-modern {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(9,44,42,0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.gallery-item-card:hover .gallery-overlay-modern { 
    opacity: 1; 
}

.gallery-content-modern {
    text-align: center;
    transform: translateY(30px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.gallery-item-card:hover .gallery-content-modern { 
    transform: translateY(0) scale(1); 
}

.gallery-icon-zoom {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(201,169,97,0.15);
    backdrop-filter: blur(10px);
    border: 3px solid #C9A961;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-icon-zoom i {
    font-size: 20px;
    color: #C9A961;
    transition: all 0.3s ease;
}

.gallery-item-card:hover .gallery-icon-zoom {

    background: #C9A961;
    box-shadow: 0 10px 35px rgba(201,169,97,0.6);
}

.gallery-item-card:hover .gallery-icon-zoom i {
    color: #ffffff;
   
}

.gallery-hover-text {
    padding: 0 20px;
}

.gallery-hover-text h5 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.2s;
}

.gallery-item-card:hover .gallery-hover-text h5 {
    opacity: 1;
    transform: translateY(0);
}

.gallery-hover-text p {
    font-size: 13px;
    color: #C9A961;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.3s;
}

.gallery-item-card:hover .gallery-hover-text p {
    opacity: 1;
    transform: translateY(0);
}

/* Filter Buttons */
.gallery-filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 15px;
}

.gallery-filter-btn {
    padding: 10px 20px;
    border: 2px solid #C9A961;
    background: #fff;
    color: #C9A961;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: #C9A961;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201,169,97,0.4);
}

/* Responsive */
@media (max-width: 991px) { 
    .gallery-image-container { height: 250px; }
}

@media (max-width: 767px) {
    .empty-state-content { padding: 40px 25px; }
    .empty-state-icon { width: 100px; height: 100px; }
    .empty-state-icon i { font-size: 40px; }
    .empty-state-title { font-size: 24px; }
    .empty-state-text { font-size: 14px; }
    .empty-state-features { gap: 20px; }
    .empty-feature i { width: 50px; height: 50px; font-size: 22px; }
    .empty-feature span { font-size: 12px; }
    .empty-state-btn { padding: 12px 28px; font-size: 14px; }
    
    .filter-no-results { padding: 40px 20px; }
    .no-results-icon { width: 70px; height: 70px; }
    .no-results-icon i { font-size: 30px; }
    .no-results-title { font-size: 18px; }
    .no-results-text { font-size: 14px; }
    
    .gallery-image-container { height: 220px; }
    .gallery-filter-btn { padding: 8px 15px; font-size: 13px; }
    .gallery-icon-zoom { width: 60px; height: 60px; }
    .gallery-icon-zoom i { font-size: 24px; }
    .gallery-hover-text h5 { font-size: 16px; }
    .gallery-hover-text p { font-size: 12px; }
}

@media (max-width: 575px) {
    .gallery-image-container { height: 200px; }
    .gallery-filter-btn { padding: 7px 12px; font-size: 12px; }
    .gallery-filter-btn i { display: none; }
}
