/*
Theme Name: Modular WordPress Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A modular WordPress theme using component-based architecture
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: modular-theme

This theme uses a component-based architecture for easy customization.
*/

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

body {
    font-family: 'Roboto', 'Roboto Condensed', 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* WordPress Core Styles */
.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    text-align: center;
}

.sticky {
    display: block;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* Theme Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}


