/* =========================================================
   Shared terminal theme — used by every page on the site
   ========================================================= */
:root {
    --bg: #181c20;
    --panel: #23272e;
    --text: #c3e88d;
    --comment: #5c6370;
    --accent: #82aaff;
    --folder: #ffd700;
    --shadow: 0 2px 12px rgba(0,0,0,0.12);
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Fira Mono', 'Consolas', 'Menlo', monospace;
    min-height: 100vh;
}
.terminal {
    background: var(--panel);
    margin: 2rem auto;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    position: relative;
}
.terminal-header {
    display: flex;
    align-items: center;
    gap: 0.5em;
    margin-bottom: 1.5em;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.prompt {
    color: var(--accent);
}
.cursor {
    display: inline-block;
    width: 10px;
    background: var(--accent);
    animation: blink 1s steps(1) infinite;
    height: 1.1em;
    vertical-align: middle;
    margin-left: 2px;
}
.ascii-title-box {
    background: #181c20;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 1em 0.5em;
    margin-bottom: 1.5em;
    text-align: center;
    font-family: 'Fira Mono', 'Consolas', 'Menlo', monospace;
    font-size: 1.1em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: inline-block;
    width: 100%;
    color: var(--text);
}
.comment {
    color: var(--comment);
    font-style: italic;
    margin-bottom: 1.5em;
    display: block;
}
.folder-link {
    color: var(--folder);
    cursor: pointer;
    text-decoration: underline;
    font-weight: bold;
    margin: 0 0.5em;
    transition: color 0.2s;
}
.folder-link:hover {
    color: #fffbe7;
}
.cd-link {
    color: var(--accent);
    cursor: pointer;
    text-decoration: underline;
    margin-top: 2em;
    display: inline-block;
    transition: color 0.2s;
}
.cd-link:hover {
    color: #c3e88d;
}
.contact-link {
    color: var(--accent);
    text-decoration: underline;
    transition: color 0.2s;
}
.contact-link:hover {
    color: var(--folder);
}
.output-section {
    margin-top: 1.5em;
    animation: fadeIn 0.5s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px);}
    to { opacity: 1; transform: none;}
}
@media (max-width: 600px) {
    .terminal {
        padding: 1rem 0.5rem 1rem 0.5rem;
    }
    .ascii-title-box {
        font-size: 0.85em;
        padding: 0.5em 0.2em;
    }
}
