/*
Theme Name: Daily Journal
Description: A clean, responsive WordPress theme designed specifically for daily journaling and personal blogging. Features elegant serif typography, a right sidebar, and journal-specific elements like date badges and mood indicators.
Version: 1.0
Author: Your Name
Author URI: https://yourwebsite.com
Text Domain: daily-journal
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

This theme is designed for mindful journaling and personal reflection.
*/

 /* Import Google Fonts - Georgia for headings, Source Serif Pro for body text */
        @import url('https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@300;400;600&family=Crimson+Text:wght@400;600&display=swap');
        
	* {
	    margin: 0;
	    padding: 0;
	    box-sizing: border-box;
	}

	body {
	    font-family: 'Source Serif Pro', Georgia, serif;
	    font-size: 18px;
	    line-height: 1.7;
	    color: #2c2c2c;
	    background-color: #fefefe;
	    font-weight: 300;
	}

	/* Header Styles */
	.site-header {
	    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	    padding: 2rem 0;
	    border-bottom: 1px solid #dee2e6;
	    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	}

	.header-container {
	    max-width: 1200px;
	    margin: 0 auto;
	    padding: 0 2rem;
	}

    .site-title {
        font-family: 'Crimson Text', Georgia, serif;
        font-size: 2.5rem;
        font-weight: 600;
        color: #495057;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .site-description {
        color: #6c757d;
        font-size: 1.1rem;
        text-align: center;
        font-style: italic;
    }
    
    /* Navigation */
    .main-navigation {
        margin-top: 1.5rem;
        text-align: center;
    }
    
    .nav-menu {
        list-style: none;
        display: inline-flex;
        gap: 2rem;
    }
    
    .nav-menu a {
        text-decoration: none;
        color: #495057;
        font-weight: 400;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background-color: #fff;
        color: #007acc;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    /* Main Content Area */
    .site-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 2rem;
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 3rem;
    }
    
    /* Article Styles */
    .entry {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        margin-bottom: 2rem;
        overflow: hidden;
        border: 1px solid #f8f9fa;
    }
    
    .entry-header {
        padding: 2rem 2rem 1rem;
        background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    }
    
    .entry-title {
        font-family: 'Crimson Text', Georgia, serif;
        font-size: 1.8rem;
        font-weight: 600;
        color: #2c2c2c;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .entry-title a {
        color: inherit;
        text-decoration: none;
    }
    
    .entry-title a:hover {
        color: #007acc;
    }
    
    .entry-meta {
        color: #6c757d;
        font-size: 0.95rem;
        font-weight: 400;
    }
    
    .entry-meta a {
        color: #007acc;
        text-decoration: none;
    }
    
    .entry-content {
        padding: 1rem 2rem 2rem;
    }
    
    .entry-content p {
        margin-bottom: 1.5rem;
    }
    
    .entry-content h2, .entry-content h3 {
        font-family: 'Crimson Text', Georgia, serif;
        color: #2c2c2c;
        margin: 2rem 0 1rem;
    }
    
    .entry-content blockquote {
        border-left: 4px solid #007acc;
        padding-left: 2rem;
        margin: 2rem 0;
        font-style: italic;
        color: #495057;
    }
    
    .read-more {
        display: inline-block;
        background: #007acc;
        color: white;
        padding: 0.7rem 1.5rem;
        text-decoration: none;
        border-radius: 25px;
        font-weight: 400;
        margin-top: 1rem;
        transition: all 0.3s ease;
    }
    
    .read-more:hover {
        background: #0056b3;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 122, 204, 0.3);
    }
    
    /* Sidebar Styles */
    .sidebar {
        background: #f8f9fa;
        padding: 2rem;
        border-radius: 12px;
        height: fit-content;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }
    
    .widget {
        margin-bottom: 2.5rem;
    }
    
    .widget:last-child {
        margin-bottom: 0;
    }
    
    .widget-title {
        font-family: 'Crimson Text', Georgia, serif;
        font-size: 1.3rem;
        font-weight: 600;
        color: #2c2c2c;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #dee2e6;
    }
    
    .widget ul {
        list-style: none;
    }
    
    .widget ul li {
        margin-bottom: 0.8rem;
        padding-left: 1rem;
        position: relative;
    }
    
    .widget ul li::before {
        content: "•";
        color: #007acc;
        position: absolute;
        left: 0;
    }
    
    .widget ul li a {
        color: #495057;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .widget ul li a:hover {
        color: #007acc;
    }
    
    .widget-search input {
        width: 100%;
        padding: 0.8rem;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        font-family: inherit;
        font-size: 0.95rem;
    }
    
    .widget-search input:focus {
        outline: none;
        border-color: #007acc;
        box-shadow: 0 0 0 3px rgba(0, 122, 204, 0.1);
    }
    
    /* Footer */
    .site-footer {
        background: #2c2c2c;
        color: #adb5bd;
        text-align: center;
        padding: 2rem;
        margin-top: 3rem;
    }
    
    .site-footer p {
        margin: 0;
    }
    
    .site-footer a {
        color: #007acc;
        text-decoration: none;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .site-content {
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 2rem 1rem;
        }
        
        .header-container {
            padding: 0 1rem;
        }
        
        .site-title {
            font-size: 2rem;
        }
        
        .nav-menu {
            flex-direction: column;
            gap: 1rem;
        }
        
        .entry-header,
        .entry-content {
            padding: 1.5rem;
        }
        
        .sidebar {
            order: -1;
        }
    }
    
    /* Journal Entry Specific Styles */
    .journal-date {
        background: #007acc;
        color: white;
        display: inline-block;
        padding: 0.3rem 1rem;
        border-radius: 15px;
        font-size: 0.85rem;
        font-weight: 400;
        margin-bottom: 1rem;
    }
    
    .mood-indicator {
        float: right;
        font-size: 1.5rem;
        margin-left: 1rem;
    }
    
    /* WordPress specific classes */
    .alignleft { float: left; margin-right: 1rem; }
    .alignright { float: right; margin-left: 1rem; }
    .aligncenter { display: block; margin: 0 auto; }
    .wp-caption { max-width: 100%; }
    .wp-caption img { width: 100%; height: auto; }
    .wp-caption-text { font-size: 0.9rem; color: #6c757d; margin-top: 0.5rem; }
]]