/* Terminal Portfolio Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fira Code', monospace;
    background: #0a0a0a;
    color: #00ff00;
    line-height: 1.6;
    overflow-x: hidden;
}

.terminal-container {
    min-height: 100vh;
    padding: 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

/* Terminal Window Styles */
.terminal-window {
    background: #1a1a1a;
    border: 2px solid #00ff00;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    overflow: hidden;
}

.terminal-header {
    background: #2a2a2a;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #00ff00;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.close {
    background: #ff5f56;
}

.minimize {
    background: #ffbd2e;
}

.maximize {
    background: #27ca3f;
}

.terminal-title {
    color: #00ff00;
    font-weight: 600;
    font-size: 14px;
}

.terminal-content {
    padding: 20px;
    min-height: 200px;
}

/* Typing Animation */
.typing-text {
    font-size: 18px;
    font-weight: 600;
    color: #00ff00;
    text-align: center;
    margin: 20px 0;
}

/* Navigation */
.terminal-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.nav-item {
    background: #1a1a1a;
    border: 2px solid #00ff00;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #00ff00;
}

.nav-item:hover {
    background: #00ff00;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.4);
}

.nav-item.active {
    background: #00ff00;
    color: #000;
}

.nav-item i {
    margin-right: 8px;
}

/* Content Sections */
.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

/* Command Line */
.command-line {
    background: #000;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-family: 'Fira Code', monospace;
}

.prompt {
    color: #00ff00;
    font-weight: 600;
}

.command {
    color: #fff;
    margin-left: 10px;
}

/* About Section */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.status-item {
    background: #1a1a1a;
    border: 1px solid #00ff00;
    padding: 15px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-label {
    color: #888;
    font-size: 14px;
}

.status-value {
    font-weight: 600;
    font-size: 14px;
}

.status-value.black-ops {
    color: #ff0000;
}

.status-value.online {
    color: #00ff00;
}

.status-value.paranoid {
    color: #ff6b6b;
}

.about-text {
    margin: 20px 0;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 15px;
}

.philosophy {
    margin: 30px 0;
    padding: 20px;
    background: #1a1a1a;
    border-left: 4px solid #00ff00;
    border-radius: 4px;
}

.philosophy h3 {
    margin-bottom: 15px;
    color: #00ff00;
}

.philosophy blockquote {
    font-style: italic;
    margin: 10px 0;
    padding: 10px;
    background: #000;
    border-radius: 4px;
    border-left: 3px solid #00ff00;
}

/* Projects Section */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.project-card {
    background: #1a1a1a;
    border: 2px solid #00ff00;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 0, 0.3);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.project-header h3 {
    color: #00ff00;
    font-size: 18px;
}

.project-status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.project-status.online {
    background: #00ff00;
    color: #000;
}

.project-status.active {
    background: #ff6b6b;
    color: #fff;
}

.project-status.stealth {
    background: #4ecdc4;
    color: #000;
}

.project-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tech-tag {
    background: #333;
    color: #00ff00;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid #00ff00;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00ff00;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.skill-category {
    background: #1a1a1a;
    border: 1px solid #00ff00;
    border-radius: 8px;
    padding: 20px;
}

.skill-category h3 {
    color: #00ff00;
    margin-bottom: 15px;
    font-size: 16px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: #333;
    color: #00ff00;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid #00ff00;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: #00ff00;
    color: #000;
    transform: scale(1.05);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    background: #1a1a1a;
    border: 1px solid #00ff00;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.contact-item i {
    font-size: 24px;
    color: #00ff00;
    width: 30px;
}

.contact-info h3 {
    color: #00ff00;
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #00ff00;
}

.availability {
    background: #1a1a1a;
    border: 1px solid #00ff00;
    border-radius: 8px;
    padding: 20px;
}

.availability h3 {
    color: #00ff00;
    margin-bottom: 15px;
}

.availability-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.availability-tag {
    background: #333;
    color: #00ff00;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid #00ff00;
    transition: all 0.3s ease;
}

.availability-tag:hover {
    background: #00ff00;
    color: #000;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .terminal-container {
        padding: 10px;
    }
    
    .terminal-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-item {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .typing-text {
        font-size: 16px;
    }
}

/* Animations */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #00ff00;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00cc00;
}
