/* Project Images - Direct approach */
.projects .projects-grid .project-card:nth-child(1) .project-image {
    background-image: url('./images/solvr-screenshot.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.projects .projects-grid .project-card:nth-child(2) .project-image {
    background-image: url('./images/covid-dashboard-screenshot.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.projects .projects-grid .project-card:nth-child(3) .project-image {
    background-image: url('./images/stock-dashboard-screenshot.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Override any existing background */
.project-image {
    background: none !important;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 250px;
}

.project-image:hover {
    transform: scale(1.05);
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-image::before {
    opacity: 1;
}

.project-overlay {
    z-index: 2;
} 