@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

.navbar {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0px 0px;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-brand__first {
  font-size: 16px;
  color: #999;
}

.nav-brand__last {
  font-size: 28px;
  font-weight: bold;
  color: gold;
}

/* Hamburger toggle button */
.menu-toggle {
  display: none;
  font-size: 24px;
  background-color: white;
  border: 1px solid #0000001a;
  border-radius: 6px;
  cursor: pointer;
  height: 34px;
  width: 50px;
  margin-right: 17px;
}

/* Navigation menu */
.nav-menu {
  display: flex;
  gap: 30px;
  margin-right: 15px;
}

.nav-menu a {
  font-family: "Open Sans";
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  color: #333;
  letter-spacing: 1.2px;
}

/* Responsive styles */
@media (max-width: 768px) {

  .c-main-container {
    padding-top: 50px;
  }
  .menu-toggle {
    display: block;
  }
  .navbar {
    height: 50px;
  }

  .nav-menu {
    position: absolute;
    top: 50px;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 15px 20px 20px 0px;
    display: none;
  }

  .nav-menu.show {
    display: flex;
    border-top: 1px solid #DDDDDD;
  }
  .nav-menu a {
    padding-left: 15px;
  }
}
