/* ========================================
   MAIN CSS (style.css)
   BACKGROUND: CHIKU (LIGHT BEIGE/BROWN)
   EACH BOX: UNIQUE STYLE
   ADSENSE FRIENDLY - WARM & SOFT
   ======================================== */

/* ----- RESET & BASE (Chiku Background) ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ebe4d8;  /* chiku / light beige-brown colour */
    font-family: 'Poppins', sans-serif;
    color: #2a2418;
    line-height: 1.5;
    padding: 0 16px 80px 16px;
}

/* ----- TYPOGRAPHY (warm contrasts) ----- */
h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 20px 0 10px;
    color: #3b2a1f;
    text-align: center;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 10px 0;
    color: #4a3727;
    text-align: center;
}

.main-content h2 {
    text-align: left;
    font-size: 1.6rem;
    border-left: 4px solid #c9712e;
    padding-left: 14px;
    margin: 30px 0 20px 0;
    color: #4a2e1a;
}

h2, .article-list-title, .panchayat-title, .desi-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

p {
    color: #3e3326;
    margin-bottom: 16px;
}

/* ----- LINKS & BUTTONS (clean) ----- */
a {
    text-decoration: none;
    color: #c45f1a;
    font-weight: 500;
    transition: 0.2s;
}

a:hover {
    text-decoration: underline;
    color: #a84c10;
}

/* ========================================
   EACH BOX / CARD - UNIQUE STYLES
   ======================================== */

/* 1) ARTICLE LIST CARD (cream card with soft shadow) */
.article-list-card {
    background: #fffaf5;
    border-radius: 28px;
    padding: 20px 22px;
    margin-bottom: 32px;
    box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(200, 150, 100, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.article-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 32px -12px rgba(0, 0, 0, 0.15);
}

.article-list-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #3b2a1c;
    border-left: 4px solid #c9712e;
    padding-left: 12px;
    margin-top: 0;
}

.article-list-desc {
    color: #554731;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 12px 0 18px;
}

.read-btn {
    background: #c9712e;
    border: none;
    padding: 10px 22px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    color: white;
    display: inline-block;
    margin-right: 12px;
    transition: 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.read-btn:hover {
    background: #b05f22;
    text-decoration: none;
    transform: scale(0.97);
}

.share-btn {
    background: #e8dfd3;
    border: none;
    padding: 10px 22px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.85rem;
    color: #4a3727;
    cursor: pointer;
    transition: 0.2s;
}

.share-btn:hover {
    background: #ddd0c0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* BOX */
.desi-box {
    max-width: 800px;
    margin: 20px auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.desi-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.desi-image-wrap {
    width: 100%;
    overflow: hidden;
    border-bottom: 3px solid #222;
}

.desi-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.desi-img:hover {
    transform: scale(1.02);
}

.desi-content {
    padding: 28px 30px 32px;
    background: white;
}

.desi-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
    font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
}

.desi-desc {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 400;
    border-left: 4px solid #e63946;
    padding-left: 18px;
    font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
}

.desi-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 20px 0 12px 0;
    letter-spacing: -0.2px;
    font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
}

.last-line {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin: 16px 0 24px;
    padding: 16px 18px;
    background: #fafafa;
    border-radius: 8px;
    font-style: normal;
    border: 1px solid #eee;
    text-shadow: 0 1px 0 white;
    font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
}

.desi-meta {
    display: inline-block;
    background: #1a1a1a;
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    border: 1px solid #333;
    font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
}

.desi-btn {
    display: inline-block;
    background: bisque;
    color: #1a1a1a;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #f67280;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
}

.desi-btn:hover {
    background: #1a1a1a;
    color: white;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.15);
    transform: translate(-2px, -2px);
}

