/*
Theme Name: Terminal Portfolio
Theme URI: https://github.com/ademisamakova/portfolio
Author: Ademi Samakova
Description: A terminal-style black page theme for WordPress.
*/

body {
    background-color: #000;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

#terminal {
    max-width: 800px;
    margin: 0 auto;
}

#user-input {
    outline: none;
    border: none;
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
    margin: 0;
    display: inline;
    white-space: pre-wrap;
    word-break: break-all;
}

.active-prompt .cursor {
    margin-left: 0;
}

.command-line {
    display: block;
    min-height: 1.6em;
}

.command-line-text {
    display: inline;
}

.prompt {
    color: #00ff00;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 1.2em;
    background-color: #00ff00;
    vertical-align: middle;
    margin-left: 5px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

a {
    color: #58a6ff;
    text-decoration: none;
    border-bottom: 1px dashed #58a6ff;
}

a:hover {
    background-color: #58a6ff;
    color: #000;
}

h1, h2, h3 {
    color: #00ff00;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.terminal-header {
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #888;
}

.terminal-banner {
    color: #00ff00;
    margin-bottom: 20px;
    line-height: 1.2;
}

.terminal-banner pre {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
}

.post-content {
    display: none;
    margin: 10px 0 20px 20px;
}

.welcome-msg {
    color: #fff;
    margin-bottom: 20px;
}

.menu-item {
    display: block;
    margin: 5px 0;
}

.menu-item span {
    color: #00ff00;
    margin-right: 10px;
}
