/*
Theme Name: YourHome
Theme URI: https://example.com/yourhome
Author: WordPress Developer
Author URI: https://example.com
Description: A modern, responsive WordPress theme for home-related businesses.
Version: 1.0.0
Requires at least: 5.3
Tested up to: 6.3
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yourhome
Domain Path: /languages
Tags: custom-menu, custom-logo, editor-style, featured-images, footer-widgets, responsive-layout, translation-ready
*/

/* Base Styles - Most styling will be in separate CSS files */

/* Clean CSS Reset */
* {
  box-sizing: border-box;
}

*:focus {
  outline: 2px solid var(--primary-blue, #5e72e4);
  outline-offset: 2px;
}

:root {
  --primary-color: #3498db;
  --secondary-color: #2c3e50;
  --accent-color: #0d0201;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --text-color: #333;
  --body-font: 'Open Sans', sans-serif;
  --heading-font: 'Montserrat', sans-serif;
}

body {
  font-family: var(--body-font);
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  margin-top: 0;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Additional theme styles will be loaded from separate CSS files */
