:root {
  --primary: #d98b1f;
  --primary-dark: #9d4c1f;
  --secondary: #5a2e1d;
  --light: #f8f5f1;
  --text: #4b3a33;
  --border: #ece2d7; 
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #fbf8f5;
  color: var(--text);
  overflow-x: hidden;
  font-size: 14px;
}
a {
  text-decoration: none;
}
/* =========================
       HEADER
    ========================== */
.main-header {
  background: #fff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-box {
  width: 62px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.logo-box img {
  max-width: 100%;
  border-radius: 13px;
}
.brand-text{ padding: 0px 15px;}
.brand-text h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #7a241d;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.brand-text h4 > a{color:inherit;}
.brand-text span {
  font-size: 12px;
  color: #8b7d75;
  letter-spacing: 1px;
}
.navbar-nav .nav-link {
  color: #6d5b52;
  font-weight: 600;
  margin: 0 10px;
  position: relative;
  transition: 0.3s;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: var(--primary);
}
.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--primary);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.phone {
  color: #7c6c62;
  font-weight: 500;
  font-size: 15px;
}
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f5f0ea;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a5244;
  transition: 0.3s;
}
.icon-btn:hover {
  background: var(--primary);
  color: #fff;
}
.login-btn {
  background: linear-gradient(135deg, #f0a120, #c87013);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(216, 140, 31, 0.3);
}
.login-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #c87013, #f0a120);
}
/* =========================
       HERO
    ========================== */
.hero-section {
  position: relative;
  background: linear-gradient(90deg, #7a1f1f 0%, #5d2e1c 50%, #7a4a1d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 340px;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 2px, transparent 2px), radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.06) 2px, transparent 2px), radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.05) 2px, transparent 2px);
  background-size: 200px 200px;
  animation: moveBg 20s linear infinite;
}
@keyframes moveBg {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-200px);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 40px 20px;
}
.hero-content h1 {
  font-size: 52px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content h1 span {
  color: #f1b12b;
}
.hero-content p {
  font-size: 16px;
  color: #f2dfd4;
  line-height: 1.8;
}
/* =========================
       FILTER SECTION
    ========================== */
.filter-section {
  padding: 55px 0 30px;
  background: #faf7f4;
}
.search-wrapper {
  margin-bottom: 30px;
}
.search-box {
}
.search-box input {
  width: 100%;
  height: 62px;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 0 20px 0 58px;
  font-size: 16px;
  outline: none;
  background: #fff;
  transition: 0.3s;
}
.search-box input.submit{ padding: 15px; font-weight: 500;}
.search-box input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(217, 139, 31, 0.1);
}
.search-box i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #8b7d75;
  font-size: 18px;
}
.location-select {
  width: 220px;
}
.location-select select {
  width: 100%;
  height: 62px;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 0 18px;
  outline: none;
  background: #fff;
  color: #5d4c43;
  font-weight: 500;
}
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  padding: 0px;
}
.category-list > li > a{color:inherit;}
.category-btn {
  border: none;
  background: #efe5d9;
  color: #654e41;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 500;
  transition: 0.3s;
}
.category-btn.active, .category-btn:hover {
  background: linear-gradient(135deg, #f1a01d, #d57d17);
  color: #fff;
}
/* =========================
       EMPTY STATE
    ========================== */
.empty-state {
  text-align: center;
  padding: 120px 20px;
}
.empty-icon {
  width: 110px;
  height: 110px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff1dd, #ffe2bc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.empty-state h3 {
  font-size: 48px;
  font-family: 'Playfair Display', serif;
  color: #7a5c4c;
  margin-bottom: 15px;
}
.empty-state p {
  color: #8c7a70;
  font-size: 18px;
}
/* =========================
   BLOG SECTION CSS
========================== */
.blog-section {
  background: #faf7f4;
  padding-bottom: 90px;
}
.blog-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.4s;
  height: 100%;
  border: 1px solid #efe5da;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}
.blog-image {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.blog-card:hover .blog-image img {
  transform: scale(1.08);
}
.blog-category {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, #f0a120, #cb7315);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.blog-content {
  padding: 28px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.blog-meta span {
  color: #8b7b70;
  font-size: 14px;
}
.blog-meta i {
  color: #d98b1f;
  margin-right: 6px;
}
.blog-content h3 {
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #5b382b;
  font-family: 'Playfair Display', serif;
}
.blog-content p {
  color: #7d6c61;
  line-height: 1.9;
  margin-bottom: 24px;
}
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d98b1f;
  font-weight: 600;
  transition: 0.3s;
  background-color: #f9efdf;
  padding: 8px 20px;
  border-radius: 25px;
}
.read-more-btn i {
  transition: 0.3s;
}
.read-more-btn:hover {
  color: #9d4c1f;
}
.read-more-btn:hover i {
  transform: translateX(5px);
}
@media(max-width:767px) {
  .blog-image {
    height: 220px;
  }
  .blog-content {
    padding: 22px;
  }
  .blog-content h3 {
    font-size: 22px;
  }
}
/* =========================
       HERO BANNER
    ========================== */
.blog-banner {
  position: relative;
  height: 410px;
  overflow: hidden;
}
.blog-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.75));
}
.blog-banner-content {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  color: #fff;
  z-index: 2;
}
.blog-banner .blog-category {
  display: inline-block;
  background: linear-gradient(135deg, #f0a120, #cb7315);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
}
.blog-banner .blog-banner-content h1 {
  font-size: 62px;
  line-height: 1.2;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}
.blog-banner .blog-meta {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.blog-banner .blog-meta span {
  color: #f1e5dd;
}
.blog-banner .blog-meta span i {
  color: #f0a120;
  margin-right: 8px;
}
/* =========================
       BLOG DETAILS
    ========================== */
.blog-details {
  padding: 80px 0;
}
.blog-main {
  background: #fff;
  border-radius: 28px;
  padding: 45px;
  border: 1px solid var(--border);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}
.blog-main p {
  font-size: 17px;
  line-height: 2;
  color: #6f5b51;
  margin-bottom: 24px;
}
.blog-main h2 {
  font-size: 38px;
  margin-top: 45px;
  margin-bottom: 20px;
  color: #5b2a17;
  font-family: 'Playfair Display', serif;
}
.blog-main h3 {
  font-size: 30px;
  margin-top: 35px;
  margin-bottom: 18px;
  color: #6a3921;
  font-family: 'Playfair Display', serif;
}
.content-image {
  margin: 35px 0;
  border-radius: 24px;
  overflow: hidden;
}
.content-image img {
  width: 100%;
  border-radius: 24px;
}
.quote-box {
  background: #fff6ea;
  border-left: 5px solid var(--primary);
  padding: 30px;
  border-radius: 18px;
  margin: 35px 0;
  font-size: 20px;
  line-height: 1.8;
  color: #7a4b2c;
  font-style: italic;
}
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.blog-tags a {
  background: #f5eadf;
  color: #6d4d3b;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 500;
}
.blog-tags a:hover {
  background: var(--primary);
  color: #fff;
}
/* =========================
       SIDEBAR
    ========================== */
.sidebar-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid var(--border);
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.sidebar-title {
  font-size: 28px;
  margin-bottom: 28px;
  color: #5b2a17;
  font-family: 'Playfair Display', serif;
}
.search-box {
  position: relative;
}
.search-box > form {display:flex;gap: 20px;}
.search-box > form > .field{width: 450%;}
.search-box > form .assistive-text{display: none;}
.search-box input {
  width: 100%;
  height: 58px;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 0 20px 0 52px;
  outline: none;
}
.search-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #8d7b72;
}
.recent-post {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: center;
}
.recent-post:last-child {
  margin-bottom: 0;
}
.recent-post img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 16px;
}
.recent-post h6 {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #5a3727; font-weight: 500;
}
.recent-post h6 > a{color: #5a3727;}
.recent-post span {
  color: #9b8577;
  font-size: 13px;
}
.category-list_2 {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-list_2 li {
  margin-bottom: 14px;
}
.category-list_2 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #faf5ef;
  padding: 14px 18px;
  border-radius: 14px;
  color: #654739;
  transition: 0.3s;
}
.category-list_2 a:hover {
  background: var(--primary);
  color: #fff;
}
/* =========================
       SHARE SECTION
    ========================== */
.share-section {
  margin-top: 45px;
  padding-top: 35px;
  border-top: 1px solid #eee3d9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.share-icons {
  display: flex;
  gap: 12px;
}
.share-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f5eadf;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6d4d3b;
  transition: 0.3s;
}
.share-icons a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
/* =========================
       RELATED BLOGS
    ========================== */
