/*
Theme Name: Fitmiecom
Description: A modern WordPress theme for fitness and e-commerce websites. Built with performance and user experience in mind.
Author: Your Name
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fitmiecom
Domain Path: /languages
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
Tags: fitness, e-commerce, responsive, modern, woocommerce, custom-header, custom-logo, featured-images, threaded-comments, translation-ready
*/

/* Reset and Base Styles */
* {
    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: #333;
    background-color: #fff;
}

/* Header Styles */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Navigation Styles */
.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

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

/* Content Styles */
.site-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Footer Styles */
.site-footer {
    text-align: center;
    padding: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-navigation {
        flex-direction: column;
        padding: 1rem;
    }
    
    .site-content {
        padding: 1rem;
    }
}
