/* NavBar — dark purple/gold Disney Villainous theme */
.navbar-ds {
  background: #07050F;
  display: flex;
  align-items: center;
  font-family: var(--font-sans);
  padding: 0;
  min-height: 56px;
  border-bottom: 1px solid rgba(201,162,39,.2);
}

.navbar-ds .navbar-brand-ds {
  color: #F5D878;
  font-family: 'Cinzel Decorative', serif;
  font-weight: 900;
  font-size: var(--text-md);
  margin: 0;
  padding: 16px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.navbar-ds .navbar-brand-ds:hover {
  color: #C9A227;
  text-decoration: none;
}

.navbar-ds .nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: auto;
}

.navbar-ds .nav-links li {
  display: flex;
  align-items: center;
}

.navbar-ds .nav-links a {
  color: #EAE0F5;
  background: transparent;
  margin: 0;
  padding: 0 18px;
  display: flex;
  align-items: center;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  text-decoration: none;
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease;
}
.navbar-ds .nav-links a:hover {
  color: #F5D878;
  background: rgba(201,162,39,.12);
  text-decoration: none;
}
.navbar-ds .nav-links a.active {
  color: #F5D878;
  background: rgba(201,162,39,.1);
  border: 1.5px solid #C9A227;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(201,162,39,.25);
  margin: 10px 6px;
  padding: 6px 18px;
}

/* Mobile toggle */
.navbar-ds .navbar-toggler-ds {
  display: none;
  width: auto;
  height: auto;
  background: none;
  border: 1px solid rgba(201,162,39,.4);
  color: #EAE0F5;
  padding: 6px 10px;
  margin: 10px 12px 10px auto;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 20px;
  line-height: normal;
}

@media (max-width: 767px) {
  .navbar-ds {
    flex-wrap: wrap;
  }
  .navbar-ds .navbar-toggler-ds {
    display: block;
  }
  .navbar-ds .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  .navbar-ds .nav-links.show {
    display: flex;
  }
  .navbar-ds .nav-links a {
    padding: 12px 20px;
    border-top: 1px solid rgba(201,162,39,.15);
  }
}
