@charset "UTF-8";
@font-face {
  font-family: "Dosis";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/Dosis/Dosis-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/Montserrat/Montserrat-VariableFont_wght.ttf") format("truetype");
}
/* Colors */
/* Brand */
/* Waldgrün - Hauptfarbe */
/* Erdig - Fell - Natur */
/* Warmes Highlight */
/* Backgrounds */
/* Text */
/* Navigation - Links */
/* Borders - UI */
/* Breakpoints */
/* 1200px oder schmaler */
/* 992px oder schmaler */
/* 768px oder schmaler */
/* 576px oder schmaler */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 1rem;
}

body {
  font-size: 1rem;
  font-family: "Dosis", "Montserrat", sans-serif;
  background: #f7f4ef;
  color: #1f2327;
}

.container {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 75rem;
  margin: 0px auto;
}

.page-navigation {
  padding-top: 1rem;
  background-color: #f7f4ef;
}

.page-navigation__logo {
  height: 5rem;
}

.page-navigation__buttons-list {
  margin-top: 1.5rem;
  margin-bottom: 0px;
  padding-left: 0px;
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
}

.page-navigation__button {
  padding: 0px;
  color: #1f2327;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  height: 2rem;
  margin-left: 0.5rem;
}
.page-navigation__button:hover {
  background-color: rgba(31, 35, 39, 0.06);
}
.page-navigation__button--text {
  border: 1px solid #1f2327;
  border-radius: 9999px;
  line-height: 1.9rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.page-navigation__button--icon {
  border: 1px solid #1f2327;
  border-radius: 9999px;
  line-height: 2.15rem;
  width: 2rem;
  height: 2rem;
}

.page-navigation__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 1rem;
}

.page-navigation__menu-list {
  list-style-type: none;
  padding-left: 0px;
  padding-right: 3rem;
  margin-top: 1.5rem;
  margin-bottom: 0px;
  display: none;
}
@media (min-width: 62em) {
  .page-navigation__menu-list {
    display: flex;
  }
}

.page-navigation__menu-item {
  height: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1.2rem;
  color: #1f2327;
  text-decoration: none;
  line-height: 1.9rem;
  border: 1px solid transparent;
  border-radius: 9999px;
  display: inline-block;
}
.page-navigation__menu-item:hover {
  background-color: rgba(31, 35, 39, 0.06);
}

.page-navigation__menus-container {
  flex: 1 0 auto;
  display: flex;
  justify-content: flex-end;
}

.page-navigation::after {
  content: "";
  height: 0.6rem;
  width: 100%;
  display: block;
  background: linear-gradient(90deg, rgb(31, 35, 39) 0%, rgb(187, 183, 178) 25%, rgb(247, 239, 231) 100%);
}

.header {
  position: relative;
  background-image: url("../img/hero.jpeg");
  height: 40rem;
  min-height: 40vw;
  background-position: 25% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 244, 239, 0.4);
  animation: hero-overlay-fade 7s ease 4s forwards;
  pointer-events: none;
}

.header .container {
  position: relative;
  z-index: 1;
}

@keyframes hero-overlay-fade {
  from {
    background: rgba(247, 244, 239, 0.4);
  }
  to {
    background: rgba(247, 244, 239, 0.16);
  }
}
.header__heading-main {
  margin-top: 0px;
  padding-top: 3rem;
  padding-bottom: 2rem;
  font-size: 5rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: right;
  line-height: 95%;
  color: #1f2327;
  text-shadow: 0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.3);
  animation-name: header__heading-main-font-weight;
  animation-delay: 1s;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}
@media (max-width: 75em) {
  .header__heading-main {
    font-size: 4rem;
  }
}
@media (max-width: 62em) {
  .header__heading-main {
    font-size: 3rem;
  }
}
@media (max-width: 48em) {
  .header__heading-main {
    font-size: 2rem;
  }
}

@keyframes header__heading-main-font-weight {
  0% {
    opacity: 0;
    font-weight: 200;
  }
  100% {
    opacity: 1;
    font-weight: 800;
  }
}
.header__heading-sub {
  font-size: 2rem;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
  color: #1f2327;
  text-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.3);
  animation-name: header__heading-sub-font-weight;
  animation-delay: 3s;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}
