.navbar {
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  height: max-content;
  position: sticky;
  top: 0;
  height: 130px;
  z-index: 50;
}
.nav-container {
  display: flex;
  flex-direction: column;
}
.topbar,
.bottombar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar,
.bottombar {
  padding: 10px 0px;
}
.topLeft,
.topRight {
  font-size: 14px;
  color: #fff;
}
.topRight {
  display: flex;
  gap: 10px;
  align-items: center;
}
.topRight > :nth-child(1),
.topRight > :nth-child(2),
.topRight > :nth-child(3) {
  font-size: 12px;
}
.topRight > :nth-child(4) {
  background: #c943de;
  padding: 6px 10px;
  border-radius: 5px;
}
.topbar-container {
  background: linear-gradient(to right, #32ddff, rgb(183, 111, 236));
}
.topbar-element,
.bottom-element {
  max-width: 1366px;
  padding: 0px 50px;
  margin: auto;
}
.botttom-container {
  background-color: #fff;
}

.logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.menu > .navlink {
  text-transform: uppercase;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.menu > .navlink:hover {
  color: #32ddff;
}
.social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social > a {
  font-size: 18px;
  background: #32ddff;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
}
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--black);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  margin-bottom: 15px;
  text-align: center;
}

.mobile-menu a {
  color: var(--black);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
}

.mobile-menu a:hover {
  color: var(--orange);
}

.mobile-cta {
  display: block;
  margin: 20px auto 0;
  width: 80%;
  text-align: center;
}

@media (max-width: 1536px) {
  .topbar-element,
  .bottom-element {
    max-width: 1366px;
  }
}

@media (max-width: 1366px) {
  .topbar-element,
  .bottom-element {
    max-width: 1280px;
  }
}

@media (max-width: 1280px) {
  .topbar-element,
  .bottom-element {
    max-width: 1024px;
  }
}

@media (max-width: 1024px) {
  .topbar-element,
  .bottom-element {
    max-width: 768px;
  }
  .menu {
    display: none;
  }
  .social {
    display: none;
  }
  .mobile-menu {
    top: 120px;
  }
  .hamburger {
    display: block;
  }
}

@media (max-width: 768px) {
  .topbar-element,
  .bottom-element {
    max-width: 640px;
    padding: 0px 10px;
  }
  .logo {
    width: 42px;
    height: 42px;
  }
  .topbar {
    display: none;
  }
  .navbar {
    height: 60px;
  }
  .hamburger {
    display: block;
  }
  .mobile-menu {
    top: 80px;
  }
}

@media (max-width: 640px) {
  .topbar-element,
  .bottom-element {
    max-width: 475px;
  }
  .hamburger {
    display: block;
  }
}
