/* === Nuvasoft AI-First Landing Styles === */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0d0e12;
  color: #ffffff;
  overflow: hidden;
}

#hero-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.85) saturate(1.1);
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 2rem;
}

.logo {
  max-width: 120px;
  margin-bottom: 1.5rem;
  animation: fadeIn 1.2s ease-in-out;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0.5rem 0;
  animation: fadeIn 1.6s ease-in-out;
}

p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.6;
  animation: fadeIn 2s ease-in-out;
}

.coming-soon {
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.75;
  animation: fadeIn 2.4s ease-in-out;
}

footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  p { font-size: 0.9rem; }
  .logo { max-width: 90px; }
}