@media (max-width: 75em) {
  .header__heading-sub {
    font-size: 1.75rem;
  }
}
@media (max-width: 62em) {
  .header__heading-sub {
    font-size: 1.5rem;
  }
}
@media (max-width: 48em) {
  .header__heading-sub {
    font-size: 1rem;
  }
}

@keyframes header__heading-sub-font-weight {
  0% {
    opacity: 0;
    font-weight: 200;
  }
  100% {
    opacity: 1;
    font-weight: 700;
  }
}

.intro-prinzipessin {
  padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
}

.intro-prinzipessin__container,
.intro-wanderfell__container,
.wegnotizen .container,
.wegnotiz-preview__container {
  max-width: 42rem;
  text-align: center;
}

.intro-prinzipessin p {
  margin: 0 0 0.7rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
  font-weight: 400;
}

.intro-prinzipessin__signature {
  margin-top: 2rem;
}

.intro-prinzipessin__signature a {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 35, 39, 0.22);
}

.intro-prinzipessin__signature a:hover {
  border-bottom-color: rgba(31, 35, 39, 0.75);
}

.intro-wanderfell {
  padding: 1rem 0 3rem;
}

.intro-wanderfell p {
  margin: 1.5rem 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.wegnotizen {
  padding: 3rem 0;
}

.wegnotizen h2 {
  margin: 0 0 2rem;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.wegnotizen__intro {
  margin: 0 auto;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
  font-weight: 400;
}

.wegnotiz-preview {
  padding: 2rem 0 6rem;
}

.wegnotiz-preview__meta {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.55;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wegnotiz-preview h3 {
  margin: 1rem 0 1.2rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.wegnotiz-preview__text {
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.wegnotiz-preview a {
  color: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 35, 39, 0.25);
}

.wegnotiz-preview a:hover {
  border-bottom-color: rgba(31, 35, 39, 0.8);
}

.wegnotiz-entry {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.wegnotiz-entry__image {
  margin: 0;
}

.wegnotiz-entry__image img {
  width: 100%;
  display: block;
  border-radius: 1.25rem;
}

.wegnotiz-entry__text {
  text-align: center;
}

/*
@media (min-width: 62em) {
  .wegnotiz-preview__container {
    max-width: 58rem;
  }

  .wegnotiz-entry {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .wegnotiz-entry__text {
    text-align: left;
  }
}
*/

.touren {
  padding: 6rem 0;
}

.touren .container {
  max-width: 70rem;
}

.touren h2 {
  text-align: center;
  margin-bottom: 2rem;

  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
}

.touren__intro {
  text-align: center;

  margin-bottom: 4rem;

  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.6;
}

.touren__grid {
  display: grid;
  gap: 2rem;

  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.tour {
  padding: 2rem;

  border: 1px solid rgba(31, 35, 39, 0.12);
  border-radius: 1.25rem;

  background: rgba(255, 255, 255, 0.25);

  text-align: center;
}

.tour h3 {
  margin-bottom: 1rem;

  font-size: 1.8rem;
  font-weight: 500;
}

.tour p {
  margin-bottom: 1.5rem;

  line-height: 1.5;
}

.tour a {
  color: inherit;

  text-decoration: none;

  border-bottom: 1px solid rgba(31, 35, 39, 0.25);
}

.tour a:hover {
  border-bottom-color: rgba(31, 35, 39, 0.8);
}

.fellphilosophin {
  padding: 5rem 0 6rem;
  text-align: center;
}

.fellphilosophin .container {
  max-width: 42rem;
}

.fellphilosophin h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: 2rem;
}

.fellphilosophin__intro {
  margin-bottom: 3rem;
}

.fellphilosophin blockquote {
  margin: 2rem 0;
  font-size: 1.35rem;
  font-style: italic;
  border: none;
  background: none;
}

.fellphilosophin__link a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 35, 39, 0.25);
}

.fellphilosophin__link a:hover {
  border-bottom-color: rgba(31, 35, 39, 0.8);
}

/*# sourceMappingURL=main.css.map */
