:root {
    --bg: #1c1917;
    --bg-surface: #262220;
    --text: #e8e0d4;
    --text-muted: #a89070;
    --accent: #c9a96e;
    --accent-hover: #d4b87a;
    --accent-dim: #4a3d2a;
    --link: #c9a96e;
}

html {
    background-color: var(--bg);
}

body {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--bg);
    color: var(--text);
}

/* Override latex.css typography colors */
a {
    color: var(--link);
}

a:hover {
    color: var(--accent-hover);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text);
    font-family: 'Playfair Display', serif;
}

/* Section heading underline */
h2 {
    border-bottom-color: var(--accent-dim) !important;
}


header {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.left-column {
    flex: 1;
    max-width: 250px;
}

.right-column {
    flex: 2;
}

.right-column h1 {
    margin-top: 0;
    font-size: 1.8rem;
    line-height: 1.2;
}

.headshot {
    width: 100%;
    max-width: 240px;
    border-radius: 8px;
    margin-bottom: 10px;
    margin-top: 6px;
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.social-icons {
    display: flex;
    justify-content: left;
    gap: 10px;
    margin-bottom: 10px;
}

.social-icons a {
    text-decoration: none;
}

.social-icons i {
    font-size: 20px;
    color: var(--text-muted);
}

.contact-info a {
    color: var(--text-muted);
}

i.fas:hover,
i.fab:hover {
    color: var(--accent);
    transition: color 0.3s;
}

.contact-info {
    margin-top: 10px;
}

.contact-info p {
    margin: 5px 0;
}

.news-date {
    font-weight: bold;
    margin-right: 10px;
    color: var(--accent);
}

.publication-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.publication-list li {
    margin-bottom: 15px;
}

.publication-entry {
    margin: 0;
    line-height: 1.4;
}

.publication-list a {
    text-decoration: none;
    margin-right: 5px;
}

.publication-list a:hover {
    text-decoration: underline;
}

.publication-list strong {
    font-weight: bold;
}

.publication-list em {
    font-style: italic;
}


@media (max-width: 600px) {
    header {
        flex-direction: column;
    }

    .right-column {
        order: -1;
    }

    .left-column {
        max-width: 100%;
    }

    .headshot {
        max-width: 140px;
    }
}

.talks-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.talks-list > li {
    margin-bottom: 15px;
}

.talk-title {
    margin: 0 0 3px 0;
}

.talk-title a {
    text-decoration: none;
}

.talk-details {
    list-style: none;
    padding-left: 20px;
    margin: 0;
}

.talk-details li {
    margin-top: -6px;
}

.music-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0 0 0;
}

.music-list li {
    margin-bottom: 6px;
    line-height: 1.5;
}

.performance-date {
    font-weight: bold;
    min-width: 85px;
    display: inline-block;
}

.performance-group {
    font-style: italic;
}

.performance-repertoire {
    font-size: 0.95em;
    color: #666;
}

.performance-venue {
    color: #555;
}

.music-list a {
    text-decoration: none;
    margin-right: 3px;
}

.music-list a:hover {
    text-decoration: underline;
}

footer {
    padding-top: 5px;
}
