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

body {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #1a1a1a;
    font-weight: 600;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.25rem;
    color: #4CAF50;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.95rem;
}

/* Logo styles - Simplified and better integrated */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    position: relative;
    width: 32px;
    height: 32px;
}

.leaf {
    position: absolute;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform-origin: bottom center;
}

.leaf-1 {
    width: 12px;
    height: 16px;
    background-color: #388E3C;
    left: 0;
    bottom: 0;
    transform: rotate(-15deg);
}

.leaf-2 {
    width: 16px;
    height: 20px;
    background-color: #4CAF50;
    left: 6px;
    bottom: 2px;
    transform: rotate(5deg);
}

.leaf-3 {
    width: 20px;
    height: 24px;
    background-color: #70D62F;
    left: 12px;
    bottom: 4px;
    transform: rotate(25deg);
}

.logo-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

/* Navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4CAF50;
}

/* Hero section - Much cleaner */
.hero {
    padding: 8rem 0 6rem;
    text-align: center;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero h1 .brand-name {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #4CAF50;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero h1 .service-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #1a1a1a;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.hero h1 br {
    display: block;
    content: "";
    margin-top: 0.5rem;
}

.hero h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #4CAF50;
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.cta-button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

/* Services section - Cleaner cards */
.services {
    padding: 6rem 0;
    background-color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background-color: #fafafa;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: left;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #4CAF50;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #4CAF50;
    font-size: 1.1rem;
    text-align: left;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
}

.service-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: flex-start;
    overflow-x: auto;
}

.tag {
    background-color: #4CAF50;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

/* About section - Simplified */
.about {
    padding: 6rem 0;
    background-color: #fafafa;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.linkedin-link {
    display: inline-block;
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.linkedin-link:hover {
    color: #45a049;
}

/* Contact section - Cleaner form */
.contact {
    padding: 6rem 0;
    background-color: #ffffff;
}

.contact-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    background-color: #ffffff;
}

.submit-button {
    background-color: #4CAF50;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.submit-button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

/* Footer - Simplified */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo .logo-text {
    color: #4CAF50;
}

footer p {
    color: #999;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
}

.footer-links a {
    color: #4CAF50;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #70D62F;
    text-decoration: underline;
}

.footer-links .separator {
    color: #666;
    font-size: 0.9rem;
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, #4CAF50 0%, #70D62F 100%);
    color: white;
    text-align: center;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.blog-hero h1 {
    color: white;
    margin-bottom: 2rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
    display: block;
}

.blog-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 0;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
    display: block;
}

.blog-hero .container {
    position: relative;
    z-index: 3;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-content {
    padding: 5rem 0 4rem;
}

.blog-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-post {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.blog-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #70D62F);
    border-radius: 12px 12px 0 0;
}

.blog-post:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.post-meta time {
    color: #999;
}

.category {
    background: #4CAF50;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.post-title {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    display: block;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.post-title:hover {
    color: #4CAF50;
}

.post-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.post-tags .tag {
    background: #f5f5f5;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid #e0e0e0;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-section {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.sidebar-section h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.category-list a:hover {
    color: #4CAF50;
}

.category-list a.active {
    color: #4CAF50;
    font-weight: 500;
    background: rgba(76, 175, 80, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud .tag {
    background: #f5f5f5;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.tag-cloud .tag:hover {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}



/* Active navigation state */
.nav-links a.active {
    color: #4CAF50;
    font-weight: 500;
}

/* Individual Blog Post Styles */
.blog-post-full {
    padding: 4rem 0;
}

.post-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.post-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.post-content h2 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    text-align: left;
}

.post-content h3 {
    color: #4CAF50;
    font-size: 1.3rem;
    margin: 2rem 0 0.75rem;
    font-weight: 500;
}

.post-content p {
    margin-bottom: 1.5rem;
    color: #444;
    font-size: 1rem;
}

.post-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
    color: #444;
}

.video-embed {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.video-embed h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    width: 100%;
    height: 315px;
    border: none;
}

.video-embed p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.video-embed a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
}

.video-embed a:hover {
    text-decoration: underline;
}

.podcast-link {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin: 3rem 0 2rem;
    text-align: center;
}

.podcast-link h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.podcast-link p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.podcast-button {
    display: inline-block;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.podcast-button:hover {
    background: #45a049;
    text-decoration: none;
}

.post-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.author-info {
    margin-bottom: 2rem;
}

.author-info h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.author-info p {
    color: #666;
    margin-bottom: 1rem;
}

.related-posts h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.related-posts ul {
    list-style: none;
    padding: 0;
}

.related-posts li {
    margin-bottom: 0.75rem;
}

.related-posts a {
    color: #4CAF50;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.related-posts a:hover {
    color: #45a049;
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .services,
    .about,
    .contact {
        padding: 4rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
    
    /* Blog responsive styles */
    .blog-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar {
        position: static;
        order: -1;
    }
    
    .blog-post {
        padding: 1.5rem;
    }
    
    .post-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .leaf-1 {
        width: 10px;
        height: 14px;
    }
    
    .leaf-2 {
        width: 14px;
        height: 18px;
        left: 5px;
    }
    
    .leaf-3 {
        width: 18px;
        height: 22px;
        left: 10px;
    }
} 