.share-btn {
   width: 55px;
   height: 55px;
   border-radius: 50%;
   border: none;
   font-size: 22px;
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: 0.3s;
}
.share-btn:hover { transform: scale(1.1); }

.whatsapp { background: #25D366; }
.facebook { background: #1877F2; }
.twitter  { background: #000; }
.copy     { background: #1DB954; }
/* Rhema Video Hero */
.rhema-video-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  /*background-image: url('https://images.unsplash.com/photo-1438032005730-c779502df39b?w=1920&q=80');*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /*color: #fff;*/
  background: #faf8f4;;
  overflow: hidden;
}

.rhema-hero-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.55) 50%,
      rgba(0, 0, 0, 0.75) 100%
  );*/
  z-index: 0;
}

.rhema-video-hero .hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 1px;
  margin: 10px 0 20px;
  text-transform: uppercase;
  /*color: #fff;*/
}

.rhema-video-hero .hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 35px;
  opacity: 0.9;
  /*color: #fff;*/
}

.rhema-filter-tabs {
  display: inline-flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 6px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.filter-tab {
  border: none;
  background: transparent;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab.active {
  background: var(--primary-color, #2d6a3e);
  color: #fff;
}

.filter-tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 576px) {
  .rhema-video-hero {
      padding: 120px 0 60px;
  }
  .filter-tab {
      padding: 8px 20px;
      font-size: 0.85rem;
  }
}