nav {
  display: flex;
  justify-content: space-between; /* Space between logo and menu icon */
  align-items: center;
  color: white;
  position: fixed;
  width: 100vw;
  height: 60px;
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(17, 25, 40, 0.75);

  z-index: 11;
}
p {
  font-size: 1rem;
}
/*
 * Made by Erik Terwan
 * 24th of November 2015
 * MIT license
 * Code modified by Aayush Saini
 */
#menuToggle {
  display: block;
  /* You can also use absolute here if you want to stay on the top */
  position: fixed;
  top: 20px;
  right: 30px;

  z-index: 10;

  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a {
  text-decoration: none;
  color: #262626;

  transition: color 0.3s ease;
}

#menuToggle a:hover {
  color: tomato;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;

  cursor: pointer;

  opacity: 0;
  z-index: 11;

  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: white;
  border-radius: 3px;

  z-index: 10;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

#menu {
  position: absolute;
  max-width: 400px;
  width: 100vw;
  max-height: 100vh;
  margin: -100px 0 0 0;
  padding: 50px;
  padding-top: 125px;
  right: -100px;

  box-sizing: border-box;
  overflow-y: auto;
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(100%, 0);

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menu li {
  padding: 10px 0;
  font-size: 22px;
}

#menu li label {
  cursor: pointer;
}

/*
   * And let's fade it in from the right
   */
#menuToggle input:checked ~ ul {
  transform: none;
  opacity: 1;
}

/*
* Made by Erik Terwan
* 24th of November 2015
* MIT license
*/

header {
  width: 100%;
  /* height: 230px; */
  aspect-ratio: 440 / 230;
  background-image: url("/images/destination-hero-mobile.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

header span {
  color: white;
  font-family: "Inknut Antiqua", serif;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
@media (max-width: 768px) {
  header span {
    font-size: 1.5rem;
  }
}
.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.header-spacer {
  height: 60px;
  background-color: #7a8fa3;
}

/* Footer */
footer {
  background-color: #2c2c2c;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
}

.footer-logo {
  font-family: "Roboto Slab", serif;
  font-size: 20px;
  margin-bottom: 10px;
}

footer a {
  color: #f1c40f;
  text-decoration: none;
}

footer p {
  color: white;
  text-align: center;
  text-align: center;
  font-size: 0.8rem;
  margin: 0px;
  margin-top: 0.5rem;
}

footer p:last-of-type {
  padding-bottom: 0px;
}

footer .social-icons img {
  width: 30px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  footer p {
    font-size: 1rem;
    padding-bottom: 0.5rem;
  }
}
.nav-logo-container img {
  display: flex;
  align-items: center;
  margin-left: 20px;
  height: 50px;
  cursor: pointer;
}