* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Gazette";
  src: url("../fonts/GazetteRegular/font.woff2") format("woff2"), url("../fonts/GazetteRegular/font.woff") format("woff");
}
@font-face {
  font-family: "Gazette";
  font-weight: bold;
  src: url("../fonts/GazetteBold/font.woff2") format("woff2"), url("../fonts/GazetteBold/font.woff") format("woff");
}
@font-face {
  font-family: "Gazette";
  font-weight: normal;
  font-style: italic;
  src: url("../fonts/GazetteItalic/font.woff2") format("woff2"), url("../fonts/GazetteItalic/font.woff") format("woff");
}
body, html {
  margin: 0;
  padding: 0;
  font-family: "Gazette", serif;
  font-size: 20px;
  overscroll-behavior: none;
  text-rendering: geometricPrecision;
  scroll-behavior: smooth;
  scroll-padding-block: 160px;
}
@media (max-width: 780px) {
  body, html {
    font-size: 18px;
  }
}

section {
  position: relative;
}

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

.teaser {
  font-size: 25px;
  line-height: 36px;
}
@media (max-width: 780px) {
  .teaser {
    font-size: 20px;
    line-height: 28px;
  }
}

h2 {
  font-size: 30px;
  line-height: 40px;
}
@media (max-width: 780px) {
  h2 {
    font-size: 22px;
    line-height: 30px;
  }
}

.wrapper {
  max-width: 740px;
  margin: 0 auto;
}
@media (max-width: 780px) {
  .wrapper {
    padding: 0 1.3rem;
  }
}
.wrapper.wide {
  max-width: 920px;
}
.wrapper.narrow {
  max-width: 560px;
}

.fadein {
  opacity: 0;
  transform: translateY(50px);
  will-change: transform, opacity;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fadein.appear {
  opacity: 1;
  transform: translateY(0);
}

.w-100 {
  width: 100%;
}

.m-0 {
  margin: 0;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-10 {
  margin-top: 15rem;
}
@media (max-width: 780px) {
  .mt-10 {
    margin-top: 8rem;
  }
}

.p-block-5 {
  padding: 3.8rem 0 4rem;
}
@media (max-width: 780px) {
  .p-block-5 {
    padding: 2.8rem 0 3rem;
  }
}
@media (max-width: 780px) {
  .p-block-5.p-m-block-5 {
    padding: 1rem 0;
  }
}

.weinerlebnis {
  background-color: #DEECDF;
  padding: 4.5rem 0;
}
.weinerlebnis .wrapper {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
.weinerlebnis .wrapper .textblock p {
  font-size: 22px !important;
  line-height: 30px !important;
}
.weinerlebnis .wrapper img {
  flex-grow: 0;
}
@media (max-width: 700px) {
  .weinerlebnis .wrapper {
    flex-direction: column;
  }
  .weinerlebnis .wrapper img {
    display: block;
    margin: 0 auto;
  }
  .weinerlebnis .wrapper .textblock p {
    font-size: 20px;
    line-height: 28px;
  }
}

.newsletter {
  background-color: #DEECDF;
  padding: 2rem 0;
}
.newsletter .wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 950px) {
  .newsletter .wrapper {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding-bottom: 2rem;
  }
  .newsletter .wrapper form {
    margin-left: 0;
    max-width: 400px;
  }
  .newsletter .wrapper .textbox {
    margin-bottom: 2rem;
  }
}
.newsletter .wrapper img {
  transform: translateY(0px);
}
.newsletter .wrapper .textbox {
  max-width: 330px;
}
.newsletter .wrapper form {
  margin-left: 10px;
}
.newsletter .wrapper form input {
  width: 100%;
  font-size: 20px;
  padding: 0.7rem 0.5rem 0.5rem;
  border: 0;
  margin-bottom: 6px;
  font-family: "Gazette", serif;
  line-height: 1;
}
.newsletter .wrapper form button {
  width: 100%;
  font-size: 20px;
  padding: 0.7rem 0.5rem 0.5rem;
  background-color: black;
  color: white;
  border: 0;
  text-align: left;
  font-family: "Gazette", serif;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 780px) {
  .newsletter .wrapper form button, .newsletter .wrapper form input {
    font-size: 16px;
    padding: 0.8rem 0.8rem 0.6rem;
  }
  .newsletter .wrapper form button {
    text-align: center;
  }
}

a {
  color: black;
}

.overlay {
  position: fixed;
  left: 0;
  top: -200px;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  z-index: 99;
  opacity: 0;
  transition: top 0.3s, opacity 0.3s;
}
.overlay.active {
  pointer-events: auto;
  display: flex;
  opacity: 1;
  top: 0;
}
.overlay .overlay-content {
  background-color: black;
  color: white;
  padding: 2rem;
  border-radius: 10px;
  overflow: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.overlay .overlay-content a {
  text-decoration: none;
}
.overlay .overlay-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 177px;
}
.overlay .overlay-content li {
  padding: 0;
  position: relative;
}
.overlay .overlay-content li:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: white;
}
.overlay .overlay-content li:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: white;
}
.overlay .overlay-content a {
  display: block;
  padding: 25px 0;
  font-size: 22px;
  text-align: center;
  color: white;
}

