/*
Theme Name: Retro Red News Basic+Dark
Description: Classic white-on-red blog theme with optional dark mode toggle.
Version: 1.1
*/

/* Body */
body {
    margin: 0;
    padding: 0;
    font-family: "Times New Roman", Times, Georgia, serif;
    background-color: #f5f5f5;
    color: #111;
    transition: background 0.3s, color 0.3s;
}

/* Dark mode */
body.dark-mode {
    background-color: #111;
    color: #eee;
}

/* Links */
a {
    color: #8b0000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Header */
#header {
    background: #8b0000;
    color: #fff;
    padding: 20px;
    border-bottom: 3px solid #5c0000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header h1 {
    margin: 0;
    font-size: 32px;
}

#header p {
    margin: 5px 0 0;
    font-size: 14px;
}

/* Dark mode header */
body.dark-mode #header {
    background: #222;
    border-bottom-color: #555;
}

/* Container */
.container {
    max-width: 960px;
    margin: 20px auto;
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    position: relative;
    z-index: 1;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
}

/* Dark mode container */
body.dark-mode .container {
    background: #222;
    color: #eee;
    border-color: #444;
}

/* Posts */
.post {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #999;
}

.post h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.post-meta {
    font-size: 12px;
    color: #555;
    margin-bottom: 10px;
}

/* Read More button */
.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    background: #8b0000;
    color: #fff;
    font-size: 13px;
    border: 1px solid #5c0000;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.2s;
}

.read-more:hover {
    background: #5c0000;
}

/* Dark mode buttons */
body.dark-mode .read-more {
    background: #555;
    border-color: #333;
}

body.dark-mode .read-more:hover {
    background: #777;
}

/* Footer */
#footer {
    background: #8b0000;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    border-top: 3px solid #5c0000;
}

/* Dark mode footer */
body.dark-mode #footer {
    background: #222;
    border-top-color: #555;
}

/* Single post content */
.post-content p {
    line-height: 1.6;
    font-size: 16px;
}
/* Responsive typography */
body {
    font-size: 16px;
}

@media (max-width: 1200px) {
    body { font-size: 17px; }
}

@media (max-width: 992px) {
    body { font-size: 18px; }
}

@media (max-width: 768px) {
    body { font-size: 19px; }
}

@media (max-width: 576px) {
    body { font-size: 20px; }
}

/* Extra spacing for mobile containers */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .post {
        padding: 15px;
    }
}
