@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap");
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: "Inter", sans-serif;
  background: url(/assets/img/sand.jpg) no-repeat top center/cover;
}

.bar {
  display: flex;
  align-items: center;
  height: 50px;
  background-color: rgb(18, 153, 0);
  color: rgb(255, 255, 255);
  padding: 0px 15px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
}
.logo img {
  width: 40px;
  margin-right: 10px;
}

.logo span {
  color: #000000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1160px;
  margin: auto;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 8px 14px;
}

.nav-links a:hover {
  color: rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.4);
  border-radius: 6px;
}

.submenu {
  position: absolute;
  width: 200px;
  background-color: rgb(18, 153, 0);
  box-shadow: 5px 4px 5px rgba(0, 0, 0, 0.1843137255);
  margin-top: 14px;
  opacity: 0;
  z-index: -999;
  transition: all ease 0.5s;
  border-radius: 0px 0px 8px 8px;
}
.submenu li {
  list-style: none;
  padding: 14px 12px;
}

.nav-links li:hover .submenu {
  z-index: 99;
  opacity: 1;
  margin-top: 14px;
}

.burger {
  display: none; /* Hidden by default on larger screens */
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 668px) {
  .logo {
    font-weight: 600;
    font-size: 20px;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: absolute;
    top: -100%; /* Adjust as needed */
    right: 0;
    background-color: rgb(104, 104, 104);
    transition: 0.8s ease-in-out;
    z-index: -1;
  }
  .nav-links.active {
    display: flex;
    top: 50px;
    transition: 0.5s ease-in-out;
  }
  .nav-links li {
    margin-left: 5px;
    padding: 18px 0px;
  }
  .submenu {
    background-color: rgb(104, 104, 104);
  }
  .burger {
    display: block; /* Visible on smaller screens */
    margin-right: 8px;
  }
  .burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .burger.toggle .line2 {
    opacity: 0;
  }
  .burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}/*# sourceMappingURL=main.css.map */