:root {
  --mw-black: #000;
  --mw-white: #fff;
  --mw-gray: #242424;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--mw-black);
  color: var(--mw-white);
}

/* Links */
a {
  color: var(--mw-white);
}
a:hover {
  color: #f0f0f0;
}
a.nav-link{
  color: white !important;
}

/* Navbar */
.navbar {
  padding: 0.2rem 0.5rem;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.8) !important;
}
.navbar-brand img {
  max-height: 40px;
}
.navbar-nav .nav-link {
  font-weight: 300;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  /* explicitly load moon.jpeg with no overlay */
  background-image: url("assets/moon.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  display: flex;
  align-items: center;
  text-align: left;
  color: var(--mw-white);
}
/* remove any pseudo-element overlay */
.hero::before {
  display: none;
}

/* Pure white text everywhere */
.gradient-text,
.gradient-text-black,
.gradient-text2 {
  background: none !important;
  -webkit-text-fill-color: var(--mw-white);
  color: var(--mw-white) !important;
  animation: none !important;
}

.gradient-text4 {
  background: none !important;
  -webkit-text-fill-color: var(--mw-black);
  color: var(--mw-black) !important;
  animation: none !important;
}

/* Fade-Up Animations */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.hero.fade-up {
  transform: none;
  transition: opacity 1s ease-out;
}
.hero.fade-up.in-view {
  opacity: 1;
}

/* Glass card */
.glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #25B9EF;
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  padding: 2rem;
  color: var(--mw-white);
}

/* Feature icons */
.feature-icon {
  font-size: 3rem;
  color: var(--mw-white);
}

/* Form controls */
input.form-control,
textarea.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--mw-white);
}
input::placeholder,
textarea::placeholder {
  color: #ddd;
}

/* Buttons */
.btn-primary {
  background: var(--mw-white);
  color: var(--mw-black);
  border: none;
}
.btn-outline-light {
  border-color: var(--mw-white);
  color: var(--mw-white);
}
.btn-outline-light:hover {
  background: var(--mw-white);
  color: var(--mw-black);
}

/* Footer */
footer {
  background: var(--mw-gray);
  color: #f0f0f0;
}

/* Mission list */
#about .list-unstyled li {
  color: var(--mw-black);
}
#about .list-unstyled li .bi-check-circle-fill {
  color: #ccc;
  font-size: 1.25rem;
}


/* Videos */
video {
  max-width: 80%;
  height: auto;
  display: block;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 1rem;

}

.feature-section .feature-icon{
/*    border: 1px solid #25B9EF;*/
color: #25B9EF;
;
}

/* Avatar audio */
.avatar-audio {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
;
}
.avatar-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 3px solid #25B9EF;

}
.waveform-container {
  flex: 1;
  min-width: 200px;
  cursor: pointer;
}

/* PULSATING DOT (ellipsis) */
.ellipsis {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  width: 0ch;
  animation: ellipsis-step 1.5s steps(4,end) infinite;
}
.ellipsis::after {
  content: ' . ';
}
@keyframes ellipsis-step {
  0%, 20%   { width: 0ch; }
  40%       { width: 1ch; }
  60%       { width: 2ch; }
  80%,100%  { width: 3ch; }
}


/* ————————————————————————————
   Hero subtitle (“Omnimodal Sovereign AI…”)
   ———————————————————————————— */
.hero .lead.gradient-text {
  /* force the #25B9EF color */
  color: white !important;
  font-weight: 370;
  font-size: 1.52rem;
  -webkit-text-fill-color: white !important;
}


.gradient-text3{
  /* force the #25B9EF color */
  color: #25B9EF !important;
  font-weight: 380;
  font-size: 1.1rem;
  -webkit-text-fill-color: #25B9EF !important;
}

/* ————————————————————————————
   “Discover More” (btn-light) & “Get in Touch” (btn-outline-light)
   ———————————————————————————— */
/* Primary fill button */
.hero .btn-light {
  background-color: transparent !important;
  border-color:     #25B9EF !important;
  color:            #fff    !important;
}
/* Hover/focus for primary */
.hero .btn-light:hover,
.hero .btn-light:focus {
  background-color: rgba(65, 169, 248, 0.1) !important;
  border-color:     #25B9EF                 !important;
  color:            #25B9EF                    !important;
}

/* Outline button */
.hero .btn-outline-light {
  background-color: transparent !important;
  border-color:     #3babd4   !important;
  color:            #fff   !important;
}
/* Hover/focus for outline */
.hero .btn-outline-light:hover,
.hero .btn-outline-light:focus {
  background-color: rgba(65, 169, 248, 0.1) !important;
  border-color:     #3babd4                 !important;
  color:            #3babd4                    !important;
}


/* 1) Tighter line-spacing for each Mission list item */
#about .list-unstyled li {
  line-height: 1.6; /* adjust between ~1.1–1.4 until it looks right */
}

/* 2) Sea-blue ( #3babd4 ) for Lunara, MoonWave & Selenix icons, titles and descriptions */
/*.feature-section .feature-icon,
.feature-section h3.fw-semibold,
.feature-section p.mb-4 {
  color: #25B9EF !important;
}*/
.feature-section .feature-icon{
    color: white !important;
}

.button-primary:hover{
  background-color: #25B9EF;
}

/* ————————————————————————————
   About / Mission section: black bg + white text
   ———————————————————————————— */
#about {
  background-color: var(--mw-black) !important;
  color: var(--mw-white) !important;
}

/* Override the special “gradient-text4” class to be white instead of black */
#about .gradient-text4 {
  -webkit-text-fill-color: var(--mw-white) !important;
  color: var(--mw-white) !important;
}

/* Make list items in the mission white */
#about .list-unstyled li {
  color: var(--mw-white) !important;
}

/* Contact form fields: blue borders */
input.form-control,
textarea.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.15)
  color: var(--mw-white);
}

/* “Send Message” (btn-primary) hover state */
.btn-primary:hover {
  background-color: #218EB6 !important;
  border-color:    #218EB6 !important;
  color:           #ffffff !important;
}

input.form-control:focus,
textarea.form-control:focus {
  border-color: #25B9EF;
  box-shadow: 0 0 0 0.2rem rgba(37, 185, 239, 0.25);
}
