/* Projects Gallery Styles */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.3);
}

.project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: rgba(112, 0, 255, 0.2);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card:hover .project-image {
    background: rgba(112, 0, 255, 0.3);
}

.project-card:nth-child(2) .project-image {
    background: rgba(0, 240, 255, 0.2);
}

.project-card:nth-child(3) .project-image {
    background: rgba(255, 100, 0, 0.2);
}

.project-content {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
}

.project-card.featured .project-content {
    padding: 2rem;
}

.project-card.featured .project-image {
    height: 250px;
}

.project-card h3,
.project-card h4 {
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 600;
}

.project-card.featured h3 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-card.recent h4 {
    font-size: 1.2rem;
}

.project-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

.project-link-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 240, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-link-icon {
    opacity: 1;
}

.project-link-icon::after {
    content: "↗";
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: bold;
}