
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: white; /* Parrot green from logo */
  color: black;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0b0b3b;
  padding: 10px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
}

.brand {
  color: white;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #8cc63f;
}

/* Social Icons (Email + Facebook) */
.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: white;
  font-size: 18px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #8cc63f;
}

/* Moving Logo */
/* Moving Logo */
.moving-logo {
  margin-top: 130px; /* space below navbar */
  text-align: center;
  overflow: hidden;
  height: 200px; /* more height for bigger logo */
  position: relative;
}

.logo-move {
  height: 150px; /* bigger logo */
  position: absolute;
  left: 0;
  animation: moveLogo 12s ease-in-out infinite alternate;
}

/* Horizontal movement */
@keyframes moveLogo {
  0% { left: 10%; }
  100% { left: 70%; }
}


/* Coming Soon Section */
.coming-soon {
  text-align: center;
  margin-top: 200px;
  animation: fadeIn 2s ease-in;
}

.coming-soon h1 {
  font-size: 50px;
  color: #0b0b3b;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.coming-soon p {
  font-size: 20px;
  color: #555;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
