/* style.css - Minimal styles for an academic homepage */

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #333;
    background-color: #fdfdfd;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 40px;
}

.container {
    padding: 20px;
}

/* Typography */
h1, h2, h3 {
    color: #2c3e50;
    margin-top: 1.8em;
    margin-bottom: 0.8em;
    font-weight: normal;
}

h1 { font-size: 2.8em; border-bottom: 2px solid #eee; padding-bottom: 10px; }
h2 { font-size: 1.8em; border-bottom: 1px solid #eee; padding-bottom: 5px; }
h3 { font-size: 1.3em; margin-top: 1.5em; }

p, li {
    margin-bottom: 1em;
    text-align: justify;
}

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover {
    color: #1a5276;
    text-decoration: underline;
}

/* Header & Navigation */
.site-header {
    text-align: center;
    margin-bottom: 3em;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.site-subtitle {
    color: #7f8c8d;
    font-size: 1.2em;
    margin-top: 0.5em;
    margin-bottom: 1.5em;
}

.site-nav {
    margin-top: 1.5em;
}
.site-nav a {
    margin: 0 15px;
    font-size: 1.1em;
    color: #555;
}
.site-nav a:hover {
    color: #2c3e50;
}

/* Sections */
.section {
    margin-bottom: 3.5em;
}

/* Publication List */
.publication {
    margin-bottom: 2.5em;
}
.publication ul {
    list-style-type: none;
    padding-left: 0;
}
.publication li {
    margin-bottom: 1.8em;
    padding-left: 20px;
    border-left: 3px solid #ecf0f1;
}

/* Footer */
.site-footer {
    margin-top: 4em;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
    color: #95a5a6;
    font-size: 0.95em;
}
.site-footer a {
    color: #7f8c8d;
    margin: 0 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 15px;
        padding-top: 20px;
    }
    h1 { font-size: 2.2em; }
    h2 { font-size: 1.6em; }
    .site-nav a {
        display: block;
        margin: 10px 0;
        padding: 5px;
    }
}
