/*
Theme Name: Horoscope Theme
Theme URI: https://example.com/horoscope-theme
Author: Your Name
Author URI: https://example.com
Description: A modern WordPress theme for horoscope sites with zodiac sign filtering.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: horoscope-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, responsive-layout, blog
*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #333;
}

.site-header {
    background-color: #f2dfc3;
    padding: 20px;
    display: flex;
    align-items: center;
}

.site-logo img {
    max-height: 60px;
    height: auto;
    width: auto;
}

.site-navigation {
    margin-left: auto;
}

.site-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.site-navigation li {
    margin-left: 20px;
}

.site-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.site-navigation a:hover {
    color: #666;
}

.content-area {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

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

.post-date {
    color: #999;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.archive-title {
    font-size: 1.5em;
    margin-bottom: 20px;
}

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

.archive-list li {
    margin-bottom: 10px;
}

.archive-list a {
    text-decoration: none;
    color: #0073aa;
}

.archive-list a:hover {
    text-decoration: underline;
}