.blogs .blog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem 0 1.25rem;
}

.blogs .chip {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #1a1a1a;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.blkl {
    color: black !important;
}

.blogs .blog-meta {
    display: flex;
    gap: 0.75rem;
    color: #999;
    font-size: 0.85rem;
}

.uppa {
    margin-top: 20px !important;
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(44, 95, 93, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    animation: particleMove 20s infinite linear;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blogs .blog-meta i {
    color: #d4af37;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Blogs Section */
.blogs {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
    position: relative;
    overflow: hidden;
}

.blogs .section-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.blogs .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--gold));
}

.blogs::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="25" cy="25" r="1" fill="%23f0f0f0"/><circle cx="75" cy="75" r="1" fill="%23f0f0f0"/><circle cx="50" cy="10" r="0.5" fill="%23f0f0f0"/><circle cx="10" cy="60" r="0.5" fill="%23f0f0f0"/><circle cx="90" cy="40" r="0.5" fill="%23f0f0f0"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.15);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(139, 69, 19, 0.1);
    backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(139, 69, 19, 0.25);
    border-color: var(--primary-color);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.1);
}

.blog-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.blog-category {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta i {
    color: #d4af37;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blogs .blog-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(139, 69, 19, 0.1);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.15);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.blogs .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(139, 69, 19, 0.25);
    border-color: var(--primary-color);
}

/* Blog post */
.blog-post-header {
    margin-top: 2.5rem;
    text-align: center;
}

.blog-post-header .section-title {
    font-size: 2.2rem;
}

.blog-post-header .section-subtitle {
    margin-top: 0.5rem;
}

.post-meta {
    margin-top: 0.75rem;
    justify-content: center;
}

.blog-post-content {
    margin-top: 1.5rem;
}

.blog-pullquote {
    margin: 1.25rem 0;
    font-size: 1.1rem;
    font-style: italic;
    color: #2c5f5d;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #d4af37;
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.blog-pullquote::before {
    content: '"';
    font-size: 3rem;
    color: #d4af37;
    position: absolute;
    top: -10px;
    left: 15px;
    opacity: 0.3;
}

.blog-post-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-post-actions .btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-post-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.blog-post-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.blog-post-actions .btn:hover::before {
    left: 100%;
}

/* Blog button */
.blogs .blog-btn {
    border-color: #d4af37;
    color: #d4af37;
    font-weight: 600;
}

.blogs .blog-btn:hover {
    background: #d4af37;
    color: #1a1a1a;
}

/* Accent removal */
.blogs .blog-card::before {
    content: none;
}

/* Grid fix */
.blogs .blogs-grid {
    display: block;
}

.blog-actions {
    display: flex;
    justify-content: flex-start;
}

.blog-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-btn:hover {
    background: #d4af37;
    color: #1a1a1a;
    transform: translateX(5px);
}

/* CTA */
.blogs-cta {
    text-align: center;
    margin-top: 4rem;
}

.blogs-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card {
        margin: 0 1rem;
    }

    .blog-content {
        padding: 1.25rem;
    }

    .blog-title {
        font-size: 1.2rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .blogs {
        padding: 4rem 0;
    }

    .blog-content {
        padding: 1rem;
    }

    .blog-title {
        font-size: 1.1rem;
    }

    .blogs-cta .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Single Blog Page - Themed Content Section and Card */
.blog-content-section {
    /* push content below fixed navbar */
    margin-top: 100px;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
}

.blog-article-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(139, 69, 19, 0.12);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.15);
    backdrop-filter: blur(8px);
    padding: 2rem;
}

.blog-post-content h2, .blog-post-content h3 {
    color: var(--primary-color);
}

.blog-post-content p {
    color: var(--text-light);
}

.blog-post-actions .btn {
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
    border-radius: 25px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-post-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.3);
}

.blog-post-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.blog-post-actions .btn:hover::before {
    left: 100%;
}

.blog-post-actions .btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.blog-post-actions .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.3);
}

