.project-link {
    position: relative;
    display: block;
    width: 40%;
    border-radius: 10px;
    overflow: hidden;
    z-index: 0;
}

.project-link img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: filter 0.4s ease;
    box-shadow: none !important;
}

.project-link .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    color: white;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    font-size: 1.3rem;
    border-radius: 10px;
    transition: opacity 0.4s ease;
}

.project-link:hover img {
    filter: blur(2px) brightness(0.7);
}

.project-link:hover .overlay {
    opacity: 1;
}

@media (max-width: 768px){
    .project-link {
        width: 100%;
        position: static;
        border-radius: 0;
    }
    
    .project-link img {
        border-radius: 0;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
        filter: none;
        border-radius: 10px;
    }
    
    .project-link .overlay {
        display: none;
    }
    
}
