.topbar {
  background: #2d4052;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 10px 10px;
  max-width: 2600px;
  height: 60px;
  margin: 0 auto;
}

.logo { /* "Envy & Spite" text */
  font-family: "VCR OSD Mono", sans-serif;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
}
.logo img { /* E&S logo */
  position: relative;
  margin-right: 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  top: 5px;
}
.logo a {
  text-decoration: none;
}

/* Navigation */
.nav-links {
  list-style: none;
  display: flex;
  height: 60px;
}
.nav-links .nav-element {
  display: inline;
}
.nav-links .nav-element:hover {
  background-color: #506f93;
}
.nav-links button {
  display: inline-block;
  padding-right: 0;
  height: 60px;
  width: 120px;
  background-color: #34495e;
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  font-family: "VCR OSD Mono", sans-serif;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s, background-color 0.3s;
}
.nav-links a {
  text-decoration: none;
  font-family: "VCR OSD Mono", sans-serif;
  color: white;
  font-size: 18px;
}

.dropdown-links {
  display: none;
  position: absolute;
  background-color: #34495e;
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.dropdown-links a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.show {
  display: block;
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.burger line {
  width: 25px;
  height: 3px;
  background: white;
  transition: transform 0.3s;
}

/* Lighting mode button */
.sun-icon {
  width: 40px;
}

/* Responsive Design */
/*
@media (max-width: 1980px) {
    .container {
        height: 50px;

        input[type=text] {
            margin-left: 9.5rem;
        }
    }

    .nav-links button {
        height: 50px;
        width: 110px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #34495e;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        padding: 10px;
        border-radius: 8px;

        .active {
            display: flex;
        }
    }
    .container input[type=text] {
        margin-left: -2.5rem;
        width: 24rem;
    }
    .burger {
        display: flex;
        margin-left: -2.5rem;
    }
    .logo {
        font-size: 0;
    }
}
*/

/*# sourceMappingURL=topbar.css.map */
