* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.7;
    color: #1f2937;
    background: #ffffff;
}

/* Header */
header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    padding: 6px;
}

.sound-bar {
    width: 3px;
    background: white;
    border-radius: 2px;
    animation: soundWave 1s ease-in-out infinite;
}

.sound-bar:nth-child(1) { height: 10px; animation-delay: 0s; }
.sound-bar:nth-child(2) { height: 20px; animation-delay: 0.2s; }
.sound-bar:nth-child(3) { height: 14px; animation-delay: 0.4s; }
.sound-bar:nth-child(4) { height: 18px; animation-delay: 0.6s; }
.sound-bar:nth-child(5) { height: 10px; animation-delay: 0.8s; }

@keyframes soundWave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}

.orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.black {
    color: #1f2937;
}

.logo-text p {
    font-size: 0.5rem;
    color: #f97316;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #f97316;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: #f97316;
}

/* Blog Hero */
.blog-hero {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.blog-image {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.navratri-bg {
    background-image: url('img/blog/navratri.png');
}

.meditation-bg {
    background-image: url('img/blog/meditation.png');
}
.mantra-bg {
    background-image: url('img/blog/morning-mantra.png');
}

.hanuman-bg {
    background-image: url('img/blog/hanuman.png');
}

.harekrishna-bg {
    background-image: url('img/blog/hare-krishna.png');
}

.laxmi-bg {
    background-image: url('img/blog/laxmi.png');
}

.guru-bg {
    background-image: url('img/blog/guru.png');
}
.diwali-bg {
    background-image: url('img/blog/diwali.png');
}
.gayatri-bg {
    background-image: url('img/blog/gayatri.png');
}
.ganesh-bg {
    background-image: url('img/blog/ganesh-chaturthi.png');
}
.diwali-bg {
    background-image: url('img/blog/diwali.png');
}

/* etc. for all blog images */

.blog-card.featured .blog-image {
    height: 100%;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    color: #f97316;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 10;
}

/* Background Images for Blog Cards */
.hanuman-bg {
    background-image: url('../img/blog/hanuman.png');
    background-size: cover;
    background-position: center;
}

.lakshmi-bg {
    background-image: url('../img/blog/lakshmi.png');
    background-size: cover;
    background-position: center;
}

.gayatri-bg {
    background-image: url('../img/blog/gayatri.png');
    background-size: cover;
    background-position: center;
}
.guru-bg {
    background-image: url('../img/blog/guru.png');
    background-size: cover;
    background-position: center;
}
.diwali-bg {
    background-image: url('../img/blog/diwali.png');
    background-size: cover;
    background-position: center;
}

.navratri-bg {
    background-image: url('../img/blog/navratri.png');
    background-size: cover;
    background-position: center;
}

.harekrishna-bg {
    background-image: url('../img/blog/hare-krishna.png');
    background-size: cover;
    background-position: center;
}

.mantra-bg {
    background-image: url('../img/blog/morning-mantra.png');
    background-size: cover;
    background-position: center;
}

.meditation-bg {
    background-image: url('../img/blog/meditation.png');
    background-size: cover;
    background-position: center;
}

.ganesh-bg {
    background-image: url('../img/blog/ganesh-chaturthi.png');
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.category {
    background: #fef3c7;
    color: #92400e;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.date,
.read-time {
    color: #6b7280;
    font-size: 0.875rem;
}

.blog-card h2,
.blog-card h3 {
    margin-bottom: 1rem;
}

.blog-card h2 {
    font-size: 1.75rem;
}

.blog-card h3 {
    font-size: 1.25rem;
}

.blog-card h2 a,
.blog-card h3 a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h2 a:hover,
.blog-card h3 a:hover {
    color: #f97316;
}

.blog-card p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #f97316;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 0.75rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.page-btn {
    padding: 0.75rem 1.25rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.page-btn:hover,
.page-btn.active {
    background: #f97316;
    color: white;
    border-color: #f97316;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 4rem 2rem;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-container p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: #f97316;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #ea580c;
}

.privacy-note {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Blog Post Page */
.blog-post {
    background: white;
}

.post-header {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 3rem 2rem;
}

.post-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb-simple {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.breadcrumb-simple a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumb-simple a:hover {
    color: #f97316;
}

.post-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.post-meta-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    color: #6b7280;
}

.category-badge {
    background: #f97316;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.post-featured-image {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-placeholder {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hanuman-hero {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

/* Post Content */
.post-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.post-body {
    max-width: 800px;
}

.lead {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.post-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.post-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.post-body ul,
.post-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-body li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.post-body strong {
    color: #1f2937;
    font-weight: 700;
}

/* Info Box */
.info-box {
    background: #f0fdf4;
    border-left: 4px solid #10b981;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
}

.info-box h4 {
    color: #065f46;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.info-box ul {
    margin-bottom: 0;
}

.info-box li {
    margin-bottom: 0.5rem;
}

.orange-box {
    background: #fff7ed;
    border-left-color: #f97316;
}

.orange-box h4 {
    color: #9a3412;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin: 3rem 0;
}

.cta-box h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #f97316;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

/* Sidebar */
.post-sidebar {
    position: sticky;
    top: 6rem;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-widget h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.toc {
    list-style: none;
    padding: 0;
}

.toc li {
    margin-bottom: 0.75rem;
}

.toc a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    padding-left: 1rem;
    border-left: 2px solid #e5e7eb;
}

.toc a:hover {
    color: #f97316;
    border-left-color: #f97316;
}

/* Product Widget */
.product-widget {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #fbbf24;
}

.product-card-mini {
    text-align: center;
}

.product-mini-image {
    height: 120px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.hanuman-mini {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

.product-card-mini h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.mini-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f97316;
    margin-bottom: 1rem;
}

.mini-btn {
    display: inline-block;
    background: #f97316;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.3s;
}

.mini-btn:hover {
    background: #ea580c;
}

.related-posts {
    list-style: none;
    padding: 0;
}

.related-posts li {
    margin-bottom: 0.75rem;
}

.related-posts a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s;
}

.related-posts a:hover {
    color: #f97316;
}

/* Share Widget */
.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.share-btn {
    padding: 0.75rem;
    border-radius: 0.375rem;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: white;
    transition: opacity 0.3s;
}

.share-btn:hover {
    opacity: 0.9;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.pinterest {
    background: #e60023;
}

/* Related Posts Section */
.related-posts-section {
    background: #f9fafb;
    padding: 3rem 2rem;
}

.related-posts-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card-small {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-card-small:hover {
    transform: translateY(-4px);
}

.small-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-small h4 {
    padding: 1.5rem;
    padding-bottom: 0.5rem;
}

.blog-card-small h4 a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-small h4 a:hover {
    color: #f97316;
}

.small-date {
    padding: 0 1.5rem 1.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Footer */
footer {
    background: #1f2937;
    color: white;
    padding: 3rem 2rem 1.5rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fb923c;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fb923c;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
    color: white;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .post-content {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .post-header h1 {
        font-size: 1.75rem;
    }
    
    .blog-card.featured {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured .blog-image {
        height: 250px;
    }
    
    .main-nav {
        display: none;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .blog-card.featured {
        grid-column: 1 / 3;
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}