@font-face {
  font-family: "Mundial-Regular";
  src: url("https://db.onlinewebfonts.com/t/782f2c02e556ab4fef462a7d4c859fa9.eot");
  src:
    url("https://db.onlinewebfonts.com/t/782f2c02e556ab4fef462a7d4c859fa9.eot?#iefix")
      format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/782f2c02e556ab4fef462a7d4c859fa9.woff2")
      format("woff2"),
    url("https://db.onlinewebfonts.com/t/782f2c02e556ab4fef462a7d4c859fa9.woff")
      format("woff"),
    url("https://db.onlinewebfonts.com/t/782f2c02e556ab4fef462a7d4c859fa9.ttf")
      format("truetype"),
    url("https://db.onlinewebfonts.com/t/782f2c02e556ab4fef462a7d4c859fa9.svg#Mundial-Regular")
      format("svg");
}

#nav-bar {
  backdrop-filter: blur(7.5vh) brightness(1.5);
  top: 0;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  z-index: 1000;
}

/* Logo */
#nav-bar .logo {
  cursor: pointer;
}

#nav-bar .logo img {
  width: 18vw;
}

/* Hamburger Menu */
#nav-bar .hamburger-menu {
  display: flex;
  align-items: center;
}

#nav-bar .hamburger-menu #menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#nav-bar .hamburger-menu #menu-toggle span {
  width: 30px;
  height: 3px;
  background: white;
  display: block;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Menu Overlay */
#menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: black;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 4vh;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}

#menu-overlay.active {
  transform: translateX(0);
}

/* Menu Header */
#menu-overlay .menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5vh;
}

#menu-overlay .menu-header h2 {
  font-family: "Mundial-Regular";
  font-size: 7vw;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

#menu-overlay .menu-header #menu-close {
  background: transparent;
  border: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

/* Menu Navigation */
#menu-overlay .menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4vh;
  margin-top: 4vh;
}

#menu-overlay .menu-nav .menu-link {
  font-family: "Mundial-Regular";
  font-size: 2vh;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  letter-spacing: 2px;
  padding-bottom: 4vh;
  transition: all 0.3s ease;
  text-align: center;
}

#menu-overlay .menu-nav .menu-link.active {
  color: #fff;
}

/* #menu-overlay .menu-nav .menu-link.active::after {
  content: "";
  background-image: url("../../image/mobile/menu/active.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  bottom: -4.5vh;
  left: 50%;
  height: 1vh;
  width: 20vw;
  display: block;
  position: relative;
  transform: translateX(-50%);
} */
