@font-face {
  font-family: 'pp-body';
  src: url('/webfonts/pp-body.woff2') format('woff2'),
      url('/webfonts/pp-body.woff') format('woff');
}

@font-face {
  font-family: 'pp-brand';
  src: url('/webfonts/pp-brand.woff2') format('woff2'),
      url('/webfonts/pp-brand.woff') format('woff');
}

:root {
  --pp-apple-dark: rgb(17, 65, 49);
  --pp-apple-light: rgb(175, 234, 220);
  --pp-strawberry-dark: rgb(119, 9, 67);
  --pp-strawberry-light: rgb(234, 183, 192);
  --pp-lemon-dark: rgb(90, 56, 38);
  --pp-lemon-light: rgb(241, 240, 176);
  --pp-orange-dark: rgb(111, 30, 17);
  --pp-orange-light: rgb(244, 216, 173);
  --pp-plum-dark: rgb(44, 16, 107);
  --pp-plum-light: rgb(180, 195, 237);
  --pp-grape-dark: rgb(71, 36, 60);
  --pp-grape-light: rgb(208, 180, 215);
  --wrapper-width: calc((100% - 0.6 * (100vw - 800px)));
}

/* plum > grape > strawberry > orange > lemon > apple */

.bg-apple {
  background-color: var(--pp-apple-light);
}
.bg-strawberry {
  background-color: var(--pp-strawberry-light);
}
.bg-lemon {
  background-color: var(--pp-lemon-light);
}
.bg-orange {
  background-color: var(--pp-orange-light);
}
.bg-plum {
  background-color: var(--pp-plum-light);
}
.bg-grape {
  background-color: var(--pp-grape-light);
}
.apple {
  color: var(--pp-apple-dark);
}
.strawberry {
  color: var(--pp-strawberry-dark);
}
.lemon {
  color: var(--pp-lemon-dark);
}
.orange {
  color: var(--pp-orange-dark);
}
.plum {
  color: var(--pp-plum-dark);
}
.grape {
  color: var(--pp-grape-dark);
}

.notice-apple {
  background-color: var(--pp-apple-dark);
  color: var(--pp-apple-light);
}
.notice-strawberry {
  background-color: var(--pp-strawberry-dark);
  color: var(--pp-strawberry-light);
}

html {
  max-width: 100%;
  font-family: "pp-body", "Calibri Light", sans-serif;
  line-height: 1.4;
  hyphens: auto;
}

.pimpam-font {
  font-family: "pp-brand", "Calibri Light", sans-serif;
  font-size: 1.09em;
  position: relative;
  bottom: 0.05em;
  hyphens: none;
  line-height: 0;
}

.hyphens-off, .no-hyphens {
  hyphens: none;
}

button {
  padding: 0.5em 1rem;
  border-radius: 0.2em;
  background-color: var(--theme-color-dark);
  color: var(--theme-color-light);
  min-width: max-content;
}

.link-button {
  padding: 0.5em 1rem;
  border-radius: 0.2em;
  background-color: var(--theme-color-dark);
  color: var(--theme-color-light);
  min-width: max-content;
}

a.link-button:any-link {
  color: var(--theme-color-light);
}

/* on desktop: */
@media (min-width: 800px) {
  #wrapper {
    margin: 0 auto;
    width: var(--wrapper-width);
    padding: 0 1rem;
  }
}

/* on mobile: */
@media (max-width: 800px) {
  #wrapper {
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
  }
}

picture, img {
  max-width: 100%;
  max-height: 100%;
}

.solid-border-black {
  border: 2px solid black;
}

.rounded {
  border-radius: 1em;
}

.text-padding {
  padding: 0 1rem;
}

.quote-bubble {
  display: inline-block;
  margin: 1em 0;
  padding: 1em 1rem;
}

/* on desktop */
@media (min-width: 800px) {
  .quote-bubble {
    width: 45%;
  }
}

/* on mobile */
@media (max-width: 800px) {
  .quote-bubble {
    width: 70%;
  }
}

.flex-end {
  display: flex;
  justify-content: end;
}

.grid-alternate {
  display: grid;
  width: 100%;
  grid-template-rows: auto;
  grid-auto-flow: row;
  justify-items: stretch;
  /* align-items: center; */
}

