/*
Theme Name: SamTheme
Theme URI: https://example.com/
Author: Sam
Author URI: https://example.com/
Description: A custom theme developed by Sam and AbarHush.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: samtheme
*/
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 960px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }

img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.site-header {
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 2rem;
}

.site-header h1 {
    font-size: 2rem;
    margin: 0;
}

.site-header h1 a {
    color: #333;
    text-decoration: none;
}

article {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #eee;
}

article:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.post-thumbnail {
    margin-bottom: 1.5rem;
}

.entry-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.entry-meta span {
    margin-right: 1rem;
}

.entry-content p {
    margin-bottom: 1rem;
}

.site-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}
.main-navigation {
    display: flex;
    justify-content: center;
}

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

.main-navigation li {
    margin: 0 10px;
}

.main-navigation a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    background-color: #0073aa;
    color: #ffffff;
}

.header-search {
    margin-top: 1rem;
}

.search-form {
    display: flex;
}

.search-field {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
}

.search-submit {
    padding: 8px 15px;
    border: 1px solid #0073aa;
    background-color: #0073aa;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}
.site-content {
    display: flex;
    gap: 2rem;
}

#primary {
    flex: 1;
}

#secondary {
    width: 300px;
}

.widget {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.widget-title {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    margin-bottom: 0.5rem;
}