/* -----------------------------------------------------------------
   Dheshop International — Blog Style (Modern • Elegant • Branded)
   - Clean typography
   - Soft gradient header
   - Polished card borders for blog summaries
   - Subtle animations and hover lift
   - Accessible color contrast
------------------------------------------------------------------ */
/* ===== Blog Top Navigation ===== */
.blog-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.blog-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.blog-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  color: #0f172a;
}

.blog-brand img {
  height: 34px;
  width: auto;
}

.blog-menu a {
  margin-left: 18px;
  text-decoration: none;
  font-weight: 600;
  color: #0f6b66;
  position: relative;
}

.blog-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #0f6b66;
  transition: width .2s ease;
}

.blog-menu a:hover::after {
  width: 100%;
}

/* ====== Base / Reset ====== */
* { box-sizing: border-box; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }
html,body { height:100%; }
body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #0f172a;              /* deep slate */
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 60%);
  line-height: 1.65;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

/* ====== Utilities ====== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ====== Header ====== */
.blog-header {
  text-align: center;
  padding: 56px 18px;
  background: linear-gradient(135deg, #0f172a 0%, #134e4a 100%);
  color: #ffffff;
  border-bottom: 4px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 30px rgba(12,18,28,0.12);
  position: relative;
  overflow: hidden;
}

/* subtle decorative diagonal accent */
.blog-header::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.03), transparent 40%),
              linear-gradient(135deg, rgba(255,255,255,0.02), transparent 60%);
  transform: rotate(12deg);
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.9;
}

/* logo */
.blog-header img {
  width: 84px;
  height: auto;
  border-radius: 12px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.04);
  padding: 6px;
  animation: floatLogo 5s ease-in-out infinite;
}

@keyframes floatLogo {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.blog-header h1 {
  margin: 8px 0 4px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #ffffff;
}

.blog-header p {
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
}

/* ====== Blog list container ====== */
.blog-list-container {
  padding: 42px 0 72px;
  animation: contentFade 0.9s ease both;
}

@keyframes contentFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====== Grid ====== */
.blog-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* ====== Blog Card (summary) ====== */
.blog-card {
  display: block;
  background: #fff;
  border-radius: 14px;
  overflow: visible;
  text-decoration: none;
  color: inherit;
  transition: transform .28s cubic-bezier(.22,.9,.25,1), box-shadow .28s ease, border-color .28s ease;
  position: relative;
  padding: 0;
  /* high-quality border with inner highlight */
  border: 1px solid rgba(20,38,51,0.06);
  box-shadow: 0 6px 18px rgba(12,20,30,0.04);
}

/* decorative left accent bar */
.blog-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 6px;
  border-radius: 6px;
  background: linear-gradient(180deg,#d79a3f, #0f6b66); /* gold -> teal accent */
  transform-origin: center;
  opacity: 0.95;
}

/* hover state */
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(8,16,28,0.12);
  border-color: rgba(20,38,51,0.12);
}

/* card content area (no featured image) */
.blog-card-content {
  padding: 22px 22px 26px 28px; /* extra left space to accommodate accent */
}

/* tag / category */
.tag {
  display: inline-block;
  font-weight: 600;
  font-size: 12px;
  color: #113b46;
  background: linear-gradient(180deg,#f1f6fb,#eef6f4);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  border: 1px solid rgba(16,32,36,0.04);
}

/* title */
.blog-card h3 {
  margin: 6px 0 10px;
  font-size: 20px;
  line-height: 1.25;
  color: #0f172a;
  font-weight: 700;
}

/* excerpt */
.blog-card p {
  margin: 0 0 16px;
  color: #475569;
  font-size: 15px;
}

/* read-more CTA */
.read-more {
  display: inline-block;
  font-weight: 700;
  color: #0f6b66;
  background: linear-gradient(90deg, rgba(15,107,102,0.06), rgba(215,154,63,0.03));
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,107,102,0.08);
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}

.blog-card:hover .read-more {
  transform: translateY(-2px);
  background: linear-gradient(90deg, rgba(15,107,102,0.12), rgba(215,154,63,0.06));
}

/* ====== Post content (single article) ====== */
.post-content {
  margin: 22px 0 30px;
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid rgba(14,22,34,0.04);
  box-shadow: 0 10px 26px rgba(8,16,28,0.04);
}

/* post headings and meta */
.post-content h1, .post-content h2 {
  color: #072029;
  margin-top: 0;
}

.post-meta {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 16px;
}

/* paragraph spacing */
.post-content p {
  color: #24303a;
  font-size: 16px;
  margin: 0 0 16px;
  line-height: 1.8;
}

/* lists */
.post-content ul, .post-content ol {
  margin: 0 0 16px 20px;
  color: #394b57;
}

/* blockquote */
.post-content blockquote {
  margin: 18px 0;
  padding: 14px 18px;
  background: linear-gradient(90deg, #f7fbff, #f9fff8);
  border-left: 4px solid rgba(15,107,102,0.12);
  color: #0f172a;
  border-radius: 8px;
  font-style: italic;
}

/* links */
.post-content a {
  color: #0f6b66;
  text-decoration: underline;
}

/* code blocks */
pre, code {
  background: #0f172a0f;
  padding: 6px 8px;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", monospace;
  font-size: 13px;
}

/* ====== Footer ====== */
.blog-footer {
  background: linear-gradient(135deg, #0f172a, #134e4a);
  color: #fff;
  padding: 28px 18px;
  text-align: center;
  margin-top: 48px;
  font-size: 14px;
}

/* ====== Responsive tweaks ====== */
@media (max-width: 880px) {
  .blog-header { padding: 42px 12px; }
  .blog-header h1 { font-size: 26px; }
  .blog-grid { gap: 18px; }
  .blog-card-content { padding: 18px 18px 22px 24px; }
}

@media (max-width: 520px) {
  .blog-card h3 { font-size: 18px; }
  .post-content { padding: 20px; }
  .container { padding: 0 14px; }
}
.section-feature-image {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  margin: 1.2rem auto 1.8rem;
  border-radius: 16px;
}


.image-caption {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .section-feature-image {
    max-width: 92vw;
    border-radius: 12px;
  }
}

.blog-nav {
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.nav-logo {
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
}

.home-btn {
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg,#0f6b66,#d79a3f);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
}

.home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.blog-topbar {
  backdrop-filter: saturate(180%) blur(6px);
}

.blog-menu a {
  padding: 6px 4px;
}

.blog-menu a:hover {
  color: #0b5e59;
}
