/* home.css - Homepage specific styles for Bameka online */

/* =============================================
   NAV LOGO ADJUSTMENTS
   ============================================= */
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: block;
}
.nav-logo-sub {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: block;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang-sep {
  color: rgba(255, 255, 255,0.3);
}
.nav-link.active {
  color: var(--blue-400);
}
.nav-link.active::after {
  width: 100%;
}

/* =============================================
   HERO SECTION  VIDEO BACKGROUND
   ============================================= */
.hero-section {
  position: relative;
  min-height: 75vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #050B14;
}

/* Video fill */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  transform: scaleX(-1);
}

/* Dark gradient overlay on video */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 11, 20, 0.9) 0%, rgba(5, 11, 20, 0.6) 50%, rgba(5, 11, 20, 0.2) 100%),
    radial-gradient(circle at 75% 40%, rgba(255, 220, 150, 0.15), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 35%, transparent 75%, rgba(0,0,0,0.6) 100%);
}

/* Logo badge  top-left overlay on video */
.hero-logo-badge {
  position: absolute;
  top: 100px;
  left: 2rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(5, 11, 20,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(59, 130, 246,0.35);
  border-radius: 14px;
  padding: 0.65rem 1.1rem 0.65rem 0.65rem;
}

.hero-badge-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue-500);
}

.hero-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.hero-badge-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--blue-400);
  letter-spacing: 0.04em;
}

.hero-badge-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255,0.75);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 2rem;
  padding-top: 80px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
  min-height: 75vh;
  width: 100%;
}

.hero-content {
  padding-bottom: 4rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 1rem;
}

.hero-title-top {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-title-main {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-300) 0%, var(--blue-500) 50%, #EF4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
  filter: drop-shadow(0 4px 12px rgba(59, 130, 246,0.3));
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255,0.9);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.hero-rule {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-400), transparent);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.hero-desc {
  color: rgba(255, 255, 255,0.75);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  min-height: 500px;
}

.hero-king-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(-20px 0 60px rgba(0,0,0,0.7));
  position: relative;
  z-index: 3;
  transform-origin: bottom center;
  transform: scale(1.15);
}

/* Mobile hero */
@media (max-width: 900px) {
  .hero-logo-badge {
    top: 90px;
    left: 1rem;
    padding: 0.5rem 0.9rem 0.5rem 0.5rem;
  }
  .hero-badge-img { width: 40px; height: 40px; }
  .hero-badge-name { font-size: 0.8rem; }
  .hero-badge-sub { font-size: 0.65rem; }
  .hero-inner {
    grid-template-columns: 1fr;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 0;
    min-height: auto;
  }
  .hero-content {
    order: 1;
    text-align: center;
    padding-bottom: 2rem;
  }
  .hero-rule { margin: 0 auto 1.5rem; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-image-wrap {
    order: 2;
    margin-top: 1rem;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .hero-king-img {
    max-height: 450px;
    object-fit: contain;
    width: 100%;
    object-position: bottom;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 2rem;
  padding-top: 100px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
  min-height: 100vh;
  width: 100%;
}

.hero-content {
  padding-bottom: 4rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 1rem;
}

.hero-title-top {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-title-main {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-300) 0%, var(--blue-500) 50%, #EF4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
  filter: drop-shadow(0 4px 12px rgba(59, 130, 246,0.3));
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255,0.85);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.hero-rule {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-400), transparent);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.hero-desc {
  color: rgba(255, 255, 255,0.65);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  min-height: 500px;
}

.hero-king-img {
  width: 100%;
  max-width: 680px;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(-20px 0 40px rgba(0,0,0,0.6));
}

/* Mobile hero */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 0;
    min-height: auto;
  }
  .hero-content {
    order: 1;
    text-align: center;
    padding-bottom: 2rem;
  }
  .hero-rule { margin: 0 auto 1.5rem; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-image-wrap {
    order: 2;
    margin-top: 1rem;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .hero-king-img {
    max-height: 450px;
    object-fit: contain;
    width: 100%;
    object-position: bottom;
  }
}

/* =============================================
   MEDIA + MESSAGE STRIP � WHITE PREMIUM
   ============================================= */
.media-strip {
  background: #FFFFFF;
  padding: 0;
  box-shadow: 0 -1px 0 rgba(0,0,0,0.06);
}

.media-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.media-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.media-card--tv {
  background: linear-gradient(135deg, #3B0808 0%, #1a0505 100%);
  color: var(--white);
}

.media-card--radio {
  background: linear-gradient(135deg, #0A1A35 0%, #050d1a 100%);
  color: var(--white);
}

.media-card--message {
  background: #FFFFFF;
  color: #1a1a1a;
  border-left: 4px solid var(--blue-500);
}

.media-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.media-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.media-card--tv .media-card-icon {
  background: rgba(59, 130, 246,0.15);
  color: var(--blue-400);
}
.media-card--radio .media-card-icon {
  background: rgba(100,150,255,0.15);
  color: #7DB3FF;
}

.media-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  margin: 0;
  font-weight: 600;
}

.media-card-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--blue-400);
  margin: 0;
  line-height: 1;
}
.media-card--radio .media-card-title { color: #7DB3FF; }

.media-card-sub {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-300);
  margin: 0;
}
.media-card--radio .media-card-sub { color: #7DB3FF; }

.media-card-desc {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

.media-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
  cursor: pointer;
  border: none;
}
.media-btn--red {
  background: var(--red-400);
  color: #fff;
  box-shadow: 0 4px 12px rgba(239, 68, 68,0.4);
}
.media-btn--red:hover {
  background: var(--red-300);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(239, 68, 68,0.5);
}
.media-btn--blue {
  background: #1A5CB0;
  color: #fff;
  box-shadow: 0 4px 12px rgba(26,92,176,0.4);
}
.media-btn--blue:hover {
  background: #2470cc;
  transform: translateY(-2px);
}
.media-btn--blue {
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  color: #050B14;
  box-shadow: 0 4px 12px rgba(59, 130, 246,0.3);
  font-weight: 800;
}
.media-btn--blue:hover {
  background: linear-gradient(135deg, var(--blue-300), var(--blue-500));
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(59, 130, 246,0.4);
}

/* Message card */
.message-quote {
  font-size: 4rem;
  line-height: 0.7;
  color: var(--blue-500);
  font-family: Georgia, serif;
  margin-bottom: 0.25rem;
  opacity: 0.35;
}
.message-from {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
  margin: 0;
}
.message-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue-600);
  margin: 0.25rem 0 0.75rem;
}
.message-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #555;
  flex: 1;
  margin: 0 0 0.5rem;
}
.message-sig {
  font-size: 0.8rem;
  font-weight: 700;
  color: #666;
  margin: 0 0 0.75rem;
}

