.profile {
    margin-bottom: 30px;
    margin-top: 100px;
}

.projects {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.project-card {
    background-color: #111;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.75);
}

.project-card:hover {
    transform: translateY(-2px);
    box-shadow: 0px 0px 13px 0px #9cffd1bf;
}

.project-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.project-header i {
    font-size: 1.5rem;
    color: #9cffd1;
}

.project-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.project-description {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-links {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #9cffd1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background-color: #1a1a1a;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #9cffd1;
}

/* Animation delays for project cards */
.projects .project-card:nth-child(1) { animation-delay: 0.2s; }
.projects .project-card:nth-child(2) { animation-delay: 0.4s; }
.projects .project-card:nth-child(3) { animation-delay: 0.6s; }
.projects .project-card:nth-child(4) { animation-delay: 0.8s; }

/* Responsive adjustments */
@media (max-width: 640px) {
    .projects {
        padding: 0 20px;
    }
    
    .back-button {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
    }
} 