/* ========= grid alternate ========= */

/* on desktop */
@media (min-width: 800px) {
  .grid-alternate {
    margin: 2em auto;
    gap: 2rem;
  }
  .alternate-4fr-1fr {
    grid-template-columns: 4fr 1fr;
  }
  .alternate-3fr-2fr {
    grid-template-columns: 3fr 2fr;
  }
  .alternate-5fr-4fr {
    grid-template-columns: 5fr 4fr;
  }
  .alternate-1fr-1fr {
    grid-template-columns: 1fr 1fr;
  }
  .alternate-4fr-5fr {
    grid-template-columns: 4fr 5fr;
  }
  .alternate-2fr-3fr {
    grid-template-columns: 2fr 3fr;
  }
  .alternate-1fr-4fr {
    grid-template-columns: 1fr 4fr;
  }
  .alternate-3fr-7fr {
    grid-template-columns: 3fr 7fr;
  }
  .alternate-7fr-3fr {
    grid-template-columns: 7fr 3fr;
  }
  .grid-1fr-1fr-fr {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* on mobile */
@media (max-width: 800px) {
  .grid-alternate {
    grid-template-columns: 1fr;
    margin: 1em auto;
    gap: 1rem;
  }
}

.cursor-pointer {
  cursor: pointer;
}

.flex-center {
  display: flex;
  place-content: center;
  place-items: center;
}

.no-wrap, .no-break {
  white-space: nowrap;
}

.inline-block {
  display: inline-block;
}

.display-none {
  display: none;
}

.margin-top {
  margin-top: 2rem;
}

.margin-bottom {
  margin-bottom: 2rem;
}

.no-margin-top {
  margin-top: 0;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.hanging-indent {
  padding-left: 1em;
  text-indent: -1em;
}

.text-align-bottom {
  vertical-align: bottom
}

.margin-auto {
  margin: auto;
}

/* header-nav */

#sticky-header {
  position: sticky;
  top: 0;
  height: 20vh;
  width: 100%;
  display: grid;
  z-index: 1;
  background-color: white;
  border-bottom: 2px solid black;
}

#nav-container li {
  color: var(--theme-color-light);
}

.nav-list-item {
  font-size: clamp(0.8rem, 0.8rem, 1rem);
  padding: 0.5em 0.8rem 0.5em 0.5rem;
  border-bottom: 1px solid var(--theme-color-light);
}

/* on tablet only */
@media (min-width: 600px) and (orientation: portrait) {
  .nav-list-item {
    font-size: clamp(0.8rem, 1rem, 1rem);
  }
}
/* 
.nav-list-item:nth-last-child(-n+2) {
  text-align: end;
}
 */
.nav-list-item:last-child {
  border-bottom: none;
  text-align: end;
}

.nav-list-item>a {
  display: inline-block;
  width: 100%;
  transition: transform 0.3s ease-out;
}

.nav-list-item>a:hover {
  transform: translate(2px, 0);
}

#content {
  padding: 1em 0;
}

#footer {
  width: 100%;
  height: 30vh;
  position: relative;
}

#impressum {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0.5em 1rem;
  font-size: 0.7rem;
}

.logo {
  height: 100%;
  width: 100%;
}



/* ========= on desktop ========= */

@media (min-width: 800px) {
  #sticky-header {
    grid-template-columns: 1fr 10fr;
    grid-template-rows: 1fr;
    grid-template-areas:
      "menu logo";
  }

  .menu {
    height: 1.5rem;
    grid-area: menu;
    justify-self: start;
    align-self: end;
    margin-bottom: 1em;
    cursor: pointer;
  }

  .logo-home-link {
    grid-area: logo;
    position: absolute;
    height: inherit;
    height: 50%;
    justify-self: end;
    align-self: end;
    margin-bottom: 1em;
    object-fit: contain;
  }

  #nav-container {
    position: fixed;
    margin-top: 20vh;
    top: 0;
    min-width: max-content;
    max-height: 80dvh;
    background-color: var(--theme-color-dark);
    border-radius: 1em;
    z-index: 2;
    display: none;
    grid-template-areas: "nav";
    justify-items: center;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  #nav-container::-webkit-scrollbar {
    display: none;
  }

  #nav-header,
  #nav-footer {
    display: none;
  }

  #nav-list {
    grid-area: nav;
    margin: 1.2em 0.8rem 2em;
    min-width: max-content;
  }

  #overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.0);
    z-index: 1;
    cursor: pointer;
  }
}

