/*
Theme Name: CleanBlog
Theme URI: https://cleanblog.example.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: A clean, professional blog platform focused on technology, design, and development insights.
Version: 1.0.0
License: GPL v2 or later
Text Domain: cleanblog
*/

/* All CSS from your style.css file remains here */
/* I'll keep your entire CSS as is, just adding WordPress-specific styles at the end */
/* ... [Your complete CSS from style.css goes here] ... */

/* WordPress Specific Styles */
.wp-block-image img {
    height: auto;
    max-width: 100%;
}

.aligncenter {
    display: block;
    margin: 1rem auto;
}

.alignleft {
    float: left;
    margin: 0 1rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1rem 1rem;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    text-align: center;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

/* WordPress Widget Styles */
.widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

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

.widget li {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.widget a {
    color: var(--text-color);
    transition: var(--transition);
}

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

/* WordPress Comment Form */
.comment-respond {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Navigation Current Menu Item */
.current-menu-item > a {
    color: var(--primary-color) !important;
}