
/* nav bar :3 */

.nav {
  height: 64px; 
  display: flex;
  align-items: center;
  background-color: #181926;
  padding: 1rem;
  width: 100%;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.nav-logo img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.nav-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: nowrap;
  height: 100%;
  align-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}
.nav-btn {
  color: white;
  background-color: #181926;
  padding: 0.5rem 1rem;
  border-radius: 7px;
  font-size: 0.95rem;
  transition: background 0.3s, transform 0.15s ease;
  border: none;
  cursor: pointer;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-sizing: border-box;
}

.nav-btn:hover {
  background-color: #181926;
  transform: translateY(-1px);
}

.nav-links {
  flex-wrap: nowrap;
}
.nav-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}


.nav-btn {
  white-space: nowrap;
}


@media (max-width: 500px) {
  .nav-links {
    position: fixed;
    top: 70px; 
    right: 0;
    width: 100%;
    background-color: #181926;
    flex-direction: column;
    padding: 1rem 0;
    display: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 9999; 
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}

/* NAVBAR END MEOWWWWW-------- */





.footer {
  max-width: 340px;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 2rem;
}
