nav {
  display: flex;
  gap: 35px;
  font-weight: bold;
  justify-content: flex-start;
  align-items: center;
  padding-left: 80px;
}

nav a {
  color: black;
  text-decoration: none;
  font-size: 24px;
  position: relative;
  top: 15px;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 3px;
  background-color: #d67c88;
  transition: width 0.3s ease-in-out;
}

nav a:hover {
  color: #d67c88;
}

nav a:hover::after {
  width: 100%;
}

nav span {
  font-size: 94px;
  line-height: 1;
  display: flex;
  align-items: center;
  position: relative;
  top: 5px;
}

nav a.logout {
    margin-left: auto; /* ini yang dorong ke kanan */
}
.simple-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f0cfd3;
  color: #333;
  padding: 10px 15px;
  font-family: 'Inknut Antiqua', serif;
  font-size: 14px;
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
