/*
Theme Name: Blankslate (Blueprint Edit)
*/

/* 1. The Terminal Foundation */
body {
    background-color: #ffffff;
    color: #0000ff; /* Architectural blueprint blue */
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    margin: 0;
    padding: 20px;
    line-height: 1.2;
}

/* 2. The Structural Glitch (Wireframing everything) */
* {
    box-sizing: border-box;
    /* This draws a box around EVERY element on the page */
    border: 1px solid rgba(0, 0, 255, 0.3); 
}

/* 3. The Exhaustive Grid */
.data-stream {
    display: grid;
    /* Auto-filling grid that creates happy accidents based on screen size */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
    gap: 0; /* No gaps, elements slam into each other */
}

/* 4. The Content Blocks */
.project-node {
    padding: 10px;
    overflow: hidden; /* Hide overflow to create abrupt cuts */
}

.project-node img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%) contrast(120%); /* Optional: force a raw, xerox look */
    mix-blend-mode: multiply;
}

/* 5. Typography */
h1, h2, h3, a {
    color: #0000ff;
    text-decoration: none;
    margin: 0 0 10px 0;
    font-weight: normal;
    text-transform: lowercase;
}

a:hover {
    background-color: #0000ff;
    color: #ffffff;
	
	/* 6. Kill default theme junk */
header, footer, .search-form, .widget {
    display: none !important;
}
}