/* Ultra Minimalist Design - Black on White */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Navigation */
.navbar {
    margin-bottom: 60px;
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

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

/* Main Content */
.container {
    max-width: 100%;
    padding: 0;
}

h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px;
    padding-top: 20px;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 30px 0 15px;
}

p {
    margin-bottom: 20px;
}

/* Links */
a {
    color: #000;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

/* Lists */
ul, ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

li {
    margin-bottom: 8px;
}

/* Profile Section */
.profile-section {
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.profile-photo {
    flex-shrink: 0;
    width: 200px;
    height: 250px;
    overflow: hidden;
}

.profile-image {
    width: 200px !important;
    height: 250px !important;
    max-width: 200px !important;
    max-height: 250px !important;
    min-width: 200px !important;
    min-height: 250px !important;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #000;
    display: block;
    box-sizing: border-box;
}

.profile-info {
    margin-bottom: 40px;
    flex: 1;
}

.profile-info h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.profile-info .title {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.profile-info .bio {
    margin-bottom: 30px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info a {
    display: block;
    margin-bottom: 8px;
}

/* Buttons - Minimal */
.btn {
    display: inline-block;
    padding: 8px 16px;
    margin-right: 10px;
    text-decoration: none;
    border: 1px solid #000;
    background: #fff;
    color: #000;
}

.btn:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
}

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

/* Publications List */
.publication-list {
    list-style: none;
    padding-left: 0;
}

.publication-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.publication-list li:last-child {
    border-bottom: none;
}

/* Stats */
.stats-grid {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
    text-align: center;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 36px;
    font-weight: 600;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Research Cards - Minimal */
.research-grid {
    margin: 30px 0;
}

.research-card {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.research-card:last-child {
    border-bottom: none;
}

.research-card h3 {
    margin-bottom: 10px;
}

.research-card p {
    color: #333;
}

/* Timeline - Minimal */
.timeline {
    margin: 30px 0;
}

.timeline-item {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 2px solid #000;
}

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

.timeline-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.timeline-description {
    color: #333;
}

/* Footer */
footer {
    margin-top: 80px;
    padding-top: 20px;
    border-top: 1px solid #000;
    text-align: center;
}

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

/* Page Content */
.single-page, .list-page {
    margin-bottom: 60px;
}

.page-header {
    margin-bottom: 40px;
}

.page-header h1 {
    margin-bottom: 10px;
}

.content {
    line-height: 1.8;
}

.content h2 {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* Remove all shadows and gradients */
* {
    box-shadow: none !important;
    text-shadow: none !important;
    background-image: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu a {
        font-size: 12px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .profile-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .profile-photo {
        width: 150px;
        height: 190px;
    }
    
    .profile-image {
        width: 150px !important;
        height: 190px !important;
        max-width: 150px !important;
        max-height: 190px !important;
        min-width: 150px !important;
        min-height: 190px !important;
    }
    
    .profile-info {
        margin-bottom: 20px;
    }
}