/*!
Theme Name: terminal_cybersecurity
Theme URI: http://underscores.me/
Author: Sushil Shakya
Author URI: https://cybersecurity.sushilshakya.com
Description: This is personal blog website
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: terminal
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

terminal_cybersecurity is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #0a0a0a;
    color: #00ff00;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.4;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.img-responsive {
    width: 100%;
    height: auto;
}
.terminal {
    background: #000;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}
.prompt {
    color: #00ff00;
    font-weight: bold;
}
.command {
    color: #ffffff;
}
.output {
    color: #dddddd;
    margin: 10px 0;
}
.section {
    margin: 30px 0;
    min-height: 120px;
}
.section-title {
    color: #00ff00;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}
.project {
    background: #111;
    border: 1px solid #333;
    border-radius: 3px;
    padding: 15px;
    margin: 10px 0;
    min-height: 100px;
}
.project-title {
    color: #00ff00;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}
.project-desc {
    color: #cccccc;
    margin-bottom: 10px;
}
.project-meta {
    color: #999;
    font-size: 12px;
}
.project-meta span {
    margin-right: 15px;
}
.link {
    color: #00ff00;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.link:hover {
    text-decoration: none;
}
.loading {
    color: #888;
    font-style: italic;
}
.error {
    color: #ff4444;
}
.footer-links {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.name-trigger {
    background: none;
    border: none;
    padding: 0;
    color: #00ff00;
    cursor: pointer;
    font: inherit;
    text-decoration: underline;
}
.name-trigger:hover {
    opacity: 0.85;
}
.profile-photo {
    margin-top: 1rem;
}
.profile-photo img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 6px;
    border: 1px solid #30363d;
}
.cursor {
    animation: blink 1s infinite;
}
@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}
@media (max-width: 768px) {
    body {
        padding: 10px;
        font-size: 12px;
    }
    .terminal {
        padding: 15px;
    }
}