/*!
Theme Name: Extince Parts Lab 2026 Theme
Author: Dennis Ball
Author URI: https://dennisball.us
Version: 0.1.1
Text Domain: epl-2026
*/

/* Theme Name: Extinct Parts Lab
Description: Mobile-first, dark-mode theme for 3D printing hobbyists.
*/

/* Color Variables */
:root {
    --bg: #121212;
    --text-main: #d67d45; /* Laid-back Orange */
    --accent-orange: #ff6600; /* Bold Orange */
    --accent-yellow: #ffd700; /* Yellow */
    --border: #2a2a2a;
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* The 800px Container */
.container {
    max-width: 85%;
    margin: 0 auto;
    padding: 20px;
}

main {
    max-width: 95%;
    margin: 0 auto;
    padding: 20px;
}

header {
    border-bottom: 2px solid var(--accent-orange);
    margin-bottom: .75rem;
}

.posts-navigation {
  	display: flex;
  	justify-content: space-between;
    align-items: center;
	  max-width: 40%;
    margin: 0 auto;
    margin-bottom: 1.15rem;
    padding: .25rem 1.15rem;
    border: 1px solid var(--primary-highlight-color);
}

.post-navigation h2 {
	  font-size: .9rem;  
}

.logo {
    display: flex;
    flex-direction: column; /* Stacks children vertically */
    justify-content: flex-end; /* Aligns children to the bottom of the container */
    padding-bottom: .25rem;
}

.logo img{
    max-width: 20vh;
}

.logo span {
    color: var(--accent-orange);
}

.tagline {
    font-style: italic;
    opacity: 0.8;
}

h1, h2 {
    color: var(--accent-yellow);
    text-transform: uppercase;
}

.status-badge {
    display: inline-block;
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    padding: 2px 8px;
    font-size: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.log-entry {
    border-left: 3px solid var(--border);
    padding-left: 20px;
    margin-bottom: 3rem;
    transition: border-color 0.3s ease;
}

.log-entry:hover {
    border-color: var(--accent-orange);
}

.date {
    font-size: 0.8rem;
    color: var(--accent-orange);
    font-weight: bold;
}

.read-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: bold;
    /* display: inline-block; */
    text-align: right;
    margin-top: 10px;
}

.nav-links a{
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: bold;
	
}

.read-link:hover {
    text-decoration: underline;
    color: var(--accent-yellow);
}

.nav-links a:hover {
    text-decoration: underline;
    color: var(--accent-yellow);
}

.post-excerpt {
    text-align: justify;
}

.orange-hr {
    width: 50%;
    color: var(--accent-orange);
    margin: 0 auto;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

footer {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 4rem;
    padding-bottom: 2rem;
    opacity: 0.6;
}

@media (min-width: 1025px) {
  /* CSS styles to apply when the viewport is 1025px or wider */
    .container {
        max-width: 55%;
    }

    main {
        max-width: 60%;
    }
}