<!-- style.css -->
<?php exit; ?>

/*
Theme Name: PBUMP
Description: Minimalist black/white chronological blog theme
Version: 1.0
*/

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
body {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000;
    margin: 0;
}

/* Layout */
.site {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    padding: 40px 0 60px 0;
    border-bottom: none;
    text-align: center;
}

.site-title,
.site-title:link,
.site-title:visited,
.site-title:hover,
.site-title:active {
    background-color: transparent !important;
    color: #000 !important;
    padding: 0 !important;
    text-decoration: none !important;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.site-title {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    text-decoration: none;
    display: inline-block;
}

.site-title:hover {
    color: #000;
    text-decoration: none;
}

/* Hide site description */
.site-description {
    display: none;
}

/* Main Content with Sidebar Layout */
.content-sidebar-wrap {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.site-content {
    padding: 0;
}

.content-area {
    flex: 2;
    min-width: 0;
}

/* Sidebar Styles */
.sidebar {
    flex: 0 0 300px;
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
}

.widget {
    background-color: #f5f5f5;
    border: 2px solid #666;
    padding: 20px;
    margin-bottom: 40px;
}

.widget-title {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000;
    margin: 0 0 15px 0;
}

/* Email Signup Form Styles */
.email-signup {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    background-color: #fff;
    padding: 20px;
    margin: 20px auto;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.email-signup .signup-title {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000;
    margin: 0 0 15px 0;
}

.email-signup .form-group {
    margin-bottom: 15px;
}

.email-signup label {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 5px;
}

.email-signup .email-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #000;
    background-color: #f5f5f5;
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    color: #000;
    box-sizing: border-box;
}

.email-signup .email-input:focus {
    outline: none;
    background-color: #fff;
}

.email-signup .submit-btn {
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 12px 20px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
}

.email-signup .submit-btn:hover {
    background-color: #333;
}

.email-signup .submit-btn:disabled {
    background-color: #666;
    cursor: not-allowed;
}

.email-signup .loading {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    color: #666;
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: none;
}

.email-signup .message {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    color: #000;
    background-color: transparent;
    padding: 10px 0;
    margin-top: 15px;
    font-size: 12px;
    line-height: 1.6;
    display: none;
}

.email-signup .success-container {
    display: none;
}

.email-signup .success-message {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    color: #000;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

/* Post Styling */
.post {
    margin-bottom: 80px;
    padding-bottom: 40px;
}

.post:last-child {
    border-bottom: none;
}

/* Post Headers */
.entry-header {
    margin-bottom: 30px;
}

.entry-title {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.entry-title a {
    color: #000;
    text-decoration: none;
}

.entry-title a:hover {
    color: #000;
    text-decoration: none;
}

.entry-meta {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

/* Post Content */
.entry-content {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.8;
    color: #000;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    margin: 2rem 0 1rem 0;
}

.entry-content h2 {
    font-size: 20px;
}

.entry-content h3 {
    font-size: 18px;
}

/* Links - Dark gray bars with white text */
a {
    background-color: #333;
    color: #fff;
    text-decoration: none;
    padding: 2px 4px;
    display: inline;
    transition: background-color 0.2s ease;
}

a:hover {
    background-color: #000;
    color: #fff;
}

/* Visited links - Darker gray */
a:visited {
    background-color: #555;
    color: #fff;
}

a:visited:hover {
    background-color: #000;
    color: #fff;
}

/* Bold text - Yellow highlighter effect - High specificity */
body strong,
body b,
.site strong,
.site b,
.entry-content strong,
.entry-content b,
.post strong,
.post b,
article strong,
article b {
    background-color: #deff00 !important;
    color: #000 !important;
    padding: 1px 2px !important;
    font-weight: bold !important;
    display: inline !important;
}

/* Exception for site title, post titles, and image links - no background */
.site-title,
.site-title:visited,
.entry-title a,
.entry-title a:visited,
a img,
a:has(img) {
    background-color: transparent;
    color: #000;
    padding: 0;
}

.site-title:hover,
.entry-title a:hover,
a:hover img,
a:has(img):hover {
    background-color: transparent;
    color: #000;
}

/* Images */
.entry-content img,
.wp-post-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem 0 0 0;
    /* filter: grayscale(100%); */
}

/* Image Captions */
.wp-element-caption {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    font-size: 14px;
    font-style: italic;
    color: #666;
    margin-top: 0rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/* Lists */
.entry-content ul,
.entry-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

/* Blockquotes */
.entry-content blockquote {
    margin: 2rem 0;
    padding-left: 2rem;
    border-left: 3px solid #000;
    font-style: italic;
}

/* Code */
.entry-content code,
.entry-content pre {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    background-color: #f5f5f5;
    padding: 2px 4px;
    color: #000;
}

.entry-content pre {
    padding: 1rem;
    margin: 1.5rem 0;
    overflow-x: auto;
}

.entry-content pre code {
    background-color: transparent;
    padding: 0;
}

/* Tables */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.entry-content th,
.entry-content td {
    border: 1px solid #000;
    padding: 8px 12px;
    text-align: left;
}

.entry-content th {
    background-color: #000;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

/* Pagination */
.pagination {
    text-align: center;
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid #000;
}

.page-numbers {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 12px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.page-numbers:hover {
    background-color: #333;
    color: #fff;
}

.page-numbers.current {
    background-color: #666;
    color: #fff;
}

.page-numbers:visited {
    background-color: #666;
    color: #fff;
}

/* Footer */
.site-footer {
    margin-top: 80px;
    padding: 40px 0;
    border-top: 1px solid #000;
    text-align: center;
}

.site-footer p {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-footer a {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
}

/* Comments */
.comments-area {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #000;
}

.comments-title {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
}

.comment-meta {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.comment-content {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    line-height: 1.6;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="url"],
textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #000;
    background-color: #fff;
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    font-size: 16px;
    margin-bottom: 15px;
}

input[type="submit"],
button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

input[type="submit"]:hover,
button:hover {
    background-color: #333;
}

/* Archive/Category Pages */
.archive-header {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid #000;
}

.archive-title {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.archive-description {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    font-size: 16px;
    color: #666;
}

/* Single Post Navigation */
.post-navigation {
    margin: 60px 0;
    padding: 30px 0;
}

.nav-links {
    display: flex;
    justify-content: space-between;
}

.nav-previous,
.nav-next {
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site {
        padding: 0 15px;
    }
    
    .content-sidebar-wrap {
        flex-direction: column;
        gap: 20px;
    }
    
    .sidebar {
        flex: none;
        width: 100%;
    }
    
    .site-header {
        padding: 30px 0 40px 0;
    }
    
    .site-title {
        font-size: 20px;
    }
    
    .entry-title {
        font-size: 22px;
    }
    
    .entry-content {
        font-size: 15px;
    }
    
    .post {
        margin-bottom: 60px;
        padding-bottom: 30px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 18px;
    }
    
    .entry-title {
        font-size: 20px;
    }
    
    .entry-content {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .post {
        margin-bottom: 50px;
        padding-bottom: 25px;
    }
}

/* Hide search elements */
.search-form {
    display: none !important;
}

/* Remove WordPress admin bar styling conflicts */
.admin-bar .site-header {
    padding-top: 40px;
}