/* --- style.css --- */
:root {
    --bg: #111111;
    --fg: #d4d4d4;
    --accent: #50fa7b; /* Terminal green */
    --link: #8be9fd;   /* Cyan */
    --link-hover: #111111;
}

body {
    font-family: "Courier New", Courier, monospace;
    background-color: var(--bg);
    color: var(--fg);
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    line-height: 1.6;
    font-size: 16px;
}

header { margin-bottom: 2rem; }

h1, h2, h3 {
    color: var(--accent);
    font-weight: normal;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 1.5rem;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 0.5rem;
    display: inline-block;
}

h2::before {
    content: ">> ";
    color: var(--fg);
}

a {
    color: var(--link);
    text-decoration: none;
    border-bottom: 1px solid var(--link);
}

a:hover {
    background-color: var(--link);
    color: var(--link-hover);
}

hr {
    border: 0;
    border-bottom: 1px dashed var(--fg);
    margin: 2rem 0;
}

ul {
    list-style-type: square;
    padding-left: 1.5rem;
}

li { margin-bottom: 0.5rem; }

blockquote {
    border-left: 2px solid var(--accent);
    margin: 1.5rem 0;
    padding-left: 1rem;
    color: #a3a3a3;
    font-style: italic;
}

.ascii-art {
    color: var(--accent);
    white-space: pre;
    font-size: 0.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    overflow-x: auto;
}

/* New style for your profile picture */
.profile-pic {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 1.5rem 0;
    border: 1px solid var(--accent);
    filter: grayscale(0%); /* Optional: removes color to fit the brutalist vibe */
}
.profile-pic:hover {
    filter: grayscale(100%);
}

.nav-menu {
    font-weight: bold;
    margin-bottom: 1rem;
}
