/*
Theme Name: Notepad Theme
Theme URI: https://marisabel.nl/notepad-theme
Author: Marisabel Munoz
Author URI: https://im.marisabel.nl
Description: A minimal WordPress theme that looks like a notepad entry.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: notepad-theme
*/

:root {
    --blue-1: #9bb8ed;
    --blue-2: #a39fe1;
    
    --pink-1: #deb3e0;
    --pink-2: #fec6df;
    --pink-3: #fff7f7;
    
    --cream: #feecd6;
    
    --primary: var(--blue-2);
    --secondary: var(--pink-1);
    --highlight: var(--pink-3);
}

@font-face {
    font-family: 'bodyFont';
    src: url('EnvyCodeRNerdFontMono-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'bodyFont';
    src: url('InconsolataNerdFontMono-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


body {
    background-color: #f5f5f5;
    font-family: 'bodyFont', 'Courier New', monospace;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    color: #333;
}

#notepad {
    background-color: #fff;
    border: 0px solid #ddd;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    position: relative;
}

/* #notepad:before {
    content: "";
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #f5d2d2;
} */

header, footer {
    margin-bottom: 30px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

a {
    color: var(--primary);
    text-decoration: none;
    font-weight:600;
}

a:hover {
    text-decoration: underline;
}

article {
    margin-bottom: 30px;
}

.post-title {
    margin-bottom: 10px;
}

.post-meta {
    color: var(--secondary);
    font-size: 0.9em;
    margin-bottom: 20px;
}

nav {
    margin: 20px 0;
}

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

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

/* Add these to your existing style.css */
.page-title {
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.post-thumbnail {
    margin-bottom: 20px;
}

.post-thumbnail img {
    max-width: 100%;
    height: auto;
}

.post-footer {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px dotted #eee;
    font-size: 0.9em;
}

.read-more {
    font-weight: bold;
}

.comment-count {
    margin-left: 15px;
    color: #888;
}

.post-navigation {
    margin: 40px 0;
    text-align: center;
}

.post-navigation a {
    padding: 5px 10px;
    margin: 0 5px;
    background: #f0f0f0;
}

.post-navigation a:hover {
    background: #e0e0e0;
    text-decoration: none;
}

.post-navigation .current {
    font-weight: bold;
    background: #ddd;
}

.no-results {
    text-align: center;
    padding: 40px 0;
}
/* Comments Section */
.comments-area {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.comments-title {
    font-size: 1.5em;
    margin-bottom: 30px;
}

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

.comment {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-left: 3px solid #ddd;
}

.comment-meta {
    margin-bottom: 15px;
    font-size: 0.9em;
}

.comment-author.vcard {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.comment-author .avatar {
    margin-right: 15px;
    border-radius: 50%;
}

.comment-metadata {
    color: #888;
}

.comment-content {
    line-height: 1.6;
}

.comment-awaiting-moderation {
    color: #ff6b6b;
    font-style: italic;
    margin: 10px 0;
}

.reply {
    margin-top: 15px;
}

.reply a {
    font-size: 0.9em;
    padding: 3px 10px;
    background: #f0f0f0;
}

.reply a:hover {
    background: #e0e0e0;
    text-decoration: none;
}

.comment-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* Comment Form */
.comment-respond {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.comment-form label {
    display: block;
    margin-bottom: 5px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    font-family: 'Courier New', monospace;
}

.comment-form textarea {
    min-height: 150px;
}

.comment-form .submit {
    background: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.comment-form .submit:hover {
    background: #555;
}

.comment-notes {
    color: #888;
    font-size: 0.9em;
}

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

.entry-title {
    font-size: 2em;
    margin-bottom: 10px;
}

.entry-meta {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.entry-meta span {
    margin-right: 15px;
}

.entry-meta a {
    color: #666;
}

.entry-meta a:hover {
    color: #333;
    text-decoration: underline;
}

.entry-thumbnail {
    margin-bottom: 30px;
}

.entry-thumbnail img {
    max-width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.entry-content img {
    max-width: 100%;
    height: auto;
}

blockquote {
    margin: 20px 0;
    padding: 10px 20px;
border-radius:1rem;    
font-style: italic;
    background: var(--highlight);
}

.entry-content pre {
    background: #f5f5f5;
    padding: 15px;
    overflow: auto;
    border: 1px solid #ddd;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 20px;
    padding-left: 40px;
}

.entry-content li {
    margin-bottom: 5px;
}

.page-links {
    clear: both;
    margin: 20px 0;
}

.edit-link {
    font-size: 0.9em;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.post-navigation a {
    color: #333;
    font-weight: bold;
}

.post-navigation a:hover {
    color: #0066cc;
    text-decoration: none;
}

.nav-previous, .nav-next {
    max-width: 48%;
}

/* Page-specific styles */
.page .entry-header {
    margin-bottom: 30px;
}

.page .entry-title {
    font-size: 2em;
    margin-bottom: 10px;
}

.page .entry-meta {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.page .entry-thumbnail {
    margin-bottom: 30px;
}

.page .entry-thumbnail img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page .entry-content {
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.page .entry-content ul,
.page .entry-content ol {
    margin-bottom: 20px;
    padding-left: 40px;
}

.page .entry-content li {
    margin-bottom: 5px;
}

.page .edit-link {
    font-size: 0.9em;
    display: block;
    margin-top: 30px;
}

/* Front Page specific styles */
.home .entry-header,
.home .entry-meta {
    text-align: center;
}

.home .entry-title {
    font-size: 2.5em;
    margin-bottom: 20px;
}