/* General Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #222222;
    color: #ccc;
    margin: 0;
    padding: 0;
}

h1, h2 {
    color: rgb(24, 129, 24);
}

a {
    color: #ccc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Parallax Banner */
.parallax-banner {
    background-image: url('/assets/man\ in\ fog.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    height: 250px; /* Adjust height based on your needs */
    position: relative;
    width: 100%;
    z-index: -1;
    will-change: transform;
    overflow: hidden;
}

/* Header */
header {
    background-color: rgb(23, 25, 26);
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
}

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

nav ul li {
    display: inline;
    margin-right: 15px;
}

/* Main Content */
main {
    padding: 20px;
}

.post {
    background-color: #333;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
}

.post-title {
    font-size: 1.8em;
    color: rgb(24, 129, 24);
}

.post-meta {
    font-size: 0.9em;
    color: grey;
}

/* Footer */
footer {
    background-color: black;
    color: #ccc;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    header h1 {
        font-size: 2em;
    }
    .post-title {
        font-size: 1.5em;
    }
}
