.logo-text {
  font-size: 1.75rem;
  color: #f0f0f0;
  transition: all 0.1s ease-in-out;
  font-weight: bold;
}

.logo-text:hover {
  font-size: 1.75rem;
  color: #AB7CFF;
  font-weight: bolder;
}

.navbar {
  opacity: 0.97;
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.logo a {
  font-size: 1.75rem;
  font-weight: 700;
  color: #f0f0f0;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}

.logo a:hover {
  color: #f0f0f0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #ccc;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -5px;
  left: 0;
  background-color: #8b5cf6;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

@media (max-width: 800px) {
  .nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    margin-top: 1rem;
  }

  .logo-text {
    font-size: 3rem !important;
  }
}
