/* File: /Users/laurence/RustroverProjects/zolarust/laurenceavent_site/static/style.css */

:root {
    --background-color: #2C3E50; /* Charcoal Grey */
    --text-color: #F0F0F0; /* Off-white */
    --highlight-color: #48D1CC; /* Medium Turquoise */
    --container-bg: #34495E; /* Darker Charcoal Grey */
    --header-text-color: #B0E0E6; /* Powder Blue (soft cyan) for headers */
}

body {
    font-family: 'Fira Code', monospace;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--container-bg);
    box-shadow: 0 0 10px rgba(240, 240, 240, 0.1);
}

header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--highlight-color);
    color: var(--header-text-color);
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: var(--header-text-color);
    text-decoration: none;
}

nav ul li a:hover {
    color: var(--highlight-color);
    text-decoration: underline;
}

main {
    padding: 20px 0;
}

h1, h2, h3 {
    color: var(--highlight-color);
}

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

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--highlight-color);
    font-size: 0.8em;
    color: var(--header-text-color);
}

/* CV specific styles */
.cv-content {
    text-align: left;
}

.cv-content h1 {
    font-size: 2em;
    text-align: center;
}

.cv-content h2 {
    font-size: 1.5em;
    text-align: center;
}

.cv-content ul {
    list-style-type: none;
    padding-left: 0;
}

.cv-content ul li {
    margin-bottom: 5px;
}

/* Add some subtle "tech" flair */
::selection {
    background-color: var(--highlight-color);
    color: var(--background-color);
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
}

pre, code {
    background-color: #243342;
    border-radius: 3px;
    padding: 2px 5px;
}

pre {
    padding: 10px;
    overflow-x: auto;
}

.MathJax {
    font-size: 1.1em !important;
}

.cv-content ul, .cv-content ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.cv-content ul {
    list-style-type: disc;
}

.cv-content ol {
    list-style-type: decimal;
}

.cv-content li {
    margin-bottom: 5px;
}

.cv-content h1, .cv-content h2, .cv-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.home-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.home-content h1 {
    color: var(--highlight-color);
    text-align: center;
    margin-bottom: 30px;
}

.home-content h2 {
    color: var(--highlight-color);
    margin-top: 30px;
}

.home-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.home-content a {
    color: var(--highlight-color);
    text-decoration: none;
}

.home-content a:hover {
    text-decoration: underline;
}