/* Custom CSS for Weekend Incubator */

/* Learning Path Module Hover Effects */
.single-project-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 109, 107, 0.8); /* Red highlight with transparency */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.single-project-item:hover .project-hover {
    opacity: 1;
}

.project-hover a {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.3s ease;
}

.single-project-item:hover .project-hover a {
    transform: scale(1);
}

.project-hover a span {
    color: #006d6b; /* Red color for the plus icon */
    font-size: 20px;
}

/* Add a subtle border effect on hover */
.single-project-item:hover {
    box-shadow: 0 10px 30px rgba(255, 2, 62, 0.3);
    transform: translateY(-5px);
}

/* Add a subtle glow effect to the module heading on hover */
.single-project-item:hover + h3.project-heading {
    color: #006d6b;
}

/* Add a pulsing animation to the plus icon */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.single-project-item:hover .project-hover a span {
    animation: pulse 1.5s infinite;
}
