/* Project page styles */
.project-grid {
    display: flex;
    flex-direction: column;
    gap: 2em;
    margin-top: 2em;
}

.project-section {
    margin-bottom: 2em;
}

.project-section h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5em;
    margin-bottom: 1em;
    text-align: center;
}

.project-card {
    background: var(--color-sage-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.8em;
    margin-bottom: 2em;
    transition: all 0.3s ease-in-out;
    box-shadow: 4px 4px var(--color-border-light);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.7;
}

.project-card:hover {
    transform: translateY(-4px);
      box-shadow: 6px 6px 6px var(--color-border-light);

}

.project-card h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 0.5em;
    font-size: 1.4em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.project-status {
    font-size: 0.9em;
    color: var(--text-muted);
    margin-bottom: 1em;
    font-style: italic;
    display: inline-block;
    padding: 0.3em 0.8em;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card ul {
    list-style-type: none;
    padding-left: 0;
    margin: 1.2em 0;
}

.project-card ul li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 0.5em;
}

.project-card ul li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.project-links {
    margin-top: 1.8em;
    padding-top: 1.2em;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: right;
}

.project-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.project-links a:hover {
    text-decoration: underline;
}

.coming-soon {
    color: var(--text-muted);
    font-style: italic;
}

/* Make projects responsive */
@media (min-width: 768px) {
    .project-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .project-section {
        flex: 1;
        min-width: 300px;
        padding-right: 2em;
    }
}