/**
 * आरतीसंध्या - धार्मिक वेबसाइट CSS
 * Aartisandhya - Dharmic Website Stylesheet
 */

/* ================================================
   वैश्विक शैली - GLOBAL STYLES
================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* धार्मिक रंग - Dharmic Colors */
    --primary-color: #FF0000;        /* लाल */
    --secondary-color: #B90000;      /* गहरा लाल */
    --accent-color: #E7000B;         /* चमकीला लाल */
    --saffron: #FF9933;              /* केसरिया */
    --gold: #FFD700;                 /* सोना */
    --cream: #FFF5E6;               
    --light-pink: #FFE4E1;           
    
    /* Text Colors */
    --text-color: #2c1810;
    --text-light: #5c4033;
    --text-dark: #1a0f08;
    
    /* Background Colors */
    --bg-light: #FFF8F0;
    --bg-cream: #FFEFD5;
    --bg-saffron-light: #FFF3E0;
    --border-color: #FFD4BA;
    
    --success-color: #28a745;
    --warning-color: #FF9933;
    --danger-color: #B90000;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Noto Sans Devanagari', 'Mukta', 'Mangal', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background: var(--bg-light);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================================
   हेडर - HEADER
================================================ */

.site-header {
    background: linear-gradient(135deg, #FFEFD5 0%, #FFE4E1 100%);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--saffron);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.site-logo a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.site-logo img {
    height: 45px;
    width: auto;
}

.site-logo a:hover {
    transform: translateY(-2px);
    color: var(--saffron);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
    /* align-items: center; */
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.main-nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    font-size: 17px;
    padding: 8px 12px;
    border-radius: 8px;
}

.main-nav a:hover,
.main-nav a.active {
    color: white;
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE4E1 100%);
    box-shadow: 0 6px 12px rgba(255, 0, 0, 0.15);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-bottom: 3px solid var(--saffron);
}

.mobile-menu.active {
    max-height: 600px;
}

.mobile-menu ul {
    list-style: none;
    padding: 25px 20px;
}

.mobile-menu li {
    padding: 10px 10px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 18px;
    display: block;
    font-weight: 600;
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--saffron);
    transform: translateX(8px);
}

/* ================================================
   फुटर - FOOTER
================================================ */