@media (max-width: 900px) {
  .media-strip-grid {
    grid-template-columns: 1fr;
  }
  .media-card--message {
    border-left: none;
    border-top: 4px solid var(--blue-500);
  }
}

/* =============================================
   CATEGORY SECTION � WHITE PREMIUM
   ============================================= */
.category-section {
  padding: 4rem 0;
  background: #F8F7F4;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  padding: 0 2rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #050B14;
  background: #FFFFFF;
  border: 1px solid rgba(59, 130, 246,0.15);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.category-card:hover {
  border-color: rgba(59, 130, 246,0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.category-img-wrap {
  position: relative;
  height: 140px;
  overflow: hidden;
}
.category-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover .category-img-wrap img { transform: scale(1.08); }

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23,0.6) 0%, rgba(0,0,0,0.05) 100%);
}

.category-icon {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(2, 6, 23,0.85);
  border: 2px solid var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  transition: all 0.3s ease;
}
.category-card:hover .category-icon {
  background: var(--blue-500);
  color: #fff;
}

.category-name {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--blue-600);
  padding: 0.75rem 0.75rem 0.25rem;
  line-height: 1.3;
}
.category-sub {
  font-size: 0.72rem;
  color: #777;
  padding: 0 0.75rem 0.4rem;
  line-height: 1.4;
  flex: 1;
}
.category-link {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue-500);
  padding: 0.4rem 0.75rem 0.75rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.category-card:hover .category-link { color: var(--blue-400); }

@media (max-width: 1100px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   BOTTOM STRIP: Stats + Countdown + News � WHITE
   ============================================= */
.bottom-strip {
  background: #FFFFFF;
  padding: 4.5rem 0;
  border-top: 1px solid #EDEAE4;
}

.bottom-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: 0 2rem;
}

/* Stats */
.stats-block {
  background: rgba(5, 11, 20, 0.85);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.stats-heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #FBBF24;
  text-align: center;
  margin-bottom: 0.75rem;
}
.stats-rule {
  width: 40px;
  height: 2px;
  background: rgba(251, 191, 36, 0.5);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}
.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FBBF24;
  margin-bottom: 0.2rem;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FBBF24;
}
.stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Countdown */
.countdown-block {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.9) 50%, rgba(2, 6, 23, 0.95) 100%);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--white);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.25);
}
.countdown-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FBBF24;
  margin-bottom: 0.4rem;
}
.countdown-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.75rem;
}
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.countdown-box {
  width: 65px;
  height: 65px;
  border-radius: 12px;
  background: rgba(2, 6, 23, 0.7);
  border: 1.5px solid rgba(251, 191, 36, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.15);
}
.countdown-number {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #FBBF24;
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.4);
}
.countdown-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

/* Gallery Slideshow */
.gallery-slideshow-block {
  background: rgba(5, 11, 20, 0.85);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(251, 191, 36, 0.15);
}
.news-heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #FBBF24;
}
.news-viewall {
  font-size: 0.72rem;
  color: var(--blue-400);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.news-viewall:hover { color: var(--blue-300); }

/* Slideshow Container */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: none;
}
.slide.active {
  display: block;
  opacity: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: #fff;
  padding: 1.5rem 1rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

/* Next & previous buttons */
.slide-prev, .slide-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  color: white;
  font-weight: bold;
  font-size: 14px;
  transition: 0.3s ease;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  user-select: none;
}
.slide-next { right: 8px; }
.slide-prev { left: 8px; }
.slide-prev:hover, .slide-next:hover { background: rgba(0,0,0,0.8); }

/* The dots/bullets/indicators */
.slide-dots {
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  text-align: center;
}
.dot {
  cursor: pointer;
  height: 6px;
  width: 6px;
  margin: 0 3px;
  background-color: rgba(255,255,255,0.4);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.dot.active, .dot:hover { background-color: #FBBF24; }

@media (max-width: 1000px) {
  .bottom-strip-grid { grid-template-columns: 1fr; }
}