.button {
  color: white;
  background-color: black;
  display: inline-block;
  padding: 18px 24px 14px;
  text-decoration: none;
  font-weight: bold;
}

.hamburger {
  z-index: 101;
  display: none;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 30px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: black;
  margin: 7px 0;
  transition: 0.3s;
}
.hamburger.open span {
  background-color: white;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}
@media (max-width: 580px) {
  .hamburger {
    display: block;
    position: fixed;
    z-index: 101;
    top: 20px;
    right: 20px;
  }
}

header {
  display: flex;
  z-index: 98;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  min-height: 80px;
  top: 0;
  background-color: white;
}
header a {
  text-decoration: none;
}
@media (max-width: 750px) {
  header {
    flex-wrap: wrap;
  }
}
@media (max-width: 580px) {
  header {
    position: relative;
  }
}
header .logo {
  height: 55px;
  margin-left: 0.6rem;
  margin-top: 0.5rem;
}
header nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media (max-width: 1008px) {
  header nav {
    left: unset;
    top: unset;
    transform: unset;
    position: relative;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 580px) {
  header nav {
    padding-right: 1rem;
    position: relative;
  }
  header nav .hamburger {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
  }
}
header nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 580px) {
  header nav ul {
    display: none;
  }
}
header nav li {
  padding: 0 20px;
  position: relative;
}
header nav li:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: black;
}
header nav li:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: black;
}
header nav a {
  text-decoration: none;
  color: black;
  display: inline-block;
  white-space: nowrap;
  font-size: 17px;
  line-height: 1;
}
header nav a::after {
  content: "";
  display: block;
  position: relative;
  left: 50%;
  width: 0;
  height: 1px;
  background: black;
  transition: width 0.3s, left 0.3s;
}
header nav a:hover {
  opacity: 0.8;
}
header .cta {
  text-decoration: none;
  background-color: black;
  color: white;
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 2rem 0.85rem 1.5rem;
  gap: 10px;
}
header .cta span {
  margin-top: 3px;
  white-space: nowrap;
}
header .cta img {
  height: 50px;
  transform: translate(-5px, -5px);
}
@media (max-width: 750px) {
  header .cta {
    width: 100%;
    flex-shrink: 0;
    text-align: center;
    justify-content: center;
    font-size: 18px;
  }
  header .cta img {
    height: 35px;
    transform: translate(-2px, -5px);
  }
}
@media (max-width: 480px) {
  header .cta {
    font-size: 16px;
  }
}