.site-footer {
    background: linear-gradient(135deg, #B90000 0%, #8B0000 100%);
    color: white;
    padding: 70px 0 25px;
    /* margin-top: 80px; */
    border-top: 4px solid var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-section h3 {
    margin-bottom: 22px;
    font-size: 22px;
    color: var(--gold);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-section a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 18px;
    font-size: 26px;
    margin-top: 18px;
}

.social-links a {
    color: white;
    opacity: 0.85;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
}

.social-links a:hover {
    opacity: 1;
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 25px;
    text-align: center;
    opacity: 0.8;
}

.footer-bottom p {
    margin-bottom: 12px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.8);
    margin: 0 12px;
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ================================================
   होम पेज - HOME PAGE
================================================ */

.hero-section-enhanced {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #FF0000 0%, #B90000 50%, #8B0000 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 153, 51, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.3) 0%, transparent 50%);
    animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content-enhanced {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    backdrop-filter: blur(10px);
}

.hero-title-main {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    color: white;
}

.hero-description {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 16px 40px;
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 50px;
    font-size: 17px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary {
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    font-size: 17px;
    border: 2px solid white;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-4px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 45px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    min-width: 150px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.stat-item strong {
    display: block;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item span {
    font-size: 15px;
    opacity: 0.95;
    font-weight: 600;
}

.quick-categories {
    padding: 70px 0;
    background: var(--bg-cream);
}

.quick-cats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.quick-cat-card {
    background: white;
    padding: 35px 25px;
    text-align: center;
    border-radius: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.08);
    border: 2px solid transparent;
    text-decoration: none;
}

.quick-cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.15);
    border-color: var(--saffron);
    background: var(--bg-saffron-light);
}

.cat-icon {
    font-size: 56px;
    margin-bottom: 18px;
}

.quick-cat-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.quick-cat-card p {
    color: var(--text-light);
    font-size: 14px;
}

.featured-section {
    padding: 70px 0;
    background: white;
}

.section-header-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header-enhanced h2 {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 800;
}

.section-header-enhanced p {
    color: var(--text-light);
    font-size: 16px;
    margin-top: 5px;
}

.view-all-btn {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 17px;
    padding: 12px 28px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    transition: var(--transition);
}

.view-all-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.posts-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

.post-card-enhanced {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.post-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.15);
    border-color: var(--saffron);
}

.post-thumbnail-enhanced {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.post-thumbnail-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-card-enhanced:hover .post-thumbnail-enhanced img {
    transform: scale(1.1);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.post-card-enhanced:hover .post-overlay {
    opacity: 1;
}

.read-more-overlay {
    color: white;
    font-weight: 700;
    padding: 12px 25px;
    background: var(--primary-color);
    border-radius: 50px;
    margin-bottom: 20px;
}

.post-content-enhanced {
    padding: 25px;
}

.post-category {
    display: inline-block;
    padding: 6px 15px;
    background: var(--bg-saffron-light);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 12px;
}

.post-content-enhanced h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.post-content-enhanced h3 a {
    color: var(--text-dark);
}

.post-content-enhanced p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.read-more-link {
    color: var(--primary-color);
    font-weight: 700;
}

.read-more-link:hover {
    color: var(--saffron);
}

.chalisa-section {
    padding: 70px 0;
    background: var(--bg-cream);
}

.chalisa-list-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.chalisa-list-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.chalisa-list-item:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.12);
    border-left-color: var(--primary-color);
}

.chalisa-icon {
    font-size: 48px;
}

.chalisa-info {
    flex: 1;
}

.chalisa-info h4 {
    font-size: 19px;
    margin-bottom: 8px;
}

.chalisa-info h4 a {
    color: var(--text-dark);
}

.chalisa-info p {
    color: var(--text-light);
    font-size: 14px;
}

.chalisa-arrow {
    font-size: 28px;
    color: var(--primary-color);
}

.bhajan-section {
    padding: 70px 0;
    background: white;
}

.bhajan-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.bhajan-card {
    background: var(--bg-saffron-light);
    padding: 35px 28px;
    text-align: center;
    border-radius: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.bhajan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 153, 51, 0.2);
}

.bhajan-icon-big {
    font-size: 64px;
    margin-bottom: 20px;
}

.bhajan-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.bhajan-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.bhajan-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    border-radius: 50px;
}

.bhajan-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.dual-section {
    padding: 70px 0;
    background: var(--bg-cream);
}

.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.dual-column {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.compact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.compact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-saffron-light);
    border-radius: 10px;
    transition: var(--transition);
}

.compact-item:hover {
    transform: translateX(8px);
    border-left: 3px solid var(--primary-color);
}

.compact-icon {
    font-size: 32px;
}

.compact-item a {
    color: var(--text-dark);
    font-weight: 600;
}

.why-choose-section {
    padding: 80px 0;
    background: white;
}

.section-title-center {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 800;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-saffron-light);
    border-radius: 16px;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(255, 153, 51, 0.2);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--saffron) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 40px;
    margin: 0 auto 20px;
}

.feature-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.feature-box p {
    color: var(--text-light);
}

.cta-section-home {
    padding: 0;
    margin: 80px 0;
}

.cta-content {
    text-align: center;
    padding: 90px 30px;
    background: linear-gradient(135deg, #FF0000 0%, #B90000 50%, #8B0000 100%);
    border-radius: 24px;
    color: white;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 18px;
    font-weight: 800;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons-home {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    padding: 16px 45px;
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 50px;
    font-size: 18px;
}

.btn-cta-primary:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-5px);
}

.btn-cta-secondary {
    padding: 16px 45px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    font-size: 18px;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* ================================================
   एकल पोस्ट - SINGLE POST
================================================ */

.single-header {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--bg-saffron-light) 0%, var(--light-pink) 100%);
    border-bottom: 4px solid var(--saffron);
}