.related-blogs {
  padding-bottom: 60px;
  background-color: rgba(255, 255, 255, 0.46);
  padding-top: 40px;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 42px;
  color: #5b2a17;
  font-family: 'Playfair Display', serif;
}
.related-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: 0.4s;
  height: 100%;
}
.related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.related-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.related-content {
  padding: 24px;
}
.related-content h4 {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 14px;
  color: #5a3727;
  font-family: 'Playfair Display', serif;
}
.related-content p {
  color: #7d6c61;
  line-height: 1.8;
  margin-bottom: 18px;
}
.read-btn {
  color: var(--primary);
  font-weight: 600;
}
/* =========================
       FOOTER
    ========================== */
.footer {
  background: linear-gradient(90deg, #543424, #6b331c, #543424);
  color: #fff;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
  opacity: 0.15;
}
.footer .container {
  position: relative;
  z-index: 2;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.footer-logo .logo-box {
  width: 56px;
  height: 56px;
}
.footer-logo h4 {
  font-family: 'Playfair Display', serif;
  margin: 0;
  font-size: 34px;
}
.footer p {
  color: #e6d2c7;
  line-height: 1.9;
}
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 25px;
}
.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.social-icons a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}
.footer h5 {
  font-size: 24px;
  margin-bottom: 28px;
  font-family: 'Playfair Display', serif;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 16px;
}
.footer-links a {
  color: #e9d7cc;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #f1b12b;
  padding-left: 5px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
  color: #ead7cb;
}
.contact-item i {
  color: #f1b12b;
  margin-top: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding: 24px 0;
}
.footer-bottom p {
  margin: 0;
  font-size: 14px;
}
.footer-policy {
  display: flex;
  justify-content: end;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-policy a {
  color: #e9d7cc;
  font-size: 14px;
}
/* =========================
       RESPONSIVE
    ========================== */
@media(max-width:991px) {
  .navbar-collapse {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    margin-top: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }
  .header-right {
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .hero-content h1 {
    font-size: 52px;
  }
  .hero-content p {
    font-size: 18px;
  }
}
@media(max-width:767px) {
  .hero-section {
    min-height: 340px;
  }
  .hero-content h1 {
    font-size: 40px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .search-wrapper {
    flex-direction: column;
  }
  .location-select {
    width: 100%;
  }
  .empty-state {
    padding: 90px 15px;
  }
  .empty-state h3 {
    font-size: 36px;
  }
  .footer-policy {
    justify-content: flex-start;
    margin-top: 15px;
  }
  .brand-text h4 {
    font-size: 24px;
  }
}
.recent-posts-custom{ list-style: none; padding: 0px; margin: 0px;}



