/* ===== RESET ===== */
.gns-navbar * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.gns-navbar {
  width: 100%;
  font-family: Arial, sans-serif;
}

/* ===== LOGO ROW ===== */
.gns-logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
}

.gns-logo {
  font-size: 26px;
  font-weight: bold;
  color: #013220;
  text-decoration: none;
}

/* ===== TOGGLE ===== */
.gns-toggle {
  position: absolute;
  right: 15px;
  top: 20px;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

.gns-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #013220;
  margin: 5px 0;
}

/* ===== MENU ===== */
.gns-menu {
  background: #FF0000;
}

.gns-menu-center {
  display: flex;
  justify-content: center;
  list-style: none;
}

.gns-menu-center li {
  position: relative;
}

.gns-menu-center li a {
  display: block;
  padding: 15px 18px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.gns-menu-center li a:hover {
  background: #ee5f00;
}

/* ===== DROPDOWN ===== */
.gns-dropdown ul {
  display: none;
  position: absolute;
  background: rgb(201, 248, 156);
  top: 100%;
  left: 0;
  min-width: 200px;
}

.gns-dropdown ul li a {
  color: darkgreen;
  padding: 10px 15px;
}

.gns-dropdown:hover ul {
  display: block;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

.gns-dropdown ul {
    display: none;
    position: absolute;
    background: rgba(199, 250, 151, 0.418);
    top: 100%;
    left: 0;
    min-width: 200px;
  }

  .gns-logo-row {
    justify-content: space-between;
  }

  .gns-logo {
    font-size: 18px;
  }

  .gns-toggle {
    display: block;
  }

  .gns-menu {
    display: none;
  }

  .gns-menu.active {
    display: block;
  }

  .gns-menu-center {
    flex-direction: column;
  }

  .gns-menu-center li a {
    background: white;
    color: black;
    border-bottom: 1px solid #eee;
  }

  /* Dropdown click-friendly */
  .gns-dropdown ul {
    position: static;
  }

}

/* MAKE ALL MENU TEXT CAPITAL */
.gns-menu-center li a {
  text-transform: uppercase;
}

.gns-menu {
  position: relative;
  z-index: 1;
}

.gns-toggle {
  z-index: 999;
}