.Blog-title{
    color: var(--subheading-color);
   font-family: var(--font-family-primary);


}
.blog-count{
    border: 2px solid var(--border-color);
    width: 50px;
    height: 50px;
    color: var(--primary-color1);
}
.blog-inner-heading{
    color: var(--primary-color1);

    font-family: var(--font-family-primary);
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;


}
.blog-desc{
    color: var(--tertiary-color1);
    font-size: 16px;
    line-height: 29px;
    font-family: var(--font-family-primary);
    font-weight: 300;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

/* Blog Cards Container - Equal Height */
.blog-cards-container {
    display: flex;
    flex-wrap: wrap;
}

.blog-cards-container > div {
    display: flex;
}

.blog-card-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-wrapper .border-start {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .blog-cards-container > div {
        margin-bottom: 30px;
    }
    
    .blog-desc {
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 767px) {
    .blog-cards-container > div {
        margin-bottom: 25px;
    }
    
    .blog-desc {
        font-size: 14px;
        line-height: 24px;
        -webkit-line-clamp: 3;
    }
    
    .blog-inner-heading {
        font-size: 16px;
        line-height: 24px;
    }
}
.blog-readmore{
    text-decoration: none;
    cursor: pointer;
    color: var(--secondary-color1);
    fill: var(--secondary-color1);
    font-size: 14px;
}
.blog-readmore:hover {
    color: var(--primary-color1); /* Darker shade on hover */
 fill: var(--primary-color1);
  }

  /* Static hero banner (replaces carousel) */
  .hero-banner-static {
    height: 100vh;
    min-height: 320px;
    background-color: #1a1a1a; /* fallback while image loads */
  }

  .hero-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    /* ~25% brighter + richer food color; avoid washout */
    filter: brightness(1.58) saturate(1.22) contrast(1.08);
    -webkit-filter: brightness(1.58) saturate(1.22) contrast(1.08);
  }

  /*
   * Lighter, localized scrim: keep the plate/food vibrant while
   * preserving contrast only where hero copy sits (center).
   */
  .hero-banner-static::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      radial-gradient(
        ellipse 70% 55% at 50% 48%,
        rgba(0, 0, 0, 0.28) 0%,
        rgba(0, 0, 0, 0.12) 45%,
        rgba(0, 0, 0, 0.04) 75%,
        rgba(0, 0, 0, 0.02) 100%
      );
  }

  .hero-text-overlay {
    position: relative;
    z-index: 2;
  }

  .bannerhometext {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-banner-static .mainheadingStyle,
  .hero-banner-static .carousel-txt {
    text-shadow:
      0 1px 2px rgba(0, 0, 0, 0.55),
      0 2px 18px rgba(0, 0, 0, 0.45);
  }

  .hero-banner-static .carousel-txt {
    color: #fff;
  }

  .hero-banner-static .button-fill {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  }

  @media (max-width: 991.98px) {
    .hero-banner-image {
      filter: brightness(1.52) saturate(1.2) contrast(1.07);
      -webkit-filter: brightness(1.52) saturate(1.2) contrast(1.07);
    }

    .hero-banner-static::before {
      background:
        radial-gradient(
          ellipse 85% 60% at 50% 50%,
          rgba(0, 0, 0, 0.3) 0%,
          rgba(0, 0, 0, 0.14) 50%,
          rgba(0, 0, 0, 0.05) 100%
        );
    }
  }

  @media (max-width: 554px) {
    .hero-banner-static {
      min-height: 280px;
    }

    .hero-banner-image {
      /* Slightly less lift on small screens so text stays crisp */
      filter: brightness(1.48) saturate(1.18) contrast(1.06);
      -webkit-filter: brightness(1.48) saturate(1.18) contrast(1.06);
      object-position: center center;
    }

    .bannerhometext {
      position: absolute;
      top: 60%;
      left: 20%;
      transform: translate(-14%, -50%);
    }
  }

  /* Home page section spacing */
  .home-tasting-notes {
    padding-top: 0;
    padding-bottom: 3rem;
  }

  .home-testimonials {
    padding-top: 2.5rem;
    margin-top: 0;
    /* Offset sticky site header when landing via #testimonials */
    scroll-margin-top: 6.5rem;
  }

  @media (max-width: 767.98px) {
    .home-tasting-notes {
      padding-bottom: 2rem;
    }

    .home-testimonials {
      padding-top: 2rem;
    }
  }
