/* Gallery fixes */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    opacity: 1 !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: all 0.3s ease;
}

.gallery-content {
    transform: translateY(0);
    transition: all 0.4s ease;
}

.gallery-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    opacity: 1;
    transition: all 0.3s ease;
}

.gallery-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-desc {
    opacity: 1;
    transform: translateY(0);
}
