/* Navigation Bar Styles */
.navbar {
  position: fixed;
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
  transition: all ease-in-out 0.2s;
  z-index: 950;
  font-size: 12pt;
  top: 0px;
}

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

.nav-links li {
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease-in-out 0.2s;
}

.nav-links li a {
  font-size: 16pt;
  font-weight: 200;
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: goldenrod;
  transition: all ease-in-out 0.2s;
}

.nav-links li:hover {
  color: white;
  background-color: rgb(0, 0, 0);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.nav-links li:hover a {
  color: white;
}

.navbar.scrolled {
  height: 80px;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all ease-in-out 0.2s;
  box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.25);
}

.navbar.scrolled li a {
  height: 80px;
}

.logo,
.nav-contact-container {
  width: 20%;
}

.nav-contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#call-button {
  padding: 15px;
  width: 60px;
  border-radius: 35px;
  border: 2px solid rgb(237, 185, 25);
  background: rgb(59, 59, 59);
  background: radial-gradient(
    circle,
    rgba(59, 59, 59, 1) 0%,
    rgba(11, 11, 11, 1) 89%
  );
  text-decoration: none;
  color: white;
  text-shadow: 0px 0px 5px black;
  font-size: 16pt;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  transition: all ease-in-out 0.3s;
}

#call-button:hover {
  width: 100px;
  font-size: 18pt;
  box-shadow: 0px 0px 10px rgba(237, 185, 25, 0.5);
}

#navbar-logo {
  width: 100px;
  transition: all ease-in-out 0.2s;
}

.navbar.scrolled #navbar-logo {
  width: 80px;
}

.navbar.scrolled .nav-links li a {
  color: white;
}

.navbar.scrolled .nav-links li a:hover {
  color: rgb(237, 185, 25);
}

/* Mobile Menu Icon */
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-icon div {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background-color: rgb(237, 185, 25);
  margin: 5px 0;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  z-index: 900;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  color: rgb(21, 63, 50);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: left 0.3s ease;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  padding: 0;
}

.mobile-menu ul li {
  margin: 20px 0;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: rgb(50, 50, 50);
  font-size: 24px;
}

/* Mobile View */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .mobile-menu ul {
    width: 100%;
  }
  .mobile-menu li {
    width: 100%;
    padding: 20px 0px;
    border-bottom: 1px solid goldenrod;
    box-shadow: 0px 20px 10px rgba(0, 0, 0, 0.25);
    background-color: white;
    letter-spacing: 2px;
    font-weight: 300;
    transition: all ease-in-out 0.3s;
  }

  .mobile-menu li:hover {
    background-color: goldenrod;
    border-bottom: 1px solid rgb(50, 50, 50);
  }

  .mobile-menu li a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .nav-contact-container {
    display: none;
  }

  .menu-icon {
    display: flex;
  }

  .navbar.scrolled .menu-icon div {
    background-color: rgb(237, 185, 25);
  }

  .menu-icon.change .bar1 {
    transform: rotate(-45deg) translate(-14px, 6px);
  }

  .menu-icon.change .bar2 {
    opacity: 0;
  }

  .menu-icon.change .bar3 {
    transform: rotate(45deg) translate(-13px, -6px);
  }

  .mobile-menu.active {
    left: 0;
  }
}
