@font-face {
    font-family: "ComicMono";
    src: url("assets/ComicMono.ttf")
         format("truetype");
}

:root {
    --background-color: #0a0e17;
    --surface-color: #141b2d;
    --accent-color: #00d9ff;
    --accent-secondary-color: #8b5cf6;
    --primary-color: #e4e8f0;
    --secondary-color: #8892a6;
    --terminal-color: #7ce38b;

    --success-color: #00ff88;
    --warning-color: #ffb627;
    --error-color: #ff4757;
    --divider-color: #1e2841;
    --hover-color: #1a2332;
}

body {
    font-family: ComicMono, serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 2em;
    line-height: 1.6;
    color: var(--primary-color);
    background: var(--background-color);
}

h1 {
    font-size: 2em;
    margin-bottom: 0.2em;
    color: var(--accent-secondary-color);
}

h2 {
    font-size: 1.4em;
    margin-top: 2em;
    margin-bottom: 0.8em;
    color: var(--accent-secondary-color);
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.2em;
}

h3 {
    font-size: 1.1em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: var(--accent-secondary-color);
}

a {
    color: var(--accent-secondary-color);
    text-decoration: underline;
    transition: color 0.1s ease-in-out;
}

a:visited {
    color: var(--accent-secondary-color);
}

a:hover {
    color: var(--accent-color);
}

.subtitle {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 2em;
}

.project-list {
    margin: 1em 0;
}

.project-list li {
    margin-bottom: 0.8em;
}

.project-title {
    font-weight: bold;
}

.tech-stack {
    font-style: italic;
    color: var(--secondary-color);
    font-size: 0.9em;
}

.status-note {
    color: var(--secondary-color);
    font-size: 0.85em;
    margin-top: 0.2em;
}

.contact-info {
    margin-top: 2em;
    padding-top: 1em;
    border-top: 1px solid #ddd;
}

code {
    font-family: 'Courier New', monospace;
    color: var(--accent-secondary-color);
    background: var(--surface-color);
    padding: 0.1em 0.3em;
    border-radius: 3px;
}

.motto {
    background: var(--surface-color);
    padding: 1em;
    margin: 1em 0;
    border-left: 3px solid #ccc;
    font-style: italic;
}

p {
    margin: 1em 0;
}

ul, ol {
    padding-left: 1.2em;
    margin: 1em 0;
}


/*
  No Margin
*/
.nm {
    margin: 0;
}

.button {
    display: inline-block;
    padding: 0.4em 0.8em;
    border: 1px solid #000;
    background: var(--surface-color);
    color: var(--accent-secondary-color);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.95em;
}

.button:hover {
    background: var(--hover-color);
}


.flex {
    display: flex;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mt1 { margin-top: 1em; }
.mt2 { margin-top: 2em; }

.mb1 { margin-bottom: 1em; }
.mb2 { margin-bottom: 2em; }

.pt1 { padding-top: 1em; }
.pb1 { padding-bottom: 1em; }

.inline    { display: inline; }
.inline-b  { display: inline-block; }

.border     { border: 1px solid var(--divider-color); }
.rounded    { border-radius: 4px; }
.shadow-subtle { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }

.bg-light { background: var(--primary-color); }
.bg-faint { background: var(--surface-color); }

.card {
    padding: 1em;
    border: 1px solid var(--divider-color);
    border-radius: 6px;
    background: var(--primary-color);
    margin: 1em 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1em;
}

.small {
    font-size: 0.85em;
    color: #777;
}

.text-block {
    margin: 1.5em 0;
    line-height: 1.6;
}

.section-label {
    font-weight: bold;
    font-size: 1.05em;
    color: var(--accent-secondary-color);
    margin: 1.5em 0 0.5em 0;
}


.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-small  { font-size: 0.85em; }
.text-muted  { color: var(--secondary-color); }

@media (max-width: 600px) {
    body {
        padding: 1em;
        font-size: 14px;
    }

    h1 { font-size: 1.7em; }
    h2 { font-size: 1.2em; }
    h3 { font-size: 1em; }
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }

}



