.project-card {
    position: relative;
    z-index: 1;
    background: rgba(45, 27, 105, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(45, 27, 105, 0.4);
    text-decoration: none;
    color: inherit;
}

.project-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.project-title {
    color: var(--heading-color);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.project-description {
    color: var(--paragraph-color);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.project-tech {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.tech-tag {
    background: rgba(138, 111, 223, 0.2);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(138, 111, 223, 0.3);
    transform: translateY(-2px);
}

.project-links {
    display: flex;
    gap: 20px;
}

.project-link {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.project-link:hover {
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .project-card {
        padding: 30px;
    }
    
    .project-image {
        margin-bottom: 30px;
    }

    .project-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .project-card {
        padding: 25px;
    }
    
    .project-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .project-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
} 