html {
    scroll-behavior: smooth;
}

body.terminal {
    background-color: #fafafa; !important;
}

/* PROJECT CARDS */

.project-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;

    padding: 32px;
    margin-bottom: 32px;

    border: 1px solid #e5e5e5;
    border-radius: 18px;

    background: white;

    box-shadow: 0 2px 10px rgba(0,0,0,0.04);

    transition: all 0.2s ease;
}

.project-card:hover {
    transform: translateY(-2px);

    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.project-content {
    flex: 1;
}

.project-image img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

/* TECH STACK */

.tech-stack {
    margin-top: 16px;
    color: #666;
    font-size: 0.95rem;
}

/* GITHUB LINK */

.github-link {
    display: inline-block;
    margin-top: 20px;

    text-decoration: none;
    font-weight: 600;
}

.github-link:hover {
    text-decoration: underline;
}



body.terminal {
    background-color: #fafafa !important;
    color: #222 !important;
}

body.terminal h1,
body.terminal h2,
body.terminal h3,
body.terminal h4,
body.terminal p,
body.terminal li {
    color: #222 !important;
}

/* MOBILE RESPONSIVE */

@media (max-width: 768px) {

    .project-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-image img {
        width: 100%;
        max-width: 250px;
        height: auto;
    }

}