/* style.css */
body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
}
header {
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
h1 {
    margin: 0 0 10px 0;
    font-size: 2.2em;
    color: #111;
}
nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
nav a {
    text-decoration: none;
    color: #0056b3;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    font-size: 0.9em;
    text-transform: uppercase;
}
nav a:hover {
    text-decoration: underline;
}
h2 {
    color: #222;
    margin-top: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}
ul {
    list-style-type: disc;
    padding-left: 20px;
}
li {
    margin-bottom: 12px;
}
.pub-title {
    font-weight: bold;
}

/* About Page Specific Styles */
.about-container {
    display: flex;
    flex-direction: column-reverse; /* Stacks vertically on small screens */
    gap: 40px;
    margin-top: 20px;
}

@media (min-width: 650px) {
    .about-container {
        flex-direction: row; /* Side-by-side on larger screens */
    }
}

.about-text {
    flex: 2; /* Takes up roughly 2/3 of the space */
}

.about-profile {
    flex: 1; /* Takes up roughly 1/3 of the space */
    text-align: center;
}

.profile-pic {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links a {
    display: block;
    text-decoration: none;
    color: #fff;
    background-color: #0056b3;
    padding: 10px 15px;
    border-radius: 5px;
    font-family: 'Arial', sans-serif;
    font-size: 0.95em;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.social-links a:hover {
    background-color: #003d82;
    text-decoration: none;
}
