/* =========================
   Base Layout
========================= */
body {
    margin: 0;
    padding: 0;

    width: 100vw;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #121212;
    color: #e0e0e0;

    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}
/* =========================
   Project Grid
========================= */
#project-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .5rem;
    padding: .5rem;
}
/* =========================
   Project Card
========================= */
#project-list a {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 0.5rem 0.75rem;
    background-color: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    transition:
            background-color 0.25s ease,
            border-color 0.25s ease,
            color 0.25s ease,
            box-shadow 0.25s ease,
            transform 0.25s ease;
}
/* =========================
   Hover Effects
========================= */
#project-list a:hover {
    background-color: #262626;
    border-color: #4dabf7;
    color: #82cfff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(77, 171, 247, 0.25);
}
/* Light Sweep Effect */
#project-list a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    transform: skewX(-25deg);
    background:
            linear-gradient(
                    120deg,
                    transparent,
                    rgba(77, 171, 247, 0.15),
                    transparent
            );
}
#project-list a:hover::before {
    left: 125%;
    transition: left 0.6s ease;
}
/* =========================
   Project Image
========================= */
#project-list img {
    max-width: 40px;
    max-height: 40px;
    border-radius: 6px;
}
/* =========================
   Project Title
========================= */
#project-list span {
    font-size: 15px;
    letter-spacing: 0.3px;
}
/* =========================
   Responsive
========================= */
@media (max-width: 600px) {
    #project-list {
        grid-template-columns: repeat(2, 1fr);
    }
}