﻿/* Njeneka Agencies - Global Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #15803d;
  --primary-dark: #0f4c28;
  --accent-gold: #f59e0b;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', sans-serif;
}

/* Hero Background Gradients */
.hero-gradient {
  background: linear-gradient(135deg, #052e16 0%, #0f4c28 50%, #15803d 100%);
}

.card-hover-effect {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover-effect:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Badge Pulse Animation */
.badge-pulse {
  animation: pulse-dot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.15); }
}

/* Toast Container */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 360px;
}

.toast {
  background: #ffffff;
  border-left: 4px solid #16a34a;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f1f5f9;
  border-right: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  animation: slideIn 0.3s ease-out;
}

.toast-error { border-left-color: #dc2626; }
.toast-info { border-left-color: #2563eb; }

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* TV Display Specific Layout & Signage Glow */
.tv-display-container {
  background-color: #021a0d;
  background-image: 
    radial-gradient(at 0% 0%, rgba(21, 128, 61, 0.25) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(245, 158, 11, 0.15) 0px, transparent 50%);
  color: #f8fafc;
}

.tv-card-glow {
  background: rgba(5, 46, 22, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(34, 197, 94, 0.25);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.tv-ticker-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.tv-ticker-content {
  display: inline-block;
  animation: ticker-scroll 35s linear infinite;
}

.tv-ticker-content:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 84px;
  right: 20px;
  z-index: 45;
  background: #25d366;
  color: white;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
}
.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 25px rgba(37, 211, 102, 0.45);
}

/* Mobile Bottom Navigation Bar */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 12px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
}

@media (min-width: 768px) {
  .mobile-bottom-bar { display: none; }
  .whatsapp-float-btn { bottom: 28px; right: 28px; width: 60px; height: 60px; font-size: 32px; }
}