/* Mondrian-inspired Academic Homepage Styles */

:root {
    --background-color: #fdfdfd;
    --text-color: #1a1a1a;
    --primary-font: 'Inter', sans-serif;
    --mono-font: 'Roboto Mono', monospace;
    --line-color: #e0e0e0;
    --border-color: #1a1a1a;
    --red: #dd1c1a;
    --blue: #1256a9;
    --yellow: #f7d708;
    --link-hover-color: #1256a9;
}

body {
    font-family: var(--primary-font);
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 800px) 1fr;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    padding: 0 2rem;
}

.header, .main-content, .footer {
    grid-column: 2 / 3;
}

.header {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.name {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
}

.main-content {
    padding: 3rem 0;
    position: relative;
}

.content-section {
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--line-color);
    margin-bottom: 3rem;
}

.content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.affiliation, .research-interest, .contact {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact a {
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid var(--line-color);
    transition: color 0.3s, border-color 0.3s;
}

.contact a:hover {
    color: var(--link-hover-color);
    border-bottom-color: var(--link-hover-color);
}

h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.publication-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.publication-list li {
    margin-bottom: 2rem;
}

.publication-list a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.publication-list a:hover {
    color: var(--link-hover-color);
}

.publication-list p {
    font-family: var(--mono-font);
    font-size: 0.9rem;
    color: #666;
    margin: 0.3rem 0 0 0;
}

.footer {
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid var(--line-color);
}

/* Mondrian Color Blocks */
.color-block {
    position: absolute;
    width: 20px;
    height: 20px;
}

.color-block-yellow {
    background-color: var(--yellow);
    top: 4rem;
    right: 0;
}

.color-block-red {
    background-color: var(--red);
    top: 50%;
    left: -40px;
}

.color-block-blue {
    background-color: var(--blue);
    bottom: 2rem;
    right: -40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }
    .header, .main-content, .footer {
        grid-column: 1 / 2;
    }
    .name {
        font-size: 2rem;
    }
    .color-block {
        display: none;
    }
}