/* Layout 4: Terminal/Developer Style */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #1e1e1e;
    color: #d4d4d4;
    line-height: 1.6;
    padding: 2rem;
}

/* Terminal Container */
.terminal {
    max-width: 900px;
    margin: 0 auto;
    background: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Terminal Header */
.terminal-header {
    background: #323233;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #1e1e1e;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.terminal-title {
    margin-left: auto;
    font-size: 0.85rem;
    color: #8b8b8b;
}

/* Terminal Body */
.terminal-body {
    padding: 2rem;
    font-size: 0.95rem;
}

/* Prompt Line */
.prompt-line {
    display: flex;
    align-items: center;
    margin: 2rem 0 1rem;
}

.prompt-line:first-child {
    margin-top: 0;
}

.prompt {
    color: #4ec9b0;
    font-weight: 500;
}

.cursor {
    color: #d4d4d4;
    animation: blink 1s infinite;
    margin-left: 0.25rem;
}

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

/* Output Sections */
.output {
    margin-bottom: 1rem;
    padding-left: 1rem;
}

h1 {
    font-size: 2rem;
    color: #4fc3f7;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.role {
    color: #ce9178;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.bio {
    color: #d4d4d4;
    line-height: 1.7;
    margin-top: 1rem;
}

/* Profile Photo */
.intro-section {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4ec9b0;
    flex-shrink: 0;
}

.intro-text {
    flex: 1;
}

/* Research Interests */
.research-list {
    color: #d4d4d4;
}

.research-item {
    margin-bottom: 2rem;
}

.research-title {
    color: #dcdcaa;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.research-item p {
    color: #d4d4d4;
    line-height: 1.7;
    margin-left: 1.5rem;
}

/* Project List */
.project-list {
    color: #d4d4d4;
}

.project-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.project-date {
    color: #ce9178;
    min-width: 100px;
    flex-shrink: 0;
}

.project-content {
    flex: 1;
}

.project-content strong {
    color: #dcdcaa;
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.project-content p {
    color: #d4d4d4;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.project-links {
    margin-top: 0.5rem;
}

.project-links a {
    color: #4fc3f7;
    text-decoration: none;
    margin-right: 1rem;
}

.project-links a:hover {
    text-decoration: underline;
}

/* JSON */
.json {
    color: #d4d4d4;
    line-height: 1.8;
}

.json a {
    color: #ce9178;
    text-decoration: none;
}

.json a:hover {
    text-decoration: underline;
}

/* Links */
a {
    color: #4fc3f7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .terminal-body {
        padding: 1.5rem;
        font-size: 0.875rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .project-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .project-date {
        min-width: auto;
    }

    .intro-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-photo {
        width: 120px;
        height: 120px;
    }
}
