/* navbar Styles */
* {
  -webkit-tap-highlight-color: transparent;
}
#nav {
  font-family: "Roboto Mono", monospace;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed !important;
  top: 20px;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 80px;
  padding: 0 20px;
  background-color: #503700;
  z-index: 100;
  mix-blend-mode: color-dodge;
  border-radius: 12px;
}

/* Navbar Links */
.navbar-links {
  display: flex;
  gap: 20px;
  flex: 1;
  justify-content: end;
}

.navbar-link {
  text-decoration: none;
  color: #b4953c;
  font-size: 25px;
  line-height: 80px;
  padding: 0 20px;
  position: relative; /* To position the underline correctly */
  display: inline-block; /* Make the link behave like a block for the underline */
  transition: 0.3s;
}

.navbar-link:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
  order: -1;
}

.icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  font-size: 30px;
  color: #dbb460;
}

.icon:focus {
  outline: none;
  color: #dbb460;
}

/* Media Queries */
@media (max-width: 1183px) {
  #nav {
    backdrop-filter: blur(10px);
  }
  .navbar-links {
    display: none; /* Hide links on mobile */
  }

  .hamburger {
    display: block; /* Show hamburger on mobile */
    order: 1; /* Position it on the right side */
  }

  #nav {
    justify-content: space-between;
  }

  .social-icons {
    order: 0;
  }

  #headline {
    font-size: 5.5rem;
  }
}

@media (min-width: 1184px) {
  .hamburger {
    display: none; /* Hide hamburger on desktop */
  }

  .mobile-menu {
    display: none;
  }
}