/* ========= on mobile ========= */

@media (max-width: 800px) {
  #sticky-header {
    grid-template-columns: 1fr;
    grid-template-rows: 3fr 1fr;
    grid-template-areas:
      "logo"
      "menu";
  }

  .menu {
    height: 1.5rem;
    grid-area: menu;
    justify-self: end;
    align-self: center;
    margin: 0.2em 0.5rem 0.5em auto;
    cursor: pointer;
  }

  .logo-home-link {
    grid-area: logo;
    position: absolute;
    height: inherit;
    max-height: 80%;
    max-width: 70%;
    justify-self: center;
    align-self: end;
    object-fit: contain;
  }

  #nav-container {
    position: fixed;
    inset: 0 0 0 auto;
    height: 100dvh;
    width: 80vw;
    background-color: var(--theme-color-dark);
    z-index: 2;
    grid-template-areas:
      "logo"
      "nav"
      "close";
    grid-template-rows: 2fr auto 1fr;
    justify-items: stretch;
    align-content: space-around;
  }

  #nav-header {
    grid-area: logo;
    display: flex;
    place-content: center;
    place-items: center;
  }

  .nav-anchor-logo {
    height: 60%;
    width: 70%;
  }

  .anchor-svg {
    vertical-align: bottom;
    height: 100%;
    width: 100%;
  }

  #nav-footer {
    grid-area: close;
    align-self: center;
    width: 100%;
    height: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    cursor: pointer;
  }

  #nav-list {
    grid-area: nav;
    margin: 0.6em 1rem 1.2em;
    min-width: max-content;
  }

  #overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(1px);
    z-index: 1;
  }

  #menu-close {
    height: 100%;
  }

  .symbol-stroke-color {
    stroke: var(--theme-color-light);
  }

  .symbol-fill-color {
    fill: var(--theme-color-light);
  }
}

/* on tablet only */
/* svh not working on tablet */
@media (min-width: 600px) and (orientation: portrait) {
  #nav-container {
    grid-template-areas:
      "logo"
      "nav"
      "close"
      ".";
    grid-template-rows: 2fr auto 1fr 0.7fr;
  }
}

/* pp template */

.flex-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
}

.flex-heading h2 {
  margin-right: 1em;
}

.flex-heading h4 {
  margin-left: auto;
}

table {
  margin-top: 1em;
  margin-bottom: 1em;
  width: 100%;
}

td {
  padding-bottom: 0.5rem;
  padding-right: 1em;
  vertical-align: top;
}

.td-min-width {
  min-width: 8rem;
}

.text-align-end {
  text-align: end;
}

.text-align-center {
  text-align: center;
}

.align-basline {
  align-items: baseline;
}

.padding-left {
  padding-right: 0;
  padding-left: 1em;
}

.padding-right {
  padding-right: 1em;
  padding-left: 0;
}

.padding-left-right {
  padding: 0 1em;
}

.padding-bottom {
  padding-bottom: 1rem;
}

.preserve-p-margin {
  padding-top: 1px;
  padding-bottom: 0.3em;
}

.small {
  font-size: 0.7rem;
}

.end-of-page-image {
  height: 3em;
  margin: 3em auto;
}

.flex-column-start {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* 
.move-to-bottom1>*:last-child {
  margin-top: auto;
}

.move-to-bottom-2>*:nth-last-child(2) {
  margin-top: auto;
}
*/

.move-to-bottom-3>*:nth-last-child(3) {
  margin-top: auto;
}

blockquote {
  text-align: end;
}

figcaption {
  text-align: end;
}

.inline-icon {
  display: inline-block;
  height: 1.1rem;
  padding-right: 0.2em;
  position: relative;
  top: 0.15em;
}

h3.bundle-heading {
  font-size: 2rem;

}

.bundle-price {
  font-size: 1.5rem;
  margin-top: 1rem;
}

.color-white {
  color: white;
}

ul.bundle {
  padding: 0 1em 1em;
}

ul.padding-left li {
  padding-left: 1rem;
  cursor: pointer;
}

/* on desktop */
@media (min-width: 800px) {
  .deco-themes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 1rem;
    height: auto;
    margin-top: 2em;
  }
}