.single-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-light);
}

.breadcrumbs {
    padding: 20px 0;
    background: var(--bg-cream);
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.single-content {
    padding: 60px 0;
}

.single-post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.single-main {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.featured-image-single {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.post-content-single {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-color);
}

.post-content-single h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin: 40px 0 20px;
    font-weight: 700;
}

.post-content-single h3 {
    color: var(--secondary-color);
    font-size: 26px;
    margin: 35px 0 18px;
}

.post-content-single p {
    margin-bottom: 20px;
    text-align: justify;
}

.single-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.sidebar-widget h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--saffron);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: var(--text-dark);
    padding: 10px 15px;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
}

.category-list a:hover {
    background: var(--bg-saffron-light);
    color: var(--primary-color);
    transform: translateX(8px);
}

.sidebar-posts-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sidebar-post-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    background: var(--bg-saffron-light);
    border-radius: 10px;
}

.sidebar-post-item:hover {
    transform: translateX(5px);
}

.sidebar-post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-post-info h4 {
    font-size: 15px;
    margin-bottom: 8px;
}

.post-date {
    font-size: 13px;
    color: var(--text-light);
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 30px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    margin: 40px 0;
}

.share-buttons h4 {
    width: 100%;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.share-btn {
    padding: 12px 25px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
}

.facebook { background: #1877f2; }
.twitter { background: #1da1f2; }
.whatsapp { background: #25d366; }
.telegram { background: #0088cc; }
.copy-link { background: var(--saffron); }

.related-posts-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 3px solid var(--border-color);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.related-post-card {
    background: var(--bg-saffron-light);
    border-radius: 12px;
    overflow: hidden;
}

.related-post-card:hover {
    transform: translateY(-8px);
}

/* ================================================
   आर्काइव - ARCHIVE
================================================ */

.archive-header {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-saffron-light) 0%, var(--light-pink) 100%);
    text-align: center;
    border-bottom: 4px solid var(--saffron);
}

.archive-header h1 {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.archive-content {
    padding: 60px 0;
}

.archive-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.post-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.12);
}

.post-thumbnail {
    height: 200px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-content {
    padding: 22px;
}

.post-card-content h3 {
    font-size: 19px;
    margin-bottom: 12px;
}

.post-card-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 700;
}

.archive-sidebar {
    position: sticky;
    top: 100px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    flex-direction: row;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 12px 20px;
    background: white;
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--border-color);
}

.pagination a:hover {
    background: var(--primary-color);
    color: white;
}

.pagination .current {
    background: var(--primary-color);
    color: white;
}

.taxonomy-header {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-saffron-light) 0%, var(--light-pink) 100%);
    text-align: center;
    border-bottom: 4px solid var(--saffron);
}