/* Mobile responsive */
@media (max-width: 600px) {
    .desi-content {
        padding: 20px 18px 24px;
    }
    
    .desi-title {
        font-size: 24px;
    }
    
    .desi-desc {
        font-size: 16px;
    }
    
    .last-line {
        font-size: 15px;
        padding: 14px 14px;
    }
    
    .desi-btn {
        padding: 12px 20px;
        font-size: 15px;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

    /* ============ HERO BOX ============ */
.hero-box {
  background: #f5efe0;
  background-image: linear-gradient(135deg, #f5efe0 0%, #ede0c8 100%);
  border: 2px solid #c4a882;
  border-radius: 16px;
  max-width: 800px;
  margin: 30px auto;
  padding: 35px 30px;
  box-shadow: 0 8px 30px rgba(139, 90, 43, 0.15);
  font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
}

.hero-content {
  text-align: center;
}

/* Title */
.hero-title {
  font-size: 32px;
  font-weight: 800;
  color: #4a3728;
  margin-bottom: 20px;
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.hero-title strong {
  color: #6aa121;
}

.hero-title text {
  color: #fdbd01;
}

/* Description */
.hero-desc {
  font-size: 17px;
  color: #5c4033;
  line-height: 1.8;
  margin-bottom: 10px;
}

.hero-desc strong {
  color: #6aa121;
}

/* Highlight Box */
.highlight-box {
  background: rgba(255, 255, 255, 0.6);
  border-left: 5px solid #52d017;
  border-radius: 8px;
  padding: 18px 22px;
  margin: 22px auto;
  max-width: 620px;
  text-align: center;
}

.highlight-box h3 {
  margin: 0 0 10px 0;
  color: #437c17;
  font-size: 20px;
}

.highlight-box p {
  color: #3e2723;
  line-height: 1.7;
  margin: 5px 0;
}

/* Warning Text */
.warning-text {
  font-size: 15px;
  color: #7f5539;
  font-weight: 600;
  line-height: 1.8;
  margin: 20px 0;
}

/* Testimonial Grid */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin: 25px 0;
}

.testi-card {
  background: #fffef9;
  border: 1px solid #d7c0a5;
  border-radius: 12px;
  padding: 20px;
  width: 240px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(139, 90, 43, 0.18);
  border-color: #b8956a;
}

.testi-card h4 {
  margin: 0 0 10px 0;
  color: #5d4037;
  font-size: 17px;
}

.testi-card p {
  color: #4e342e;
  line-height: 1.6;
  font-size: 14px;
  margin: 5px 0;
}

.testi-note {
  font-style: italic;
  font-size: 13px;
  color: #8d6e63;
  margin-top: 8px;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: #8b5e34;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  margin: 20px 0 15px 0;
  transition: all 0.3s ease;
  border: 2px solid #6d4321;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background: #6d4321;
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(109, 67, 33, 0.35);
}

/* Signature */
.signature {
  margin-top: 20px;
  font-size: 15px;
  color: #6d4c41;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.desi-image-wrap {
    width: 100%;
    overflow: hidden;
    border-bottom: 3px solid #222;
    border-radius: 10px;

    /* 🔥 Soft red glow */
    box-shadow: 
        0 0 25px rgba(255, 0, 0, 0.2),
        0 0 35px rgba(255, 0, 0, 0.15);
}

.desi-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
}

/* Hover effect */
.desi-img:hover {
    transform: scale(1.02);

    /* 🔥 Light + glow feel */
    filter: brightness(1.05);
}

/* 4) brand section */
.brand-section img {
    background: #fffaf3;
    transition: 0.2s;
}

/* ----- FOOTER (chiku tone footer) ----- */
.deepstar-sticky-footer {
    background: #e5d9cd;
    border-radius: 32px 32px 24px 24px;
    margin-top: 50px;
    padding: 16px 18px 12px 18px;
    border: 1px solid #d6c8b8;
}

.deepstar-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.deepstar-sticky-logo img {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    object-fit: cover;
    border: 2px solid #dbbc98;
}

.deepstar-sticky-text {
    flex: 1;
}

.deepstar-sticky-main {
    font-weight: 800;
    font-size: 1rem;
    display: block;
    color: #3d2c1c;
}

.deepstar-sticky-sub {
    font-size: 0.7rem;
    color: #7a6246;
}

.deepstar-sticky-btn {
    background: #c9712e;
    padding: 8px 18px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.deepstar-sticky-btn:hover {
    background: #b05f22;
    text-decoration: none;
}

.deepstar-copyright {
    font-size: 0.7rem;
    text-align: center;
    color: #7a6248;
    border-top: 1px solid #d4c4b0;
    padding-top: 14px;
    margin-top: 8px;
}

/* ----- responsive mobile tweaks ----- */
@media (max-width: 620px) {
    body {
        padding: 0 12px 70px 12px;
    }
    
    .article-list-card, .panchayat-card, .desi-card {
        padding: 18px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .deepstar-sticky-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .deepstar-sticky-text {
        text-align: center;
    }
    
    .share-btn, .read-btn {
        padding: 8px 16px;
        margin-bottom: 6px;
    }
}

/* ----- disclaimer & footer links (soft warm) ----- */
.disclaimer {
    font-size: 0.7rem;
    text-align: center;
    color: #8b714f;
}

footer a {
    color: #634f36;
}

footer a:hover {
    color: #c9712e;
}

/* ----- any extra card style ----- */
.card-extra {
    background: #fff9f2;
    border-radius: 28px;
    padding: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #e8d9ca;
}

/* ========================================
   IMAGE FIX FOR DESI PANCHAYAT & DESI SOCH
   ======================================== */

/* देशी पंचायत वाली इमेज का कंटेनर */
.article-list-card .image-container {
    max-width: 100%;
    margin-bottom: 15px;
    border-radius: 16px;
    overflow: hidden;
}

.article-list-card .box-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 250px; /* मोबाइल के लिए सही ऊंचाई */
}

/* देशी सोच वाली इमेज का कंटेनर */
.desi-box .desi-image-wrap {
    max-width: 100%;
    margin-bottom: 15px;
    border-radius: 16px;
    overflow: hidden;
}

.desi-box .desi-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 250px;
}

/* इमेज ओवरले अगर है तो उसे ठीक करो */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* डेस्कटॉप पर थोड़ी बड़ी इमेज */
@media (min-width: 768px) {
    .article-list-card .box-image,
    .desi-box .desi-img {
        max-height: 350px;
    }
}

/*DK BRAND LOGO - CLEAN SEPARATE CSS */

.dk-brand-logo-wrap {
    display: flex ;
    justify-content: center ;
    align-items: center ;
    text-align: center ;
    width: 100% ;
    margin: 10px auto ;
    padding: 0 ;
    float: none ;
    clear: both ;
}

.dk-brand-logo-img {
    width: 120px ;
    height: 120px ;
    max-width: 120px ;
    object-fit: cover ;
    border-radius: 50% ;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3) ;
    border: 3px solid #ff6a00 ;
    display: block ;
    margin: 0 auto ;
    float: none ;
    background: #fffaf3 ;
}