:root {
    --accent-color: #00ffff;
    --text-color: #000000;
    --background-color: #ffffff;
    
    /* Content constraint variable */
    --content-width: 800px;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: monospace; 
    font-size: 15px; 
    line-height: 1.4;
    margin: 0;
    padding: 0; 
}

/* --- Full-Width Banner Image Wrapper (Positioning Context) --- */
#image-wrapper {
    max-width: 100%; 
    margin: 0; 
    border: none; 
    margin-bottom: 0;
    position: relative; /* Set as reference point for absolute positioning */
}

/* --- Header Image Styling (Shorter Banner) --- */
#header-image {
    display: block; 
    width: 100%; 
    height: auto;
    max-height: 250px; /* Controls the height of the banner */
    object-fit: cover;  
}

#banner-header {
    position: absolute; /* Keep absolute positioning */
    top: 50%;           /* Keep vertical centering */
    left: 0;            /* *** CHANGE 1: Set position from the left edge *** */
    transform: translateY(-50%); /* *** CHANGE 2: Only translate vertically for centering *** */
    
    /* Text styling */
    text-align: left; /* Align text inside the header to the left */
    color: white; 
    text-shadow: 1px 1px 5px #000000; 
    
    /* Add padding for space from the edge */
    padding: 20px 25px; 

}

#banner-header h1, #banner-header p {
    color: white; /* Ensure text inside the banner is white */
    margin: 0 !important;
    padding: 0;
    font-weight: bold;
}

/* --- Main Container (Full-Width, holds the border) --- */
#container {
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid var(--text-color);
    padding: 0; 
    margin-top: 0; 
}

/* --- Content Wrapper (Centered, fixed max-width, holds the padding) --- */
#content-wrapper {
    max-width: var(--content-width); 
    margin: 0 auto; 
    padding: 20px 25px; 
}

h1, h2, h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: normal; 
    text-transform: none; 
    border-bottom: none; 
    padding-bottom: 0;
    color: var(--text-color); 
}

h1 { font-size: 2em; }
h2 { font-size: 1.5em; }

a {
    color: var(--text-color);
    text-decoration: underline 1px var(--accent-color); 
    font-weight: normal;
}

a:hover {
    color: var(--accent-color); 
    background-color: transparent; 
}

nav {
    margin-bottom: 30px;
    padding: 10px 0;
    border-bottom: 1px solid var(--text-color); 
}

nav a {
    margin-right: 15px; 
}

.post {
    padding: 0; 
    margin-bottom: 35px;
}

.post h3 {
    margin-top: 0;
    margin-bottom: 5px;
}

.post-meta {
    font-size: 1em;
    color: var(--text-color);
    margin-bottom: 10px;
    border-bottom: 1px solid var(--accent-color); 
    padding-bottom: 5px;
}

footer {
    margin-top: 30px;
    text-align: left;
    font-size: 0.9em;
    padding-top: 10px;
    border-top: 1px solid var(--text-color);
}