.taxonomy-header h1 {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.taxonomy-description {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

/* ================================================
   404 पेज - 404 PAGE
================================================ */

.error-404-wrapper {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.error-404-content {
    text-align: center;
}

.error-code {
    font-size: 120px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 4px 4px 0 var(--saffron);
}

.error-404-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.error-404-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-home {
    padding: 15px 35px;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    border-radius: 50px;
}

.btn-home:hover {
    background: var(--secondary-color);
    transform: translateY(-4px);
}

.btn-secondary {
    padding: 15px 35px;
    background: var(--saffron);
    color: white;
    font-weight: 700;
    border-radius: 50px;
}

.suggested-content {
    background: white;
    padding: 35px;
    border-radius: 16px;
}

.suggested-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.suggested-links a {
    padding: 10px 20px;
    background: var(--bg-saffron-light);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
}

/* ================================================
   अबाउट - ABOUT PAGE
================================================ */

.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF0000 0%, #B90000 50%, #8B0000 100%);
    color: white;
    text-align: center;
    border-bottom: 5px solid var(--gold);
}

.about-hero h1 {
    font-size: 50px;
    margin-bottom: 15px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 22px;
    opacity: 0.95;
}

.about-content {
    padding: 70px 0;
}

.about-section {
    padding: 60px 0;
}

.about-section.alt-bg {
    background: var(--bg-cream);
    border-radius: 20px;
    padding: 70px 40px;
    margin: 40px 0;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 22px;
    font-weight: 800;
}

.content-text p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.section-title {
    font-size: 38px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.feature-card {
    background: white;
    padding: 35px 28px;
    text-align: center;
    border-radius: 16px;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.why-choose-list {
    display: grid;
    gap: 25px;
}

.why-item {
    display: flex;
    gap: 22px;
    background: white;
    padding: 28px;
    border-radius: 12px;
}

.check-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--saffron) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 26px;
}

.why-item h4 {
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--primary-color);
}

.about-cta {
    text-align: center;
    padding: 90px 35px;
    background: linear-gradient(135deg, #FF0000 0%, #B90000 50%, #8B0000 100%);
    border-radius: 24px;
    color: white;
    margin-top: 80px;
}

.about-cta h2 {
    font-size: 42px;
    margin-bottom: 18px;
    font-weight: 800;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.btn-primary,
.btn-outline {
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--gold);
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* ================================================
   संपर्क - CONTACT PAGE
================================================ */

.contact-hero {
    background: linear-gradient(135deg, #FF0000 0%, #B90000 50%, #8B0000 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-bottom: 5px solid var(--gold);
}

.contact-hero h1 {
    font-size: 50px;
    margin-bottom: 15px;
    font-weight: 800;
}

.contact-content {
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.contact-form-section h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 45px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-4px);
}

.contact-info-card {
    background: var(--bg-saffron-light);
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 22px;
}

.info-icon {
    font-size: 50px;
    margin-bottom: 18px;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    padding: 12px 22px;
    background: white;
    border-radius: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.social-btn:hover {
    background: var(--primary-color);
    color: white;
}

.quick-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 3px solid var(--border-color);
}

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 45px;
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 28px;
    border-radius: 12px;
    border-left: 4px solid var(--saffron);
}

.faq-item h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.alert {
    display: flex;
    gap: 15px;
    padding: 18px 25px;
    border-radius: 12px;
    margin-bottom: 28px;
}

.alert-icon {
    font-size: 24px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}



/* ================================================
   5. SINGLE POST PAGE
================================================ */

.breadcrumb {
    padding: 15px 0;
    background: var(--bg-light);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--text-light);
}

.single-post-wrapper {
    padding: 40px 0;
}

.single-post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.single-post-main {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.post-header {
    margin-bottom: 30px;
}

.post-header h1 {
    font-size: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--text-color);
}

.post-meta {
    color: var(--text-light);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    font-size: 14px;
}

.post-meta span {
    margin-right: 20px;
}

.post-categories {
    margin: 20px 0;
}

.post-categories a {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    margin: 5px;
    font-size: 14px;
    transition: background 0.3s;
}

.post-categories a:hover {
    background: var(--secondary-color);
}

.featured-image {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: auto;
}

.before-content-section,
.main-content-section,
.hinglish-section {
    margin: 30px 0;
    padding: 30px;
    border-radius: 8px;
}

.before-content-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 5px solid #fb983e;
    background: linear-gradient(135deg, #FF0000 0%, #B90000 50%, #8B0000 100%);
    color: white;
}

.main-content-section {
    background: #fff8f0;
    border: 2px solid #e0e0e0;
}

.hinglish-section {
    background: linear-gradient(135deg, #fff8f0 0%, #fee6e0 100%);
    border-left: 5px solid #ffc107;
}

.section-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.main-content-section {
    background: #fff8f0;
    border: 2px solid #e0e0e0;
}

.formatted-content {
    font-size: 18px;
    line-height: 1.9;
    color: #333;
}

.formatted-content strong,
.formatted-content b {
    color: #d32f2f;
    font-weight: 700;
}

.formatted-content em,
.formatted-content i {
    font-style: italic;
    color: #1976d2;
}

.formatted-content h2,
.formatted-content h3,
.formatted-content h4 {
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.formatted-content p {
    margin-bottom: 18px;
}

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

.formatted-content li {
    margin-bottom: 12px;
}

.share-section {
    margin: 40px 0;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 8px;
}

.share-section h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.share-btn:hover {
    opacity: 0.9;
}

.share-facebook { background: #3b5998; }
.share-twitter { background: #1da1f2; }
.share-whatsapp { background: #25d366; }

/* ================================================
   6. SIDEBAR
================================================ */

.single-post-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    color: var(--text-color);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: block;
    padding: 10px 15px;
    background: var(--bg-light);
    border-radius: 6px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
}

.category-list a:hover {
    background: var(--primary-color);
    color: white;
    padding-left: 20px;
}

.sidebar-posts-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-post-item {
    display: flex;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-post-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.sidebar-post-item:hover .sidebar-post-thumb img {
    transform: scale(1.1);
}

.sidebar-post-info {
    flex: 1;
}

.sidebar-post-info h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    line-height: 1.4;
}

.sidebar-post-info h4 a {
    color: var(--text-color);
    text-decoration: none;
}

.sidebar-post-info h4 a:hover {
    color: var(--primary-color);
}

.post-date {
    font-size: 12px;
    color: var(--text-light);
}

.simple-post-list {
    list-style: none;
}

.simple-post-list li {
    margin-bottom: 12px;
}

.simple-post-list a {
    display: block;
    padding: 10px 15px;
    background: var(--bg-light);
    border-radius: 6px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
    border-left: 3px solid transparent;
}

.simple-post-list a:hover {
    background: #e8eaf6;
    padding-left: 20px;
    border-left-color: var(--primary-color);
}

/* ================================================
   9. RELATED POSTS SECTION
================================================ */

.related-posts-section {
    padding: 60px 0;
    background: white;
}

.related-posts-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

/* ================================================
   रेस्पॉन्सिव - RESPONSIVE
================================================ */

@media (max-width: 1024px) {
    .single-post-layout,
    .archive-layout,
    .section-content,
    .contact-layout,
    .dual-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
	.quick-cats-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.hero-section-enhanced {
		padding: 50px 0;
	}
	.hero-stats {
		display: flex;
		justify-content: center;
		gap: 10px;
		flex-wrap: wrap;
	}
    .hero-title-main {
        font-size: 40px;
    }
		
	.chalisa-list-grid {
		display: grid;
		gap: 20px;
		grid-template-columns: repeat(1, 1fr);
	}
    .quick-cats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .posts-grid-enhanced,
    .bhajan-cards-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }
    .posts-grid-enhanced, .bhajan-cards-grid, .posts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .single-header h1,
    .archive-header h1 {
        font-size: 32px;
    }
    
    .single-main {
        padding: 25px;
    }
	.quick-cats-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }
    .quick-cat-card {
		padding: 10px 20px;
	}
	.cat-icon {
		font-size: 36px;
		margin-bottom: 0px;
	}
}

@media (max-width: 480px) {
    .quick-cats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .quick-cat-card {
		padding: 10px 20px;
	}
	.cat-icon {
		font-size: 36px;
		margin-bottom: 0px;
	}
    .hero-buttons,
    .cta-buttons,
    .error-actions {
        flex-direction: column;
        width: 100%;
    }
    .posts-grid-enhanced,
    .bhajan-cards-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }
    .hero-title-main {
        font-size: 32px;
    }
	.single-post-main {
		background: #fff8f0;
		padding: 0px;
		border-radius: 12px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	}
}

.simple-post-list {
    list-style: none;
}

.simple-post-list li {
    margin-bottom: 10px;
}

.simple-post-list a {
    color: var(--text-dark);
    padding: 10px 15px;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.simple-post-list a:hover {
    background: var(--bg-saffron-light);
    color: var(--primary-color);
    transform: translateX(5px);
    border-left-color: var(--primary-color);
}