@import url("https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:wght@300;500;800&family=Six+Caps&display=swap");
:root {
  --main-dark: #245b60;
  --main-light: #fff7eb;
}

.navigation {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  color: white;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
  width: calc(100vw - 100px);
  height: 80px;
  align-items: center;
}
.navigation .logo {
  position: relative;
}
.navigation .logo img {
  max-height: 30px;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}
.navigation #logo-dunkel {
  filter: drop-shadow(0px 0px 10px rgba(255, 200, 200, 0.8));
}
.navigation .invisible {
  opacity: 0;
}
.navigation .nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.navigation .nav > a {
  all: unset;
  cursor: pointer;
  font-weight: bold;
  display: inline-block;
  height: 56px;
  line-height: 56px;
  border-radius: 10rem;
  color: #fff7eb;
  width: fit-content;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 0 20px;
  box-shadow: 0px 10px 23px -3px rgba(17, 73, 78, 0.2);
}
.navigation .nav > a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F2AD4D;
  border-radius: 10rem;
  z-index: -2;
}
.navigation .nav > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background-color: rgb(235, 99, 44);
  transition: all 0.3s ease-in-out;
  border-radius: 10rem;
  z-index: -1;
}
.navigation .nav > a:hover:before {
  left: 0;
}

/* The side navigation menu */
.menu {
  border-radius: 100% 0 0 100%;
  height: 300vh; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: -100vh; /* Stay at the top */
  right: 0;
  margin-right: -50px;
  background: #245b60;
  background: -moz-linear-gradient(to top right, #205256 0%, #2e757b 100%);
  background: -webkit-linear-gradient(to top right, #205256 0%, #2e757b 100%);
  background: linear-gradient(to top right, #205256 0%, #2e757b 100%);
  /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */ /* The navigation menu links */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  box-shadow: 0px 0px 40px -3px rgba(17, 73, 78, 0.3);
}
.menu a {
  text-decoration: none;
  font-size: 2.5rem;
  display: block;
  transition: 0.3s;
  width: fit-content;
  padding: 10px 60px;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  white-space: nowrap;
  color: #fff7eb;
}
.menu a:hover {
  color: rgb(235, 99, 44);
}

.menu-points {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.8s ease-in-out;
}

.open {
  width: 500px;
  margin-right: 0;
}

.burger {
  all: unset;
  cursor: pointer;
  font-weight: bold;
  display: inline-block;
  height: 56px;
  line-height: 56px;
  border-radius: 10rem;
  color: #fff7eb;
  width: fit-content;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 0 20px;
  box-shadow: 0px 10px 23px -3px rgba(17, 73, 78, 0.2);
  display: flex;
  flex-direction: column;
  width: 30px;
  height: 30px;
  align-items: end;
  background-color: #F2AD4D;
  padding: 13px 15px 13px 11px;
  border-radius: 50%;
}
.burger:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F2AD4D;
  border-radius: 10rem;
  z-index: -2;
}
.burger:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background-color: rgb(235, 99, 44);
  transition: all 0.3s ease-in-out;
  border-radius: 10rem;
  z-index: -1;
}
.burger:hover:before {
  left: 0;
}
.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.99, -0.7, 0.29, 1);
  border-radius: 3px;
}
.burger span:nth-of-type(1) {
  width: 50%;
}
.burger span:nth-of-type(3) {
  width: 75%;
}

.active {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}
.active span:nth-of-type(1) {
  transform: rotate(-45deg) translate(-4px, 4px);
}
.active span:nth-of-type(2) {
  transform: rotate(45deg) translate(3px, 0px);
}
.active span:nth-of-type(3) {
  transform: rotate(-45deg) translate(0px, -6px);
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-width: 945px) {
  .menu {
    border-radius: 0;
    padding-top: 15px;
  }
  .open {
    width: 100vw;
    margin-right: 0;
  }
}

/*# sourceMappingURL=nav.css.map */
