/*
Theme Name: Martin Assignment 3B
Theme URI: http://assignment3b.martinpatrickelleatangana.com
Author: Martin Patrick Elle Atangana
Author URI: http://martinpatrickelleatangana.com
Description: Custom WordPress theme for CSCI 4460 Assignment 3B
Version: 1.0
*/

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333333;
    background-color: #f5f5f5;
}

/* Header */
#header {
    background-color: #1a3a5c;
    color: #ffffff;
    padding: 20px;
    width: 100%;
}

#header h1 {
    font-size: 28px;
    color: #ffffff;
}

#header p {
    font-size: 14px;
    color: #ccddee;
}

/* Navigation Menu */
#header nav {
    margin-top: 10px;
}

#header nav ul {
    list-style: none;
    padding: 0;
}

#header nav ul li {
    display: inline-block;
    margin-right: 15px;
}

#header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
}

#header nav ul li a:hover {
    color: #ffcc00;
}

/* Wrapper */
#wrapper {
    width: 90%;
    margin: 20px auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

/* Sidebar */
#sidebar {
    width: 25%;
    background-color: #ffffff;
    padding: 20px;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

#sidebar h2 {
    font-size: 18px;
    color: #1a3a5c;
    margin-bottom: 10px;
    border-bottom: 2px solid #1a3a5c;
    padding-bottom: 5px;
}

#sidebar ul {
    list-style: none;
    padding: 0;
}

#sidebar ul li {
    padding: 5px 0;
    border-bottom: 1px solid #eeeeee;
}

#sidebar ul li a {
    color: #333333;
    text-decoration: none;
}

#sidebar ul li a:hover {
    color: #1a3a5c;
}

/* Content */
#content {
    width: 75%;
    background-color: #ffffff;
    padding: 20px;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

#content h2 {
    font-size: 22px;
    color: #1a3a5c;
    margin-bottom: 10px;
}

#content p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Post */
.post {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
}

.post h2 {
    font-size: 20px;
    color: #1a3a5c;
}

.post h2 a {
    color: #1a3a5c;
    text-decoration: none;
}

.post h2 a:hover {
    color: #2e75b6;
}

.post-meta {
    font-size: 13px;
    color: #999999;
    margin-bottom: 10px;
}

/* Footer */
#footer {
    background-color: #1a3a5c;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    width: 100%;
}

#footer p {
    font-size: 14px;
    color: #ccddee;
}

#footer a {
    color: #ffcc00;
    text-decoration: none;
}