/* ==========================================================================
   MIDNIGHT THEME - Dark terminal aesthetic
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');
@import url('styles-base.css');

/* Theme Variables
   ========================================================================== */
:root {
    --bg: #0a0e14;
    --surface: #151922;
    --text: #d5d8da;
    --comment: #5c6773;
    --accent: #39bae6;
    --warning: #ff8f40;
    --success: #7fd962;
    --error: #f07178;
    --selection: #253340;
}

/* Theme-Specific Styles
   ========================================================================== */
body {
    font-family: 'JetBrains Mono', monospace;
    background: var(--bg);
    color: var(--text);
}

.scanlines {
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    opacity: 0.5;
}

.terminal-window {
    max-width: 1000px;
    background: var(--surface);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    background: #0d1117;
    border-bottom: 1px solid #000;
}

.dot-close { background: var(--error); }
.dot-minimize { background: var(--warning); }
.dot-maximize { background: var(--success); }

.terminal-title {
    color: var(--comment);
}

.prompt {
    color: var(--accent);
}

.command {
    color: var(--success);
}

.section-block {
    animation: typeIn 0.3s ease-out;
}

.section-header {
    border-bottom: 1px solid var(--selection);
}

h1 {
    color: var(--accent);
}

.highlight {
    color: var(--warning);
}

.link {
    color: var(--accent);
}

.link:hover {
    color: var(--warning);
}

.career-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.career-list > li > strong {
    color: var(--warning);
}

.career-list p strong {
    color: var(--warning);
}

.belief-list li::before {
    content: '//';
    position: absolute;
    left: 0;
    color: var(--comment);
}

.cta-box {
    background: var(--bg);
    border: 2px solid var(--accent);
    border-radius: 4px;
}

.cta-box h2 {
    color: var(--success);
}

.cta-box p {
    color: var(--comment);
}

.btn {
    border-radius: 4px;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 20px rgba(57, 186, 230, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--success);
    border-color: var(--success);
}

.btn-secondary:hover {
    background: var(--success);
    color: var(--bg);
    box-shadow: 0 0 20px rgba(127, 217, 98, 0.3);
}

.cursor {
    width: 8px;
    height: 16px;
    background: var(--accent);
    animation: blink 1s infinite;
}

/* Profile Photo Styles
   ========================================================================== */
.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid var(--accent);
    box-shadow: 0 0 20px rgba(57, 186, 230, 0.3);
    flex-shrink: 0;
}

.profile-text {
    flex: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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