/*
Theme Name: Shockwave WP
Theme URI: https://shockwavepress.swse3.com
Author: Your Name
Author URI: https://www.shockwavetechs.com
Description: A Custom template for shockwave education clients
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: developer-theme
*/

/* Reset and base styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Layout */
.site-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header */
.site-header {
    background: #1a1a2e;
    color: #fff;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-title a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
}

.site-description {
    font-size: 0.875rem;
    opacity: 0.8;
}

.primary-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.primary-menu a {
    color: #fff;
    text-decoration: none;
}

/* Posts */
article {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.entry-title a {
    color: #1a1a2e;
    text-decoration: none;
}

.entry-meta {
    color: #666;
    font-size: 0.875rem;
    margin: 0.5rem 0 1rem;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

/* Footer */
.site-footer {
    background: #f5f5f5;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    font-size: 0.875rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        text-align: center;
    }

    .primary-menu {
        margin-top: 1rem;
    }
}