/* Minimal Academic Website Stylesheet */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
header {
    margin-bottom: 40px;
}

header h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

header nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

header nav a {
    color: #555;
    font-size: 15px;
}

header nav a:hover {
    color: #000;
}

/* About Section */
.about {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.bio p {
    margin-bottom: 12px;
}

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

section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

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

/* Publication List */
.pub-list {
    list-style: none;
}

.pub-list li {
    margin-bottom: 20px;
    padding-left: 0;
}

.pub-title {
    font-weight: 500;
    color: #000;
}

.award {
    display: inline-block;
    background: #fff3cd;
    color: #856404;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
}

.pub-authors {
    color: #444;
    font-size: 15px;
}

.pub-venue {
    color: #666;
    font-size: 14px;
    font-style: italic;
}

.pub-links {
    font-size: 14px;
}

.pub-links a {
    color: #0066cc;
}

/* Experience List */
.exp-list {
    list-style: none;
}

.exp-list li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #999;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 20px 15px;
    }

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

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

    header nav {
        justify-content: center;
    }
}
