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

body {
    font-family: 'JetBrains Mono', 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
    line-height: 1.6;
    color: #000;
    background: #f2deb7;
    font-size: 16px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #f2deb7;
    padding: 20px 40px;
    border-bottom: 1px solid #ddd;
    z-index: 1000;
}

nav a {
    color: #000;
    text-decoration: none;
    margin-right: 20px;
    font-size: 16px;
    font-weight: 400;
}

nav a:hover {
    text-decoration: underline;
}

.nav-active {
    font-weight: 600;
}

/* Content */
.content {
    max-width: 800px;
    margin: 0;
    padding: 80px 40px 40px 40px;
    text-align: left;
}

/* Profile Header */
.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.profile-pic {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.profile-text {
    flex: 1;
}

/* Header */
h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
    line-height: 1.2;
}

.tagline {
    font-size: 20px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Sections */
section {
    margin-bottom: 40px;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.about p {
    margin-bottom: 20px;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.about p:last-child {
    margin-bottom: 0;
}

/* Dividers */
.divider {
    color: #ccc;
    font-size: 16px;
    margin: 40px 0;
    line-height: 1;
    overflow-x: auto;
    white-space: nowrap;
}

/* Job Items */
.job-item {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.job-item strong {
    color: #000;
    font-weight: 600;
}

.job-item:last-child {
    margin-bottom: 0;
}

/* Contact Items */
.contact-item {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.contact-item strong {
    color: #000;
    font-weight: 600;
}

.contact-item a {
    color: #333;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-item a:hover {
    color: #000;
}

.contact-item:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

footer p {
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }
    
    nav a {
        margin-right: 15px;
        font-size: 14px;
    }
    
    .content {
        padding: 60px 20px 30px 20px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .divider {
        font-size: 14px;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .profile-pic {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 10px 15px;
    }
    
    nav a {
        margin-right: 10px;
        font-size: 13px;
    }
    
    .content {
        padding: 50px 15px 25px 15px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    .job-item,
    .contact-item,
    .about p {
        font-size: 15px;
    }
}

/* Blog styles */
.blog-posts {
    margin-top: 40px;
}

.blog-post {
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-post h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.blog-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.blog-post p:last-child {
    margin-bottom: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}