body {
  color: #ecf0f1;

}

p, li, a {
  font-size: 18px;
  color: #ecf0f1;
  text-decoration: none;
}

/* Hero + Blurred Background */

.hero {
  min-height: 100%;
  position: relative;
  padding: 0 10%;
  display: flex;
  flex-direction: column;
  background-color: rgba(5,6,32,0.7);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  background: -webkit-radial-gradient(rgba(5,6,32,0.3), rgba(5,6,32,0.7));
  background:    -moz-radial-gradient(rgba(5,6,32,0.3), rgba(5,6,32,0.7));
  background:         radial-gradient(rgba(5,6,32,0.3), rgba(5,6,32,0.7));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(10px);
  transform: scale(1.2);
}

/* Header Bar */

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

/* Logo */
.logo {
  height: 42px;
  z-index: 5;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.logo .logo-text {
  margin-left: 10px;
  font-weight: 800;
  font-size: 24px;
}

/* Desktop Navigation Links */
.nav-links {
  list-style: none;
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}

.nav-links li {
  display: inline-block;
  padding: 0 20px;
}

.nav-links li a {
  transition: all 0.3s ease 0s;
}

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

/* Mobile Hamburger Navigation */
.hamburger-component {
  display: none;
}

.hamburger {
  position: absolute;
  width:  42px; /* 46px with 2px border */
  height: 42px; /* 46px with 2px border */
  padding: 7px 4px;
  top: 24px;
  right: 10%;
  z-index: 5;
  cursor: pointer;
  /* border: 2px solid white; */
  border-radius: 5px;
}

.hamburger div {
  position: relative;
  width: 35px;
  height: 3px;
  border-radius: 3px;
  background-color: #ecf0f1;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

/* do not display the input field */
#toggle-hamburger {
  display: none;
}

#toggle-hamburger:checked + .hamburger .hamburger-top {
  transform: rotate(-45deg);
  margin-top: 13px; /* half of hamburger height */
}
#toggle-hamburger:checked + .hamburger .hamburger-bean-pattie {
  transform: scale(0);
}
#toggle-hamburger:checked + .hamburger .hamburger-bottom {
  transform: rotate(45deg);
  margin-top: -26px; /* negative value of 2 x hamburger div height + 1 margin */
}

#toggle-hamburger:checked + .hamburger + .hamburger-nav-view {
  top: 0;
}

.hamburger-nav-view {
  position: fixed;
  z-index: 4;
  width: 100%;
  height: 100%;
  background-color: #050620;
  top: -100%;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.hamburger-nav-view .hamburger-nav-wrapper {
  position: relative;
  overflow-y: auto;
  height: 100%;
}

.hamburger-nav-items {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hamburger-nav-items a {
  margin-top: 40px;
  color: #ecf0f1;
  opacity: 0;
  text-decoration: none;
  font-size: 26px;
  transition: all 0.3s ease 0s;
}
.hamburger-nav-items a:first-child {
  margin-top: 0px;
}

.hamburger-nav-wrapper nav a {
  opacity: 1.0;
}
.hamburger-nav-wrapper nav a:hover {
  opacity: 1.0;
  color: #e74d71;
}





@media screen and (max-width: 1300px) {
  .hamburger-component {
    display: inherit;
  }

  .nav-links {
    display: none;
  }



}
