/* KrushFlow Agency Site Styles */
:root {
    --primary: #fb923c;
    --primary-dark: #f97316;
    --bg-dark: #0f0f0f;
    --bg-card: #1a1a2e;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(255,165,0,0.2);
}

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

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

/* Navigation */
nav {
    background: rgba(15,15,15,0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav .nav-links {
    display: flex;
    gap: 2rem;
}

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

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

/* Hero Section */
.hero {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249,115,22,0.3);
}

/* Blog Post Styles */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.post-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.post-intro {
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

.post-intro p {
    margin-bottom: 1rem;
}

.post-section {
    margin-bottom: 3rem;
}

.post-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.post-section h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: var(--text);
}

.post-section p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.post-section ul, .post-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.post-section li {
    margin-bottom: 0.5rem;
}

.post-section a {
    color: var(--primary);
    text-decoration: none;
}

.post-section a:hover {
    text-decoration: underline;
}

blockquote {
    background: linear-gradient(135deg, rgba(255,140,0,0.1), rgba(249,115,22,0.05));
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

blockquote p {
    margin-bottom: 0.5rem;
    font-style: italic;
}

blockquote p:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    background: var(--bg-card);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border);
    margin-top: 4rem;
}

footer p {
    color: var(--text-muted);
}

/* Mobile */
@media (max-width: 768px) {
    nav .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .post-header h1 {
        font-size: 1.75rem;
    }
}
