/* Dark theme with a clean, simple aesthetic */
body {
    background-color: #121212;
    color: #ccc;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Page containers */
.home-page-body, .about-page-body, .projects-page-body, .blog-page-body, .blog-article-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navigation bar */
nav {
    background-color: #1e1e1e;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #64ffda; /* A nice highlight color */
}

/* Main content area */
main {
    flex-grow: 1;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

h1 {
    color: #64ffda;
    border-bottom: 2px solid #64ffda;
    padding-bottom: 0.5rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Blog list page */
.blog-page-header {
    text-align: center;
    color: #64ffda;
}

.blog-page-ul {
    list-style: none;
    padding: 0;
}

.blog-page-li {
    background-color: #1e1e1e;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.blog-page-li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.blog-page-li a:hover {
    color: #64ffda;
}

/* Individual blog post page */
.blog-article-body {
    padding: 2rem;
}

.blog-article-p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
}

.blog-article-strong {
    color: #fff;
}

/* Return button */
.return-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background-color: #64ffda;
    color: #121212;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.return-btn:hover {
    background-color: #58c0a8;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    margin-top: auto;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    color: #888;
}