/* Basic Reset and Variables */
:root {
    --primary-color: #0056b3; /* A professional blue */
    --text-color: #333;
    --font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: white;
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);

    /* New background pattern styles */
    background-image: url('bg.png'); /* Points to your image file */
    background-repeat: repeat;       /* Tiles the image across the entire background */
    background-attachment: fixed;    /* Makes the background static (doesn't scroll with content) */
    background-size: auto;           /* Ensures the image isn't stretched or shrunk, maintaining its original size */

}

/* --- MINIMAL FRONT PAGE STYLES --- */

.minimal-hero {
    /* Full screen centering */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content-wrapper {
    max-width: 700px;
    padding: 20px;
}

.centered-name {
    /* Name: bolded, big */
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.centered-bio {
    /* Brief 2 sentence bio */
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.centered-links a {
    /* Links style */
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    margin: 0 5px; /* Adjust spacing around the links */
    white-space: nowrap; /* Prevents links from breaking onto a new line */
}

.centered-links a:hover {
    text-decoration: underline;
}

/* --- STYLES FOR INNER PAGES (bio.html, publications.html) --- */

header {
    background-color: white;
    padding: 1rem 5%;
    border-bottom: 2px solid #f4f4f4;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

nav h1 a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.5rem;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    padding: 5px 10px;
}

nav ul li a:hover {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.content-section {
    padding: 2rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f4f4f4;
    padding-bottom: 0.5rem;
}

.publication-item {
    border-left: 5px solid var(--primary-color);
    padding: 10px 15px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
}

footer {
    text-align: center;
    padding: 1rem 0;
    margin-top: 3rem;
    border-top: 1px solid #f4f4f4;
    font-size: 0.9rem;
}

footer a {
    color: var(--text-color);
    text-decoration: none;
}

/* --- New Styles for Minimal Inner Pages (bio.html, publications.html) --- */

.minimal-page-content {
    /* Centers the entire content block */
    max-width: 800px; /* Adjust width as desired */
    margin: 0 auto;
    padding: 3rem 5%;
}

.nav-link {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.nav-link a {
    color: var(--text-color);
    text-decoration: none;
}

.nav-link a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-title {
    /* Main title styling */
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.bio-text p {
    margin-bottom: 1.5rem;
    text-align: left;
}

.bio-section {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Ensure the list is clean */
.bio-section ul {
    list-style-type: none; /* Remove bullet points */
    padding-left: 0;
}

.bio-section li {
    margin-bottom: 0.5rem;
}

/* Keep the footer simple and consistent */
footer {
    text-align: center;
    padding: 1rem 0;
    margin-top: 3rem;
    border-top: 1px solid #f4f4f4;
    font-size: 0.9rem;
}
