/* ===== Vayomi Wellness Blog — shared styles (v2, modern) ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #fdf6ee;
  --cream2:     #f8ede0;
  --orange:     #e8622a;
  --orange-dk:  #c94e1a;
  --orange-lt:  #f4845a;
  --amber:      #f0a500;
  --amber-lt:   #ffc94d;
  --orange-bg:  #fff3e0;
  --charcoal:   #1a1108;
  --text:       #2d1a0e;
  --muted:      #7a5c46;
  --light:      #f5ede2;
  --border:     #ecddd0;
  --white:      #ffffff;
  --r:          22px;
  --r-sm:       14px;
  --shadow:     0 4px 16px rgba(60, 30, 10, 0.07);
  --shadow-lg:  0 18px 46px rgba(40, 20, 8, 0.14);
}

html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  background:
    radial-gradient(1100px 480px at 92% -8%, rgba(240,165,0,0.10), transparent 60%),
    radial-gradient(900px 420px at -10% 10%, rgba(232,98,42,0.07), transparent 55%),
    var(--cream);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
::selection { background: var(--amber-lt); color: var(--charcoal); }

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dk); }

/* ── Top bar ── */
.blog-topbar {
  background: linear-gradient(90deg, var(--orange-dk), var(--orange) 55%, var(--amber));
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.blog-topbar a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

/* ── Header (sticky, glassy) ── */
.blog-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(253, 246, 238, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 16px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.blog-header .brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-header .brand img {
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid var(--amber-lt);
}
.blog-header .brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--charcoal);
}
.blog-header .brand-name span { color: var(--orange); }
.blog-header nav { display: flex; align-items: center; }
.blog-header nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  margin-left: 22px;
  position: relative;
}
.blog-header nav a:not(.book-btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0%; height: 2px;
  background: var(--orange);
  transition: width .2s ease;
}
.blog-header nav a:not(.book-btn):hover::after { width: 100%; }
.blog-header .book-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  margin-left: 22px;
  display: inline-block;
  transition: transform .15s, box-shadow .2s;
}
.blog-header .book-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(232,98,42,.35); color:#fff !important; }

/* ── Page wrap ── */
.blog-wrap { max-width: 880px; margin: 0 auto; padding: 56px 5% 90px; }

.blog-page-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.blog-page-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 44px;
}

/* ── Post list — modern card rows ── */
.blog-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.blog-list li { border: none; padding: 0; }

.blog-list a.post-link {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  flex-wrap: nowrap;
}
.blog-list a.post-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--amber-lt);
}

.blog-list .post-thumb {
  width: 92px;
  height: 92px;
  border-radius: var(--r-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange-lt), var(--amber));
}
.blog-list .post-thumb-fallback {
  width: 92px;
  height: 92px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange-lt), var(--amber));
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-list .post-thumb-fallback svg { width: 34px; height: 34px; color: #fff; opacity: .9; }

.blog-list .post-content { flex: 1; min-width: 0; }
.blog-list .post-date {
  color: var(--orange-dk);
  background: var(--orange-bg);
  display: inline-block;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.blog-list .post-title {
  color: var(--charcoal);
  font-weight: 700;
  font-size: 1.08rem;
  display: block;
  line-height: 1.35;
  margin-bottom: 4px;
}
.blog-list a.post-link:hover .post-title { color: var(--orange); }
.blog-list .post-excerpt {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-list .read-more {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange-dk);
  white-space: nowrap;
  flex-shrink: 0;
  display: none;
}

@media (min-width: 601px) {
  .blog-list .read-more { display: inline-flex; align-items: center; }
}

/* ── Single post page ── */
.post-meta {
  color: var(--orange-dk);
  background: var(--orange-bg);
  display: inline-block;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.post-h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4.2vw, 2.6rem);
  color: var(--charcoal);
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}
.post-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.42rem;
  color: var(--orange-dk);
  margin: 38px 0 14px;
  padding-top: 4px;
}
.post-body h3 { font-size: 1.1rem; color: var(--text); margin: 24px 0 8px; font-weight: 700; }
.post-body p { margin-bottom: 16px; color: var(--text); }
.post-body ul { padding-left: 4px; margin: 0 0 18px; list-style: none; }
.post-body li {
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}
.post-body li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--amber));
}
.post-body strong { color: var(--charcoal); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  font-weight: 600;
  font-size: 0.92rem;
}
.back-link::before { content: "←"; }

.post-hero-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--r);
  margin-bottom: 34px;
  display: block;
  box-shadow: var(--shadow-lg);
}

.post-body .faq-q {
  font-weight: 700;
  color: var(--charcoal);
  margin-top: 22px;
  margin-bottom: 6px;
}
.post-body .faq-a { color: var(--text); margin-bottom: 4px; }

.post-cta {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--orange-bg), var(--cream2));
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.post-cta p {
  color: var(--charcoal);
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 1.05rem;
}
.post-cta a.book-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: #fff;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
  transition: transform .15s ease, box-shadow .2s ease;
}
.post-cta a.book-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(232,98,42,.32); }

/* ── Footer ── */
.blog-footer {
  text-align: center;
  padding: 34px 5%;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
  background: var(--cream2);
}
.blog-footer a { font-weight: 600; }

@media (max-width: 600px) {
  .blog-header nav a:not(.book-btn) { display: none; }
  .blog-list a.post-link { align-items: flex-start; padding: 14px; gap: 14px; }
  .blog-list .post-thumb,
  .blog-list .post-thumb-fallback { width: 68px; height: 68px; }
  .blog-list .post-title { font-size: 1rem; }
}
