/*
Theme Name: WorkTechGuide Theme
Theme URI: https://worktechguide.com
Author: Antigravity
Author URI: https://worktechguide.com
Description: A unique, high-performance minimalist theme for Gaming Guides and Digital Productivity.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: worktechguide
*/

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #000;
}

h1, h2, h3, h4, h5, h6 {
    color: #111;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.site-logo a {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #000;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #555;
}

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

/* Hero Section */
.hero {
    padding: 8rem 0;
    background: #f9f9f9;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    letter-spacing: -1.5px;
}

.hero p {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #000;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}

/* Blog Feed */
.blog-feed {
    padding: 5rem 0;
}

.post-card {
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.post-thumbnail img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.post-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.post-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
}

/* Footer */
.site-footer {
    padding: 4rem 0;
    background: #fff;
    border-top: 1px solid #eee;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .post-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .main-navigation {
        display: none;
    }
}
