.header {
  display: flex;
  position: absolute;
  flex-direction: column;

  left: 0;
  right: 0;

  background-color: rgb(35, 30, 30);

  z-index: 100;
}

.header-opening-date {
  display: flex;
  justify-content: center;
  width: 100vw;
  align-items: center;
  padding-bottom: 0.5rem;
  padding-top: 0.75rem;
  font-size: 1.2rem;
  background-color: #fcdee2;
  font-family: Mogra;
}

.header-content {
  width: 100%;
  max-width: 75rem;

  height: 6rem;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  padding: 1rem;
  aspect-ratio: 1 / 1;
  height: calc(100% - 2rem);
}

.header-logo>img {
  aspect-ratio: 1 / 1;
  height: 100%;
}


.header-links {
  display: flex;
  gap: 2rem;

  color: rgb(252, 222, 226);

  text-align: center;

  font-size: 1rem;
}

.header-links .selected {
  position: relative;
}

.header-links .selected::after {
  content: "";

  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 100%;

  padding: 0 0.2rem;
  margin: -0.2rem 0;

  height: 0.15rem;
  background-color: rgb(250, 157, 28);
}

.header-links>a {
  margin: auto 0;
  padding: 0.2rem 0;
}

.header-links>a:hover {
  opacity: 0.8;
}

.mobile-nav-menu,
.mobile-nav-menu-wrapper {
  display: none;
}

@media only screen and (max-width: 768px) {
  .header-content {
    height: 4rem;
  }

  .header-logo {
    padding: 0.75rem;
    height: calc(100% - 1.5rem);
  }

  .header-links {
    display: none !important;
  }

  .mobile-nav-menu-wrapper {
    display: flex;
  }

  .mobile-nav-menu {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding-right: 1rem;
    margin: auto 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    color: rgb(239, 65, 35);
    fill: currentColor;
    background-color: transparent;
    border: none;
  }

  .mobile-nav-menu:hover {
    cursor: pointer;
  }


  .mobile-nav-menu-icon-close {
    display: flex;
  }

  .mobile-nav-menu-icon-open {
    display: none;
  }

  .hidden .mobile-nav-menu-icon-close {
    display: none !important;
  }

  .hidden .mobile-nav-menu-icon-open {
    display: flex !important;
  }

  .hidden.mobile-nav-menu-wrapper .accordion-content {
    padding: 0;
  }

  .mobile-nav-menu-wrapper .accordion-content {
    padding-bottom: 0;
    padding-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    position: absolute;

    height: 0;

    top: 100%;
    left: 0;
    width: 100vw;
    background-color: rgb(35, 30, 30);
  }

  .mobile-nav-menu-wrapper .accordion-content>a {
    width: 100vw;
    display: block;
    padding: 0.5rem 1rem;
    color: white !important;
  }

  .mobile-nav-menu-wrapper .accordion-content>a:first-child {
    padding-top: 1rem;
  }

  .mobile-nav-menu-wrapper .accordion-content>a:last-child {
    padding-bottom: 1rem;
  }

  .selected {
    font-weight: 700;
  }
}
