body {
  margin: 0;
  padding: 0;
  font-family: "Courier New", monospace;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kanlep-navbar {
  width: 100%;
  height: 70px;
  background: linear-gradient(to right, rgba(39, 38, 38, 0.95), rgba(20, 20, 20, 0.9));
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  /* padding: 0 1rem; */
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  color: beige;
  cursor: pointer;
  position: absolute;
  left: 20px;
}

/* Normal nav links for large screens */
.nav-links {
  list-style: none;
  display: flex;
  gap: 3rem;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-size: 1rem;
  color: #f2f2f2;
  text-decoration: none;
  padding: 8px 12px;
  transition: all 0.3s ease;
  border-radius: 4px;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #bbbbbb, #f2f2f2);
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
  transform-origin: bottom right;
}

.nav-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(30, 30, 30, 0.97);
  padding: 1rem;
  animation: slideDown 0.3s ease-in-out;
  z-index: 99;
}

.mobile-menu a {
  color: #f2f2f2;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-left: 10px;
}

/* Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive behavior */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu.show {
    display: flex;
  }

  .kanlep-navbar {
  width: 100%;
  height: 60px;

  }
}
