.projects-hero {
    padding: 6rem 2rem 2rem;
    background: rgba(10, 10, 10, 0.5) !important;
    backdrop-filter: blur(1px);
    text-align: center;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.projects-section {
    background: rgba(10, 10, 10, 0.6) !important;
    backdrop-filter: blur(1px);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    background: transparent;
}

.project-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.project-card {
    background: rgba(20, 20, 20, 0.85) !important;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    padding: 3rem;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    backdrop-filter: blur(2px);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.4);
    background: rgba(25, 25, 25, 0.9) !important;
}

.project-card:hover .project-title {
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.project-card:hover .skill-bubble {
    background: rgba(0, 255, 136, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 255, 136, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
}

.project-title-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
}

.project-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.project-date {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    margin-top: 0.3rem;
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.project-description b{
    line-height: 1.8;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.project-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.project-image-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.project-image {
    width: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

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

.image-placeholder {
    font-size: 4rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.project-card:hover .image-placeholder {
    color: var(--primary-color);
}

.image-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.5;
    font-style: italic;
    padding: 0 1rem;
}

.project-policy {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
    text-align: center;
}

.project-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.skill-bubble {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.project-card {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.3s; }
.project-card:nth-child(3) { animation-delay: 0.5s; }
.project-card:nth-child(4) { animation-delay: 0.7s; }
.project-card:nth-child(5) { animation-delay: 0.9s; }
.project-card:nth-child(6) { animation-delay: 1.1s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .container {
        gap: 3rem;
    }
    
    .project-card {
        padding: 2rem;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .project-title {
        font-size: 1.5rem;
    }
    
    .project-date {
        white-space: normal;
        font-size: 0.9rem;
    }
    
    .project-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .project-images {
        gap: 1.5rem;
    }
    
    .project-image {
        height: 200px;
    }
    
    .image-placeholder {
        font-size: 3rem;
    }
    
    .image-description {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }

    .project-skills {
        gap: 0.4rem;
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .skill-bubble {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding: 2rem 1rem;
    }
    
    .container {
        gap: 2rem;
    }
    
    .project-card {
        padding: 1.5rem;
    }
    
    .project-title {
        font-size: 1.3rem;
    }
    
    .project-description {
        font-size: 0.95rem;
    }
    
    .project-images {
        gap: 1rem;
    }
    
    .project-image {
        height: 180px;
    }
    
    .image-placeholder {
        font-size: 2.5rem;
    }
    
    .image-description {
        font-size: 0.8rem;
        padding: 0;
    }

    .project-skills {
        gap: 0.3rem;
    }
    
    .skill-bubble {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
}