/** Shopify CDN: Minification failed

Line 209:3 Cannot use type selector "--active" directly after nesting selector "&"
Line 225:3 Cannot use type selector "--active" directly after nesting selector "&"

**/
body.nppt-layout {
  padding: var(--fs-nppt-header-height, 72px) 0 0;
}

body.nppt-layout.overflow-hidden {
  position: fixed;
  left: 0;
  right: 0;
  overflow-y: scroll;
}

/* ============================================================
   NPPT Shared Base Styles
   National Park Poster Trip / THE FRAME COLLECTION
   Common CSS variables and Hero section styles
   ============================================================ */

:root {
  --fs-nppt-max-width: 1137px;
  --fs-nppt-side-padding: 20px;
  --fs-nppt-side-padding-pc: 100px;
  --fs-nppt-color-text: #000;
  --fs-nppt-header-height: 72px;

  @media screen and (min-width: 961px) {
    --fs-nppt-header-height: 82px;
  }
}

/* ============================================================
   Section 1: Hero (shared across all NPPT pages)
   ============================================================ */
.fs-nppt-hero {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  padding: 20px var(--fs-nppt-side-padding);
}

.fs-nppt-hero__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: var(--fs-nppt-max-width);
  margin: 0 auto;
}

.fs-nppt-hero__header {
  display: flex;
  align-items: center;

  & a {
    display: inline-block;
    line-height: 0;
  }
}

.fs-nppt-hero__logo {
  width: 100%;
  max-width: 278px;
  height: auto;

  @media screen and (min-width: 961px) {
    max-width: 365px;
  }
}

.fs-nppt-hero__menu-trigger {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.fs-nppt-hero__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--fs-nppt-color-text);

  & .material-icons {
    font-size: 24px;
    line-height: 1;
  }
}

/* ============================================================
   NPPT Menu Overlay
   ============================================================ */
.fs-nppt-menu {
  /* Custom Element - no layout impact when not active */
}

.fs-nppt-menu__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 300ms ease;
  z-index: 99999;

  .fs-nppt-menu.active & {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.fs-nppt-menu__panel {
  position: fixed;
  inset: 0;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 300ms ease;
  visibility: hidden;
  pointer-events: none;
  z-index: 100000;

  @media screen and (min-width: 961px) {
    left: auto;
    width: 467px;
  }

  .fs-nppt-menu.active & {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
}

.fs-nppt-menu__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 35px var(--fs-nppt-side-padding) 0;

  @media screen and (min-width: 961px) {
    padding: 34px 40px 0;
  }
}

.fs-nppt-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--fs-nppt-color-text);

  & .material-icons {
    font-size: 24px;
    line-height: 1;

    @media screen and (min-width: 961px) {
      font-size: 32px;
    }
  }
}

.fs-nppt-menu__nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fs-nppt-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.fs-nppt-menu__item {
  margin-bottom: 40px;

  &:last-child {
    margin-bottom: 0;
  }
}

.fs-nppt-menu__link {
  font-family: var(--fs-font-family);
  font-size: 32px;
  font-weight: 400;
  color: var(--fs-nppt-color-text);
  text-decoration: none;
  line-height: 1;

  &--active {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
  }
}

.fs-nppt-menu__sublink {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: var(--fs-nppt-color-text);
  text-decoration: none;
  margin-top: 8px;
  line-height: 1.6;

  &--active {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
  }
}

.fs-nppt-menu__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 40px var(--fs-nppt-side-padding);

  @media screen and (min-width: 961px) {
    padding: 40px 40px;
  }
}

.fs-nppt-menu__footer-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.fs-nppt-menu__footer-logo {
  display: block;
  height: 10px;
  width: auto;
}

.fs-nppt-menu__footer-text {
  font-family: var(--fs-font-family);
  font-size: 14px;
  line-height: 1;
  color: var(--fs-color-text);
}

@media (prefers-reduced-motion: reduce) {
  .fs-nppt-menu__overlay,
  .fs-nppt-menu__panel {
    transition: none;
  }
}

.fs-nppt-footer {
  background-color: #fff;
  padding: 40px var(--fs-nppt-side-padding);
  text-align: center;

  @media screen and (min-width: 961px) {
    padding: 40px var(--fs-nppt-side-padding-pc);
  }
}

.fs-nppt-footer__text {
  font-family: var(--fs-font-family);
  color: var(--fs-nppt-color-text);
  font-size: 11px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  margin: 0;
}