main {
  min-height: 100vh;
}
main .header {
  height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: clip;
}
main .header .backgroundimage {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 110%;
  height: 120%;
  background-image: url("../images/header_malans.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  will-change: transform;
}
main .header .wrapper {
  text-align: center;
}
main .header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 80%;
  background: linear-gradient(rgba(229, 217, 73, 0) 0%, rgba(121, 161, 56, 0.53) 45.81%, #3c5202 100%);
  mix-blend-mode: multiply;
}
main .header img {
  position: relative;
  z-index: 2;
  max-height: 390px;
}
main .header h1 {
  color: white;
  text-align: center;
  font-size: clamp(22px, 5vw, 40px);
  font-weight: normal;
  position: relative;
  z-index: 2;
  line-height: 1.15;
}

.flex-fill {
  flex: 1;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  padding: 2rem 3rem 2rem 2rem;
  background-color: #A3C1A3;
  font-size: 18px;
}
footer .adress {
  margin-left: 20px;
}
footer img {
  height: 100px;
}
footer .links {
  font-size: 15px;
}
footer a {
  text-decoration: underline;
}
@media (max-width: 750px) {
  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  footer .adress {
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 2rem 1rem;
    text-align: left;
    font-size: 15px !important;
    align-items: start;
  }
}

.image-gallery-unterkunft {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.image-gallery-unterkunft .gallery-image {
  aspect-ratio: 2/3;
  object-fit: contain;
  width: 100%;
}
.image-gallery-unterkunft .gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-gallery-unterkunft .col-1 {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-gallery-unterkunft .col-2 {
  display: flex;
  flex-direction: column;
  width: 30%;
  gap: 30px;
  align-items: flex-end;
}
.image-gallery-unterkunft .col-2 .image-2 {
  width: 80%;
}
.image-gallery-unterkunft .col-3 {
  width: 30%;
  display: flex;
  align-items: center;
}
.image-gallery-unterkunft .col-3 .image-4 {
  width: 90%;
}
@media (max-width: 780px) {
  .image-gallery-unterkunft {
    gap: 20px;
    flex-wrap: wrap;
  }
  .image-gallery-unterkunft .col-1 {
    width: 50%;
  }
  .image-gallery-unterkunft .col-2 {
    width: 40%;
  }
  .image-gallery-unterkunft .col-3 {
    width: 40%;
  }
  .image-gallery-unterkunft .col-3 .image-4 {
    margin-top: -40px;
  }
}

.stallcircle {
  width: 500px;
  height: 500px;
  border-radius: 500px;
  border: 1px solid black;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}
@media (max-width: 780px) {
  .stallcircle {
    min-width: 280px;
    min-height: 280px;
    width: 40vw;
    height: 40vw;
  }
  .stallcircle img {
    width: 60%;
  }
}

@media (max-width: 780px) {
  .map {
    height: 60vh;
  }
  .map img {
    object-fit: cover;
    height: 100%;
    object-position: center;
  }
}

.image-gallery .row {
  display: flex;
  gap: 10px;
  justify-content: space-around;
  margin-top: 2rem;
}
@media (max-width: 780px) {
  .image-gallery .row {
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 2.5rem;
  }
  .image-gallery .row:first-child {
    margin-top: 0;
  }
  .image-gallery .row:last-child {
    margin-bottom: 2rem;
  }
}
.image-gallery .gallery-image {
  max-width: 40vw;
  width: 100%;
}
.image-gallery .gallery-image.image-1 {
  max-width: 35vw;
}
.image-gallery .gallery-image.image-2 {
  max-width: 25vw;
}
.image-gallery .gallery-image.image-3 {
  max-width: 25vw;
}
.image-gallery .gallery-image.image-4 {
  max-width: 45vw;
}
.image-gallery .gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 780px) {
  .image-gallery .gallery-image.image-1 {
    max-width: 55vw;
  }
  .image-gallery .gallery-image.image-2 {
    max-width: 45vw;
  }
  .image-gallery .gallery-image.image-3 {
    max-width: 25vw;
  }
  .image-gallery .gallery-image.image-4 {
    max-width: 55vw;
  }
}

.clickable {
  cursor: pointer;
}/*# sourceMappingURL=main.css.map */