/* Blog Article Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f6f4;
    color: #3b3d3a;
}

/* Global link styles - Beautiful pink color */
a {
    color: #ff6b9d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff5a8d;
    text-decoration: underline;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo img {
    height: 50px;
}

.business-name-header {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: #3b3d3a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #3b3d3a !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #b6886e !important;
    text-decoration: none;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Article Hero Section */
.article-hero {
    background: linear-gradient(135deg, #f8f6f4 0%, #ffffff 100%);
    padding: 120px 0 60px;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

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

.breadcrumb {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #b6886e !important;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: #b6886e !important;
}

.article-title {
    font-size: 2.5rem;
    color: #3b3d3a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: #666;
}

/* Article Content */
.article-content {
    padding: 60px 0;
    background: #ffffff;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Table of Contents */
.table-of-contents {
    position: sticky;
    top: 100px;
    background: #f8f6f4;
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.table-of-contents h3 {
    font-size: 1.2rem;
    color: #3b3d3a;
    margin-bottom: 20px;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 10px;
}

.table-of-contents a {
    color: #666 !important;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: #b6886e !important;
    text-decoration: none;
}

/* Article Body */
.article-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3b3d3a;
}

.article-body h2 {
    font-size: 2rem;
    color: #3b3d3a;
    margin: 40px 0 20px;
    padding-top: 20px;
}

.article-body h3 {
    font-size: 1.5rem;
    color: #3b3d3a;
    margin: 30px 0 15px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body p.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #3b3d3a;
    margin-bottom: 30px;
    line-height: 1.6;
}

.article-body ul, .article-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

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

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #f8f6f4 0%, rgba(182, 136, 110, 0.05) 100%);
    border-left: 4px solid #b6886e;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

/* CTA Box */
.cta-box {
    background: #3b3d3a;
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    color: white;
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 20px;
}

.cta-box .btn {
    background: white;
    color: #3b3d3a;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-box .btn:hover {
    background: #f8f6f4;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #3b3d3a;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

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

.footer-info h3 {
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .article-hero {
        padding: 100px 0 40px;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .table-of-contents {
        position: static;
        margin-bottom: 40px;
    }
    
    .article-meta {
        font-size: 0.85rem;
    }
}