/*
Theme Name: Michael Donahue Assignment 3B
Theme URI: https://assignment3b.vanny-devito.com
Author: Michael Donahue
Author URI: https://vanny-devito.com
Description: A custom WordPress theme for CSCI 4460 Assignment 3B featuring a left sidebar layout with header and footer sections.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: assignment3b
*/

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

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #f5f5f5;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    color: #004499;
    text-decoration: underline;
}

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

/* Header Styles */
.site-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px 0;
    border-bottom: 4px solid #1abc9c;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
}

.site-title a {
    color: #ffffff;
    text-decoration: none;
}

.site-title a:hover {
    color: #1abc9c;
}

.site-description {
    font-size: 16px;
    color: #bdc3c7;
    font-style: italic;
}

/* Navigation Styles */
.main-navigation {
    background-color: #34495e;
    padding: 10px 0;
}

.main-navigation ul {
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-navigation li {
    display: inline-block;
    margin-right: 20px;
}

.main-navigation a {
    color: #ffffff;
    padding: 5px 10px;
    display: block;
}

.main-navigation a:hover {
    background-color: #1abc9c;
    text-decoration: none;
}

/* Main Layout Container */
.site-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
}

/* Sidebar Styles - LEFT */
.site-sidebar {
    width: 25%;
    padding-right: 30px;
    order: 1;
}

.widget {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.widget-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1abc9c;
    color: #2c3e50;
}

.widget ul {
    list-style: none;
}

.widget li {
    padding: 5px 0;
    border-bottom: 1px solid #eeeeee;
}

.widget li:last-child {
    border-bottom: none;
}

/* Content Area Styles - RIGHT */
.site-content {
    width: 75%;
    order: 2;
}

.post, .page {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.entry-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.entry-title a {
    color: #2c3e50;
}

.entry-title a:hover {
    color: #1abc9c;
}

.entry-meta {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
}

.entry-content {
    color: #333333;
}

.entry-content p {
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    background-color: #1abc9c;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 3px;
    margin-top: 15px;
}

.read-more:hover {
    background-color: #16a085;
    color: #ffffff;
    text-decoration: none;
}

/* Footer Styles */
.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 30px 0;
    margin-top: 30px;
    border-top: 4px solid #1abc9c;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-info {
    font-size: 14px;
    color: #bdc3c7;
}

.footer-info a {
    color: #1abc9c;
}

/* Clear Floats */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}