/* on mobile */
@media (max-width: 800px) {
  .deco-themes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1rem;
    height: auto;
    margin-top: 2em;
  }

  .image-size-mobile-portrait {
    max-height: 30vh;
    /* max-width: 80%; */
    margin: auto;
  }

  .image-size-mobile-square {
    max-height: 25vh;
    /* max-width: 80%; */
    margin: auto;
  }

  .image-size-mobile-landscape {
    max-height: 20vh;
    /* max-width: 80%; */
    margin: auto;
  }

  .text-first>p,
  .text-first>div {
    order: -1;
  }
}

.place-self-center {
  place-self: center;
}

.image-cover {
  object-fit: cover;
}

.image-contain {
  object-fit: contain;
  margin: auto;
}

.deco-themes img:hover {
  opacity: 1;
  animation: flash 1.5s ease-out;
  cursor: pointer;
}

@keyframes flash {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.flash-animation {
  opacity: 1;
  animation: flash 1.5s ease-out;
}

.margin-padding-correction {
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  margin-top: 2rem;
}

@media (max-width: 800px) {
  .margin-padding-correction {
    margin-top: 1rem;
  }
}

.bg-black {
  background-color: black;
}

.margin-2em-auto {
  margin: 2em auto;
}

.margin-3em-auto {
  margin: 3em auto;
}

.margin-5em-auto {
  margin: 5em auto;
}

.margin-left-3em {
  margin-left: 3em;
}

.flex-row-space-around {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1em;
}

.flex-row-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
}

/* on desktop */
@media (min-width: 800px) {
  .icon-margin {
    margin: 1em;
  }
  .no-gap-desktop {
    gap: 0;
  }
}

.text-indent {
  text-indent: 3em;
}

/* on mobile */
@media (max-width: 800px) {
  .text-indent {
    text-indent: 1.5em;
  }
  .no-gap-mobile {
    gap: 0;
  }
}

.grid-alternate-600 {
  display: grid;
  width: 100%;
  justify-items: start;
}

/* on desktop */
@media (min-width: 600px) {
  .alternate-600-1fr-1fr {
    grid-template-columns: 1fr 1fr;
  }
}

/* on mobile */
@media (max-width: 600px) {
  .grid-alternate-600 {
    grid-template-columns: 1fr;
  }
}

.rotate {
  transform: rotate(-0.01turn);
  margin-left: 5em;
  margin-bottom: 3em;
}

.notice {
  padding: 0 0.3em;
  border-radius: 0.3em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.obfuscate-text {
  height: 0.92em;
  display: inline;
  transform: translate(0.1em, 0.1em);
}

.obfuscate-number {
  height: 0.85em;
  display: inline;
  transform: translate(0.05em, 0.03em);
}

.legal {
  list-style-type: "-";
  /* list-style-position: inside; */
  margin: 0 1em;
  padding-left: 0.2em;
}

/* on desktop */
@media (min-width: 800px) {
  .hide-desktop {
    display: none;
  }
}

/* on mobile */
@media (max-width: 800px) {
  .hide-mobile {
    display: none;
  }
}

/* ========= grid visit ========= */

/* on desktop */
@media (min-width: 800px) {
  .grid-visit {
    display: grid;
    margin: 2em auto;
    gap: 2rem;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: auto;
    grid-template-areas:
    "fees hours"
    "fees info";
  }
}

/* on mobile */
@media (max-width: 800px) {
  .grid-visit {
    display: grid;
    margin: 1em auto;
    gap: 1rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
      grid-template-areas:
        "hours"
        "fees"
        "info";
  }
}

.visit-fees {
  grid-area: fees;
}

.visit-hours {
  grid-area: hours;
}

.visit-info {
  grid-area: info;
}

.single-img {
  max-height: 40vh;
  margin: auto;
}

.font-size-1-1rem {
  font-size: 1.1rem;
}

.font-size-1-2rem {
  font-size: 1.2rem;
}

.margin-left {
  margin-left: 0.5rem;
}

.margin-right {
  margin-right: 0.5rem;
}

.fit-content {
  width: fit-content;
}

.all-caps {
  text-transform: uppercase;
}