/* Blog Main Section */
    .blog-main {
        padding: 120px 5% 80px;
        text-align: center;
        background: linear-gradient(180deg, #fff, #f9e8b0);
        position: relative;
        overflow: hidden;
        min-height: 100vh;
    }

    .blog-main::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('https://via.placeholder.com/1920x1080.png?text=Spice+Blog+Background') no-repeat center/cover;
        opacity: 0.15;
        z-index: 0;
        animation: subtleZoom 20s infinite ease-in-out;
    }

    .blog-main h1 {
        font-family: 'Playfair Display', serif;
        font-size: 72px;
        font-weight: 900;
        color: #d35400;
        margin-bottom: 25px;
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 1;
        animation: fadeInDown 1.2s ease-out;
    }

    .blog-main .intro-text {
        max-width: 1000px;
        margin: 0 auto 50px;
        font-size: 22px;
        color: #4a2c07;
        line-height: 2;
        position: relative;
        z-index: 1;
        animation: fadeInUp 1.2s ease-out 0.3s;
        animation-fill-mode: both;
    }

    .blog-image {
        width: 100%;
        max-width: 900px;
        height: auto;
        border-radius: 20px;
        margin: 40px auto;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        transition: transform 0.5s ease, box-shadow 0.5s ease;
        position: relative;
        z-index: 1;
    }

    .blog-image:hover {
        transform: scale(1.06);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    }



.blog-content {
    padding: 80px 5%;
    background: #fff;
    text-align: center;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.blog-content .post-meta {
    display: block;
    font-size: 14px;
    color: #7a4f1a;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out;
}

.blog-content article {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4a2c07;
}

.blog-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #d35400;
    margin: 40px 0 20px;
}

.blog-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #d35400;
    margin: 30px 0 15px;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content ul {
    list-style: disc;
    margin: 20px 0 20px 30px;
}

.blog-content li {
    margin-bottom: 10px;
}

.content-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.content-image:hover {
    transform: scale(1.05);
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #d35400, #e67e22);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.3s ease;
    margin: 20px 0;
}

.cta-button:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-3px);
}

.related-posts {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f0e4c2;
}

.related-posts h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #d35400;
    margin-bottom: 20px;
}

.related-link {
    display: block;
    font-size: 16px;
    color: #d35400;
    text-decoration: none;
    margin: 10px 0;
    transition: color 0.3s ease;
}

.related-link:hover {
    color: #e67e22;
}

/* Responsive Design */
@media (max-width: 768px) {
   .blog-main {
            padding: 80px 5% 60px;
            min-height: auto;
        }

        .blog-main h1 {
            font-size: 48px;
        }

        .blog-main .intro-text {
            font-size: 18px;
            max-width: 100%;
        }

        .blog-image {
            max-width: 100%;
            margin: 30px auto;
        }
    .blog-content {
        padding: 60px 5%;
    }

    .blog-content h2 {
        font-size: 30px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

    .content-image {
        max-width: 100%;
    }

    .cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .blog-main h1 {
            font-size: 36px;
        }

        .blog-main .intro-text {
            font-size: 16px;
        }
    .blog-content h2 {
        font-size: 24px;
    }

    .blog-content h3 {
        font-size: 18px;
    }

    .blog-content article {
        font-size: 14px;
    }

    .cta-button {
        font-size: 12px;
        padding: 8px 15px;
    }
    

}