/*
Theme Name: The Hectic Homemaker Local Builder
Theme URI: https://thehectichomemaker.com/
Author: thehectichomemaker.com
Description: Custom programmatic SEO theme for Bathroom and Kitchen Remodeling. Includes built-in custom admin phased rollout manager.
Version: 1.0.0
Text Domain: hectic-homemaker
*/

:root {
    --primary-color: #2F3C7E;
    --secondary-color: #FBEAEB;
    --accent-color: #F8B042;
    --text-color: #333333;
    --light-bg: #F5F7FA;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    color: var(--text-color);
    background: var(--light-bg);
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-color); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}
.site-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0; padding: 0;
}

/* Button */
.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}
.btn-primary:hover {
    background: #202b5e;
    text-decoration: none;
}

/* Footer */
.site-footer {
    background: #2F3C7E;
    color: #fff;
    padding: 40px 0;
    margin-top: 60px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .header-flex { flex-direction: column; gap: 15px; }
    .site-nav ul { flex-wrap: wrap; justify-content: center; }
}
