/* Blog Template CSS - Clean and Simple */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f8f8;
}

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

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
}

.logo {
    height: 50px;
    width: auto;
}

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

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ff6b9d;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.blog-hero {
    background: #f8f6f4;
    padding: 4rem 1rem 2rem;
    text-align: center;
}

.blog-hero h1 {
    font-size: 2.5rem;
    color: #3b3d3a;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle {
    font-size: 1.2rem;
    color: #647275;
    margin-bottom: 2rem;
}

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

.breadcrumb a {
    color: #ff6b9d;
    text-decoration: none;
}

.blog-title {
    font-size: 2.5rem;
    color: #3b3d3a;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #666;
    font-size: 0.9rem;
}

/* Main Content */
.blog-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.content-wrapper {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

/* Table of Contents */
.table-of-contents {
    flex: 0 0 250px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: static;
    margin-bottom: 2rem;
}

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

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

.table-of-contents li {
    margin-bottom: 0.8rem;
}

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

.table-of-contents a:hover {
    color: #ff6b9d;
}

/* Article Content */
.blog-article {
    flex: 1;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 850px;
    margin: 0 auto;
}

.blog-article h2 {
    font-size: 2.2rem;
    color: #3b3d3a;
    margin: 3rem 0 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.blog-article h3 {
    font-size: 1.6rem;
    color: #3b3d3a;
    margin: 2.5rem 0 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-article p {
    margin-bottom: 1.8rem;
    color: #4a5658;
    line-height: 1.9;
    font-size: 1.05rem;
}

.blog-article ul,
.blog-article ol {
    margin: 0 0 2rem 2rem;
    line-height: 1.8;
}

.blog-article li {
    margin-bottom: 0.8rem;
    color: #4a5658;
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-article li strong,
.blog-article p strong {
    font-weight: 600;
    color: #3b3d3a;
}

.blog-article a {
    color: #ff6b9d;
    text-decoration: none;
}

.blog-article a:hover {
    text-decoration: underline;
}

/* Lead Paragraph */
.lead {
    font-size: 1.25rem;
    color: #4a5658;
    margin-bottom: 2.5rem;
    line-height: 1.9;
    font-weight: 400;
}

/* Images */
.article-image {
    margin: 2rem 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.article-image p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Alert Box */
.alert-box {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #f59e0b;
}

/* Highlight Box */
.highlight-box {
    background: #f0f9ff;
    border: 1px solid #3b82f6;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

/* CTA Section */
.cta-section {
    background: #f8f6f4;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-section a.btn {
    display: inline-block;
    margin: 0.5rem;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #ff6b9d;
    color: #ffffff !important;
}

.btn-secondary {
    background: #647275;
    color: #ffffff !important;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: #ff5a8d;
}

.btn-secondary:hover {
    background: #556568;
}

/* Author Bio */
.author-bio {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f6f4;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.author-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #b6886e;
}

.bio-content h3 {
    margin-bottom: 0.5rem;
    color: #3b3d3a;
}

.bio-content p {
    margin: 0;
    color: #4a5658;
    line-height: 1.6;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    border: 1px solid #e5e7eb;
    padding: 14px 16px;
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
}

th {
    background: #f8f6f4;
    font-weight: 600;
    color: #3b3d3a;
}

td {
    color: #4a5658;
}

tr:hover {
    background: #fafafa;
}

/* Footer */
.footer {
    background: #3b3d3a;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 4rem;
}

.footer p {
    margin: 0.5rem 0;
    color: #fff;
}

/* Mobile Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .content-wrapper {
        flex-direction: column;
    }
    
    .table-of-contents {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .blog-article {
        padding: 2rem 1.5rem;
    }
    
    .blog-article h2 {
        font-size: 1.8rem;
    }
    
    .blog-article h3 {
        font-size: 1.4rem;
    }
    
    .blog-article p,
    .blog-article li {
        font-size: 1rem;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 10px 12px;
    }
    
    .blog-article {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.8rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6b9d;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: transform 0.3s;
}

.back-link:hover {
    transform: translateX(-5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .content-wrapper {
        flex-direction: column;
    }
    
    .table-of-contents {
        position: static;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .blog-article {
        padding: 2rem 1rem;
    }
    
    .blog-meta {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .blog-body {
        padding: 2rem 1rem;
    }
}
/* Clear browser cache by adding timestamp */
/* Version: 1754275256 */
