/*
Theme Name: 1eyeguy
Theme URI: https://example.com/1eyeguy
Author: Jeff
Author URI: https://example.com
Description: A bold, symmetrical WordPress theme with dual sidebars, dynamic post grid, and strong personal branding.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: oneeyeguy
*/

/* Reset & Base */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #333;
}

a {
  color: #c00;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 20px 0;
}

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

.header-image {
  margin-bottom: 20px;
}

.header-image img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}


.site-title {
  font-size: 2em;
  margin: 0;
}

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

.site-description {
  font-size: 1em;
  margin-top: 5px;
  color: #ccc;
}



.primary-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

/* Layout */
.layout {
  display: flex;
  gap: 20px;
  width: 100%;
  padding: 20px;
}



.site-main {
  flex: 1;
}

/* Sidebars */
.sidebar {
  width: 250px;
}

.sidebar-left {
  order: -1;
}

.widget {
  margin-bottom: 30px;
}

.widget-title {
  font-size: 1.2em;
  margin-bottom: 10px;
}

/* Latest Post */
.latest-post {
  margin-bottom: 40px;
}
.latest-post-wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: flex-start;
}
.latest-post-wrapper .post-thumbnail {
  flex-shrink: 0;
  width: 300px;
}
.latest-post-wrapper .entry-content {
  flex-grow: 1;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.grid-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}


.grid-item-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.grid-item {
  border: 1px solid #ccc;
  padding: 15px;
  background: #f9f9f9;
  transition: box-shadow 0.3s ease;
}

.grid-item:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.grid-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.grid-item h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

/* Single Post */
.float-image-left {
  float: left;
  margin: 0 20px 20px 0;
  max-width: 40%;
}

.float-image-right {
  float: right;
  margin: 0 0 20px 20px;
  max-width: 40%;
}

.image-full {
  display: block;
  margin: 20px auto;
  max-width: 100%;
}


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

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

.post-content {
  margin-bottom: 30px;
}

.post-tags {
  margin-top: 20px;
  font-style: italic;
}

/* Page */
.page-title {
  font-size: 2em;
  margin-bottom: 20px;
}

.page-content {
  margin-bottom: 30px;
}

/* Archive & Search */
.archive-title,
.search-title {
  font-size: 2em;
  margin-bottom: 20px;
}

.archive-description {
  margin-bottom: 30px;
}

.post-excerpt {
  margin-bottom: 20px;
}

/* Pagination */
.pagination {
  margin-top: 40px;
  text-align: center;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 12px;
  background: #eee;
  color: #333;
}

.pagination .current {
  background: #c00;
  color: #fff;
}

/* 404 */
.error-title {
  font-size: 2em;
  margin-bottom: 10px;
}

.error-message {
  margin-bottom: 20px;
}

/* Footer */
.site-footer {
  background: #f0f0f0;
  text-align: center;
  padding: 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}


