/*
Theme Name: Geeky Theme
Theme URI: https://example.com/geeky-theme
Author: Your Name
Author URI: https://example.com
Description: A clean, lightweight WordPress theme for Coloring Pages and WooCommerce Products
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: geeky-theme
Tags: blog, e-commerce, custom-menu, custom-logo, flexible-header, featured-images, threaded-comments, translation-ready
*/

:root {
    --color-primary: #2c3e50;
    --color-secondary: #3498db;
    --color-post-bg: #e8f5e9;
    --color-post-accent: #4caf50;
    --color-product-bg: #e3f2fd;
    --color-product-accent: #2196f3;
    --color-text: #333;
    --color-text-light: #666;
    --color-border: #ddd;
    --color-white: #fff;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
}

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

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.site-header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: var(--spacing-sm) 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.site-logo img {
    max-height: 60px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-text);
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-text);
    position: absolute;
    left: 0;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: var(--spacing-md);
}

.header-cta-button {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-card {
    padding: var(--spacing-sm);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}

.category-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category-name {
    font-weight: 500;
    display: block;
    color: var(--color-text);
}

.colorpage-grid-a4 {
    display: grid;
    gap: var(--spacing-md);
}

.colorpage-grid-a4 .colorpage-card {
    max-width: 250px;
}

.site-footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-lg) 0;
    margin-top: var(--spacing-xl);
}

.site-footer a {
    color: var(--color-white);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
