@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&family=Inter:wght@100..900&display=swap');

body {
    background-color: #1a1a1a;
    color: #e6e6e6;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

@media (min-width: 900px) {
    body {
        padding: 4rem 2rem;
    }

    h1 {
        font-size: 3rem;
    }
}

.avatar {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.hashtag {
    color: #ff5555;
    font-family: 'Fira Code', monospace;
}

.pronouns {
    font-size: 1rem;
    font-weight: 400;
    color: #888888;
    font-family: 'Fira Code', monospace;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: #8ab4f8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Project Layout Grid */
.project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr 320px;
    }
}

/* GitHub Badge Header Link */
.github-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.75rem;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    vertical-align: middle;
}

.github-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Sidebar Images */
.project-media {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-media figure {
    margin: 0;
}

.project-media img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.project-media figcaption {
    font-size: 0.85rem;
    color: #888888;
    font-family: 'Fira Code', monospace;
    margin-top: 0.5rem;
    text-align: center;
}

/* Footer Navigation Spacing */
.nav-links {
    margin-top: 3rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
}

/* Status Dot Indicator */
.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 8px;
    vertical-align: middle;
}

.status-dot.green  { background-color: #2ecc71; }
.status-dot.yellow { background-color: #f1c40f; }
.status-dot.red    { background-color: #e74c3c; }

/* Date Metadata */
.project-meta {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/* Status Legend Formatting */
.status-legend {
    display: flex;
    gap: 1.25rem;
    font-size: 0.85em;
    color: #666;
    margin-bottom: 1rem;
    align-items: center;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Color the default list item bullet using ::marker */
li.status-green::marker {
    color: #2ecc71;
}

li.status-yellow::marker {
    color: #f1c40f;
}

li.status-red::marker {
    color: #e74c3c;
}