/* BuyAHome101 Theme - Clean & Modern */
:root {
    --primary: #FC5C06;
    --primary-dark: #e04a00;
    --secondary: #010101;
    --accent: #FC5C06;
    --text: #334155;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --border: #e2e8f0;
    --radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--secondary);
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
}

.logo-text span {
    color: #FC5C06;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #e04a00;
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #010101 0%, #1a1a1a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.hero .btn-primary {
    background: var(--accent);
}

.hero .btn-primary:hover {
    background: #e04a00;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

/* Article Cards */
.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.card-image {
    height: 200px;
    background: linear-gradient(135deg, #FC5C06 0%, #ff7f3f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.card-content {
    padding: 25px;
}

.card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 600;
}

.card h3 {
    margin: 10px 0;
    font-size: 1.25rem;
}

.card h3 a {
    text-decoration: none;
    color: var(--secondary);
}

.card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.card-meta {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Single Article */
.article-header {
    padding: 40px 0;
    background: var(--bg-alt);
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto 15px;
    color: var(--secondary);
}

.article-meta {
    color: var(--text-light);
}

.article-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-content h2 {
    color: var(--secondary);
    margin: 40px 0 20px;
    font-size: 1.75rem;
}

.article-content h3 {
    color: var(--secondary);
    margin: 30px 0 15px;
}

.article-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-light);
}

/* CTA Box */
.cta-box {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cta-box p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Lead Capture Form */
.lead-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Footer */
.site-footer {
    background: var(--secondary);
    color: white;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    opacity: 0.8;
    margin-top: 15px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
}

.footer-links a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 5px;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Categories Page */
.category-header {
    background: var(--bg-alt);
    padding: 40px 0;
    margin-bottom: 40px;
}

.category-header h1 {
    font-size: 2rem;
    color: var(--secondary);
}
