@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

/* ===== Base ===== */
body {

  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: #f5f0e8;
  color: #3b2b22;
}

/* ===== FEATURED LAYOUT ===== */
.featured-filters-wrapper {
  /* margin: 60px auto; */
  padding: 5% 4%;
  display: flex;
  gap: 40px;
}

/* ===== FILTER SECTION ===== */
.categories-vertical {
  border: none;
  padding: 0;
  background: transparent;
}

/* Heading */
.filter-heading {
  font-size: 34px;
    font-weight: 300;
    color: #232222;
    font-family: 'Poppins', sans-serif;
}

/* Divider line */
.filter-divider {
  position: relative;
  height: 1px;
  background: #cfcfcf; /* light grey line */
  margin-bottom: 20px;
}

.filter-divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;              /* dark part length */
  height: 1px;
  background: #2d1f14;      /* dark line under heading */
}

/* Filter buttons */
.categories-vertical .category-btn {
  background: transparent;
  border: none;
  padding: 10px 0;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #3b2b22;
  cursor: pointer;
}

/* Number styling */
.filter-index {
  font-family: 'Poppins', sans-serif;
  font-size: 44px;
    font-weight: 600;
    color: #b9b9b9;
  letter-spacing: 0.08em;
  min-width: 28px;
}

/* Hover & active states */
.categories-vertical .category-btn:hover,
.categories-vertical .category-btn.active {
  color: #661e29;
}

.categories-vertical .category-btn.active .filter-index {
  color: #661e29;
}


/* LEFT FEATURED BLOG */
.featured-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
}

.featured-category {
  margin-top: 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.featured-title {
  font-size: 32px;
  margin: 10px 0;
}

.featured-description {
  font-size: 15px;
  line-height: 1.7;
}

/* RIGHT FILTERS */
.featured-right {
  width: 260px;
}

.categories-vertical {
  margin-top: 0;
  flex-direction: column;
  align-items: stretch;
  position: sticky;
  top: 120px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .featured-filters-wrapper {
    flex-direction: column;
  }

  .featured-right {
    width: 100%;
  }

  .featured-image img {
    height: 260px;
  }
}

/* ===== Top Navigation Bar ===== */
.categories {
  /* margin-top: 100px; */
  display: flex;
  /* justify-content: center;   /* CENTER THE BUTTONS */
  /* align-items: center; */ 
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 4%;
  background: #f5f0e8;
  border-bottom: 1px solid #8b7355;
  /* position: relative; */
}

.category-btn {
  border: 1px solid #5a4a3a;
  background: #ffffff;
  padding: 10px 26px;        /* MORE PADDING AROUND TEXT */
  font-size: 14px;
  cursor: pointer;
  font-family: Georgia, serif;
  transition: background 0.2s;
  border-radius: 4px;        /* Optional for cleaner look */
}

.category-btn.active,
.category-btn:hover {
  background: #e8dcc8;
  color: #3b2b22;
}

/* ===== Language Selector BELOW BORDER ===== */
.language-selector {
  width: 100%;
  text-align: center;
  margin-top: 10px;  
          /* Space BELOW the categories bar */
}

.language-btn {
  border: 1px solid #5a4a3a;
  background: #ffffff;
  padding: 8px 18px;
  font-size: 13px;
  cursor: pointer;
  font-family: Georgia, serif;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.language-btn::after {
  content: '▼';
  font-size: 10px;
}

/* ===== Blog Container ===== */
.blog-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 4%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}


/* ===== Blog Card ===== */
.blog-card {
  display: flex;
  flex-direction: column;
  border: none;
  box-shadow: none;
  background: transparent;
}


/* .blog-card:nth-child(odd) {
  flex-direction: row;
  background: #DAAE8B;
}

.blog-card:nth-child(even) {
  flex-direction: row-reverse;
  background: #F1D9BD;
} */

/* ===== Blog Image ===== */
.blog-image {
  width: 100%;
  height: 220px;
  margin-bottom: 14px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.readmore-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;}


.readmore-btn {
  border:1px solid #2d2d2d;
  color: #2d2d2d;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 300;
}

.readmore-btn:hover {
  background-color: #661e29;
  transform: translateY(-2px);
  color: #ffffff;
}

.readmore-btn:active {
  transform: scale(0.97);
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ===== Blog Content ===== */
.blog-content {
  padding: 0;
  display: flex;
  flex-direction: column;
}


.blog-title a{
  font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #393939;
    text-decoration: none;
}


.blog-description {
  font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #292929;
  margin-bottom: 12px;
}


.blog-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #661e29;
  font-weight: 600;
  margin-bottom: 6px;
}


.blog-date {
  font-size: 12px;
  color: #3b2b22;
  font-style: italic;
  margin-top: 12px;
}

/* ===== Read More Button ===== */
.submit-btn {
  text-align: center;
  margin: 40px 0;
}

.submit-btn button {
  

  padding: 10px 32px;
  font-size: 14px;
  cursor: pointer;
  font-family: Georgia, serif;
  
}

/* .submit-btn button:hover {
  background: #862033;
  color: #ffffff;
} */

/* ===== No Blogs ===== */
.no-blogs {
  text-align: center;
  padding: 60px 20px;
  font-size: 16px;
  color: #6b5f52;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .blog-card,
  .blog-card:nth-child(odd),
  .blog-card:nth-child(even) {
    flex-direction: column !important;
  }

  .blog-image {
    width: 100%;
    max-height: 200px;
  }

  .blog-content {
    padding: 18px 20px;
  }

  .blog-title {
    font-size: 19px;
  }

  .blog-description {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
    .featured-filters-wrapper{
        padding: 100px 15px;
    }
  .category-btn {
    padding: 8px 14px;
    font-size: 12px;
  }

  .blog-container {
    gap: 20px;
  }

  .blog-title {
    font-size: 17px;
  }
}

.read-more-btn {
  margin-top: auto;
  background: none;
  color: #661e29;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.read-more-btn:hover {
  background: none;
  transform: translateX(4px);
}


.read-more-btn .arrow {
    font-size: 16px;
    transition: transform 0.25s ease;
}

.read-more-btn:hover .arrow {
    transform: translateX(4px);
}

@media (max-width: 992px) {
  .blog-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .blog-container {
    grid-template-columns: 1fr;
  }

  .blog-image {
    height: 200px;
  }
}
.google-translate-wrapper {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #d6d6d6;
}

.goog-te-combo {
  width: 100%;
  padding: 6px 8px;
  font-family: Georgia, serif;
}
