/*
Theme Name: Cool Graphics Web Design
Theme URI: http://coolgraphicswebdesign.com
Author: Cool Graphics Web Design
Author URI: http://coolgraphicswebdesign.com
Description: Custom theme matching the original coolgraphicswebdesign.com website design
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: coolgraphics
*/

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

html, body {
    background-color: #000000;
    color: #CCCCCC;
    font-family: "BankGothic Lt BT", Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

/* Scrollbar styling (matches original) */
body {
    scrollbar-face-color: blue;
    scrollbar-shadow-color: white;
}

/* Links */
a {
    color: #FFFF00;
    text-decoration: none;
}

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

/* Main Container */
.site-wrapper {
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.site-header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.site-title {
    color: #CCCCCC;
    font-size: 24px;
    margin-bottom: 5px;
}

.site-title span {
    color: #66CCFF;
}

/* Navigation */
.main-navigation {
    text-align: center;
    padding: 15px 0;
    margin-bottom: 20px;
}

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

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

.main-navigation a {
    color: #FFFFFF;
    font-size: 14px;
    text-transform: uppercase;
    padding: 5px 10px;
}

.main-navigation a:hover {
    color: #66CCFF;
}

/* Content Area */
.content-area {
    padding: 20px 0;
}

.site-main {
    width: 100%;
}

/* Blog Posts List */
.blog-posts {
    width: 60%;
    margin: 0 auto;
}

/* Post Entry */
.post {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.post:last-child {
    border-bottom: none;
}

.entry-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.entry-title a {
    color: #66CCFF;
}

.entry-title a:hover {
    color: #33FFFF;
}

.entry-meta {
    color: #FF3333;
    font-size: 12px;
    margin-bottom: 15px;
}

.entry-content {
    color: #CCCCCC;
    font-size: 14px;
    line-height: 1.6;
}

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

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #00FF00;
    font-size: 12px;
}

.read-more:hover {
    color: #66FF66;
}

/* Single Post */
.single-post .entry-title {
    font-size: 24px;
    color: #66CCFF;
    margin-bottom: 15px;
}

.single-post .entry-meta {
    margin-bottom: 20px;
}

.single-post .entry-content {
    font-size: 15px;
}

/* Post Thumbnail */
.post-thumbnail {
    margin-bottom: 15px;
    text-align: center;
}

.post-thumbnail img {
    max-width: 100%;
    height: auto;
    border: 1px solid #333;
}

/* Pagination */
.pagination {
    text-align: center;
    padding: 30px 0;
    margin-top: 20px;
}

.pagination a {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 5px;
    background-color: #333;
    color: #FFFF00;
    border: 1px solid #666;
}

.pagination a:hover {
    background-color: #444;
    color: #66CCFF;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 30px;
    border-top: 1px solid #333;
}

.site-footer p {
    color: #CCCCCC;
    font-size: 12px;
}

.site-footer a {
    color: #66CCFF;
}

/* Table Layout (matching original structure) */
.content-table {
    width: 60%;
    margin: 0 auto;
    border-collapse: collapse;
}

.content-table td {
    padding: 10px;
    vertical-align: top;
}

/* Blockquote styling (matching original) */
blockquote {
    padding: 0 40px;
}

/* Text Colors (matching original palette) */
.text-white { color: #FFFFFF; }
.text-gray { color: #CCCCCC; }
.text-cyan { color: #66CCFF; }
.text-cyan-light { color: #33FFFF; }
.text-yellow { color: #FFFF00; }
.text-yellow-light { color: #FFFF66; }
.text-red { color: #FF0000; }
.text-red-light { color: #FF3333; }
.text-magenta { color: #FF00FF; }
.text-magenta-light { color: #FF33FF; }
.text-green { color: #00FF00; }
.text-green-light { color: #66FF66; }

/* Image styling */
img {
    max-width: 100%;
    height: auto;
}

/* WordPress Core Alignment */
.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
}

.alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
}

.aligncenter {
    display: block;
    margin: 0 auto 20px;
}

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