/*
 Theme Name:   Kadence Child
 Description:  Kadence Child Theme with God-Mode Overrides
 Author:       WebD Media
 Template:     kadence
 Version:      1.0.0
*/

/* =========================================
   GOD-MODE HEADER: BULLETPROOF OVERRIDES
   ========================================= */
... (your existing CSS follows here)

/* =========================================
   GOD-MODE HEADER: BULLETPROOF OVERRIDES
   ========================================= */

#webd-godmode-master .webd-godmode-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 15px 5% !important;
  background: rgba(11, 11, 15, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #16161D !important;
  font-family: 'Inter', sans-serif !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* --- Logo & Animation Fixes --- */
#webd-godmode-master .webd-brand-container { display: flex; align-items: center; }
#webd-godmode-master .webd-logo-link { display: flex; align-items: center; text-decoration: none; gap: 12px; }
#webd-godmode-master .header-img-logo { height: 32px !important; width: auto !important; object-fit: contain; display: block !important; }

#webd-godmode-master .morph-text-wrapper {
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  min-width: 140px; 
  height: 30px; /* Forces height so words don't collapse */
}
#webd-godmode-master .text-changing { position: relative; display: inline-block; color: #00A3FF; width: 100%; height: 100%;}

#webd-godmode-master .word {
  position: absolute !important;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
  white-space: nowrap;
  animation: morphText 12s infinite;
  margin: 0 !important;
  padding: 0 !important;
}
#webd-godmode-master .word:nth-child(1) { animation-delay: 0s; color: #ffffff; } 
#webd-godmode-master .word:nth-child(2) { animation-delay: 3s; color: #00A3FF; } 
#webd-godmode-master .word:nth-child(3) { animation-delay: 6s; color: #8E54E9; } 
#webd-godmode-master .word:nth-child(4) { animation-delay: 9s; color: #00A3FF; } 

@keyframes morphText {
  0%, 5% { opacity: 0; transform: translateY(-30%); filter: blur(4px); }
  10%, 20% { opacity: 1; transform: translateY(-50%); filter: blur(0px); }
  25%, 100% { opacity: 0; transform: translateY(-70%); filter: blur(4px); }
}

/* --- Navigation Override (Kills Kadence Bullets) --- */
#webd-godmode-master .webd-nav-menu { display: flex !important; align-items: center; }
#webd-godmode-master .webd-nav-list { 
  list-style: none !important; 
  display: flex !important; 
  flex-direction: row !important;
  gap: 32px !important; 
  margin: 0 !important; 
  padding: 0 !important; 
}
#webd-godmode-master .webd-nav-list li::before { display: none !important; content: none !important; } /* Strips hidden bullets */
#webd-godmode-master .webd-nav-item { margin: 0 !important; padding: 0 !important; }
#webd-godmode-master .webd-nav-link {
  color: #A1A1AA !important;
  text-decoration: none !important;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex !important;
  align-items: center;
  gap: 6px;
  background: transparent !important;
}
#webd-godmode-master .webd-nav-link:hover { color: #ffffff !important; }
#webd-godmode-master .dropdown-arrow { font-size: 0.6rem; opacity: 0.6; }

/* --- Glowing CTA Button --- */
#webd-godmode-master .webd-cta-container { display: flex; align-items: center; }
#webd-godmode-master .webd-header-glow-btn {
  background: linear-gradient(135deg, #00A3FF 0%, #8E54E9 100%) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 10px 24px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
#webd-godmode-master .status-dot {
  width: 8px;
  height: 8px;
  background-color: #00FF88;
  border-radius: 50%;
  box-shadow: 0 0 8px #00FF88;
  animation: pulse 2s infinite;
  display: inline-block;
}
@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}