/*!
Theme Name: Theme Builder
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A lightweight WordPress theme with built-in theme builder
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: themebuilder
Domain Path: /languages
*/

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

html, body {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Header Styles */
.builder-header {
    background-color: #ffffff;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.builder-header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 80px;
    position: relative;
}

.builder-logo {
    flex-shrink: 0;
    max-width: 150px;
}

.builder-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.builder-nav {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-left: auto;
}

.builder-nav a {
    color: #000;
    text-decoration: none;
    padding: 8px 0;
    display: inline-block;
    transition: all 0.3s ease;
}

.builder-nav a:hover {
    opacity: 0.7;
}

/* Hero Section */
.builder-hero {
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.builder-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.builder-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 20px;
}

/* Main Content */
.site-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.site-content h1,
.site-content h2,
.site-content h3,
.site-content h4,
.site-content h5,
.site-content h6 {
    margin: 20px 0 10px;
    line-height: 1.3;
}

.site-content p {
    margin-bottom: 15px;
}

/* Footer */
.builder-footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
    margin-top: 60px;
    text-align: center;
}

.builder-footer a {
    color: #fff;
    text-decoration: none;
}

.builder-footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .builder-header-container {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 20px;
    }

    .builder-nav {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .builder-hero {
        min-height: 200px;
    }

    .builder-hero-content {
        padding: 20px;
    }

    .site-content {
        padding: 20px;
    }
}
