*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: #fff;
}

@font-face {
  font-display: swap; 
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/montserrat-v30-latin-300.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-v30-latin-regular.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/montserrat-v30-latin-500.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/montserrat-v30-latin-600.woff2') format('woff2'); 
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  margin: 0;
  color: #746B56;
}

p {
  margin: 0;
  line-height: 1.5em;
}

img, svg {
  vertical-align: middle;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}


/* Header */

.main-header {
  position: absolute;
  top: 0; 
  left: 0;
  z-index: 2;
  background: transparent;
  width: 100%;
  text-transform: uppercase;
  font-weight: 400;
  height: 60px;
}

.main-header nav {
  padding: 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center; 
}

.main-header nav a {
  color: #746B56;
  text-decoration: none;
}

.menu-links a:hover{
  -webkit-text-stroke: 1px #746B56;
}

.logo:hover{
  -webkit-text-stroke: 1px #746B56;
}

.main-header nav div {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.main-header nav ul {
  display: flex;
  gap: 1em;
}

.main-header .main-menu {
  display: flex;
  gap: 2rem;
}

.main-header .responsive-br {
  display: none;
}

.buchen-button {
  background-color: #E3E6E0;
  color: #746B56;
  padding: 5px 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  cursor: pointer;
}

.buchen-button:hover {
  background-color: #746B56; 
  color: #E3E6E0;
}

.mobile-menu-button {
  display: none;
  background-color: transparent;
  width: 25px;
  aspect-ratio: 1/1;
  padding: 0;
  position: relative;
  border: none;
  cursor: pointer;
}

.mobile-menu-button::before,
.mobile-menu-button::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #746B56;
  position: absolute;
  transition: top .3s ease, transform .3s ease;
}

.mobile-menu-button::before {
  top: 47%;
}

.mobile-menu-button::after {
  top: 48%;
  rotate: 90deg;
}

@media (max-width: 1499px) {
  .main-header {
    font-size: 14px;
  }

  .buchen-button {
    font-size: 14px;
  }
}

@media (max-width: 1099px) {
  .mobile-menu-button {
    display: block;
  }

  .main-header.open .mobile-menu-button::before {
    top: 38%;
    transform: rotate(45deg);
  }

  .main-header.open .mobile-menu-button:after {
    top: 38%;
    transform: rotate(45deg);
  }

  .main-header .main-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    padding: 2rem;
    flex-direction: column;
    align-items: flex-end;
    gap: .75rem;
    z-index: 1;
    background-color: #E3E6E0;
  }

  .main-header.open .main-menu {
    display: flex;
  }

  .main-header nav div {
    gap: 1rem;
  }
}

@media (max-width: 530px) {
  .main-header .buchen-button {
    display: none;
  }
}

@media (max-width: 345px) {
  .main-header .responsive-br {
    display: block;
  }
}


/* Main */

/* Hero Section */

.hero {
  position: relative;
  height: 100vh; 
  display: flex;

}

.hero-image {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  z-index: -1; 
}

.hero-content {
  position: relative; 
  top: 0;
  left: 0;
  z-index: 1; 
  margin: 7rem 5rem;
  max-width: 800px; 
}

.hero-content img {
  width: 475px;
  height: auto;
}

.scroll-down {
  position: absolute;
  top: 94%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; 
  height: auto;
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(10px);
  }
}

.scroll-down svg {
  display: block;
  overflow: visible;
  transform: rotate(180deg);
}

.scroll-down svg .cls-1 {
  fill: none;
  stroke: #3b382f;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-width 0.3s ease;
}

.scroll-down:hover svg .cls-1 {
  stroke-width: 3px;
}

@media (max-width: 1799px) {
  .hero-content {
    margin: 7rem 5rem;
  }
}

@media (max-width: 1499px) {
  .hero-content {
    max-width: 650px;
    margin: 5.5rem 4rem;
  }

  .hero-content img {
    width: 450px;
  }
}

@media (max-width: 899px) {
  .hero-content {
    margin: 5.5rem 4rem;
  }

  .hero-content img {
    width: 450px;
  }
}

@media (max-width: 750px) {
  .hero-content {
    margin: 5.5rem 3rem;
  }
}

@media (max-width: 650px) {
  .hero-content {
    margin: 5.5rem 3rem;
  }

  .hero-content img {
    width: 400px;
  }
}

@media (max-width: 600px) {
  .hero-content {
    margin: 5rem 3rem;
  }

  .hero-content img {
    width: 375px;
  }
}

@media (max-width: 540px) {
  .hero-content {
    margin: 4.5rem 2rem;
  }

  .hero-content img {
    width: 325px;
  }
}

@media (max-width: 450px) {
  .hero {
    justify-content: center;
  }

  .hero-content {
    margin: 6rem 2rem;
  }

  .hero-content img {
    width: 325px;
  }
}

@media (max-width: 415px) {
  .hero-content {
    margin: 5rem 2rem;
  }

  .hero-content img {
    width: 325px;
  }
}

@media (max-width: 380px) {
  .hero-content {
    margin: 4.5rem 2rem;
  }

  .hero-content img {
    width: 275px;
  }
}

@media (max-width: 330px) {
  .hero-content img {
    width: 250px;
  }
}

@media (max-width: 300px) {
.hero-content img {
    width: 225px;
  }
}


/* Beschreibung Section */

.beschreibung {
  padding: 3rem 4rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: auto auto;
}

.beschreibung-header {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.beschreibung-text {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  max-width: 1000px;
}

.beschreibung-text p {
  padding-bottom: .75rem;
}

.beschreibung-preis {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  justify-self: end;
}

h1 {
  font-size: 40px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 1rem;
}

.meta-info {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 22px;
  font-weight: 500;
}

.info-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-block svg {
  width: 20px;
}

.info-block .person svg path  {
  fill: #746B56;
}

.person svg {
  vertical-align: middle;
  transform: translateY(-.5px); 
}

.square .cls-1 {
  fill: #fff;
  stroke: #746B56;
  stroke-width: 12;
}

.beschreibung-text p {
  font-size: 18px;
}

.preisbox {
  background-color: #746B56;
  color: #E3E6E0;
  padding: 35px;
  padding-top: 30px;
  padding-bottom: 50px;
  width: 380px;
  text-align: right;
}

.preisbox p {
  font-size: 22px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: .5rem;
}

.preisbox .preis {
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 3rem;
}

.preis span {
  font-size: 28px;
  font-weight: 400;
}

.big-buchen-button {
  background-color: #E3E6E0;
  color: #746B56;
  padding: 10px 22px;
  border: 2px solid #E3E6E0;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  cursor: pointer;
}

.big-buchen-button:hover {
  background-color: #746B56; 
  color: #E3E6E0;
  border: 2px solid #E3E6E0;
}

@media (max-width: 1799px) {
  .beschreibung {
    padding-bottom: 0;
  }
  
  .beschreibung-text {
    max-width: 900px;
  }

  .beschreibung-text p {
    font-size: 16px;
  }
}

@media (max-width: 1699px) {
  .beschreibung-text {
    max-width: 800px;
  }
}

@media (max-width: 1599px) {
  .beschreibung-preis .preisbox {
    width: 360px;
  }

  .beschreibung-preis .big-buchen-button {
    font-size: 26px;
  }
}

@media (max-width: 1499px) {
  .beschreibung-text {
    max-width: 750px;
  }

  h1 {
    font-size: 34px;
  }

  .info-block svg {
    width: 18px;
  }

  .meta-info {
    font-size: 20px;
  }
}

@media (max-width: 1299px) {
  .beschreibung-text {
    max-width: 650px;
  }

  .beschreibung-preis .preisbox {
    margin-left: 5rem;
  }
}

@media (max-width: 1159px) {
  h1 {
    max-width: 500px;
  }
}

@media (max-width: 999px) {
  .beschreibung {
    display: flex;
    flex-direction: column;
    padding: 3rem 0 1rem 0;
  }

  .beschreibung-header {
    padding: 0 3rem;
  }

  .beschreibung-text {
    padding: 0 3rem;
  }

  h1 {
    max-width: none;
  }

  .beschreibung-text {
    max-width: none;
  }

  .beschreibung-preis {
    margin-top: 1rem;
    align-self: flex-end;
    padding: 0 2rem;
    background-color: #746B56;
  }

  .beschreibung .preisbox {
    margin-left: 0;
    width: 100vw;
  }
}

@media (max-width: 500px) {
  .beschreibung {
    padding-top: 2rem;
  }

  .beschreibung-header {
    padding: 0 2rem;
  }

  .beschreibung-text {
    padding: 0 2rem;
  }

  .beschreibung-preis {
    padding: 0;
  }
}

@media (max-width: 395px) {
  h1 {
      font-size: 32px;
    }
}

@media (max-width: 390px) {
  .beschreibung-preis {
    padding-right: 0;
  }

  .preisbox {
    text-align: left;
  }

  .preisbox .preis span {
    font-size: 22px;
  }

  .beschreibung-preis .big-buchen-button {
    font-size: 23px;
  }  
}

@media (max-width: 380px) {
  .meta-info {
    font-size: 18px;
  }
}

@media (max-width: 375px) {
  h1 {
      font-size: 28px;
    }

    .beschreibung-preis .preis {
      font-size: 50px;
    }

    .beschreibung-preis .big-buchen-button {
      font-size: 20px;
    }
}

@media (max-width: 340px) {
  h1 {
      font-size: 26px;
    }

  .beschreibung-preis .preis {
      font-size: 44px;
    }

  .beschreibung-preis .big-buchen-button {
      font-size: 18px;
    }  
}

@media (max-width: 315px) {
  .beschreibung-preis .preis {
      font-size: 38px;
    }

  .beschreibung-preis .big-buchen-button {
      font-size: 16px;
      padding: 10px 20px;
    }  
}


/* Fotos Section */

.fotos {
  padding-top: 1rem;
}

.rooms {
  margin: 0 4rem 2rem 4rem;
}

.rooms ol {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style-type: none;
  padding: 0;
}

.rooms .indikator {
  color: #746B56;
  padding: 5px 10px;
  border: 2px solid #746B56;
  outline: 0 solid transparent;
  font-weight: 400;
  user-select: none;
  cursor: pointer;
  box-sizing: border-box;
  box-sizing: border-box;
}

.rooms .indikator:hover {
  outline: 1px solid #746B56;
  outline-offset: -2.75px;
}

@media (max-width: 1035px) {
  .rooms ol {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* Slideshow */

.galerie-container {
  position: relative;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.galerie-wrapper {
  overflow: hidden;
  width: 100vw;
  padding-inline: 4rem;
  box-sizing: border-box;
}

.galerie {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.galerie img {
  width: calc((100vw - 8rem - 40px) / 3);
  height: auto;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
  object-fit: cover;
}


/* Pfeile */

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  width: 3rem;
  height: 3rem;
  padding: 0;
}

.arrow svg {
  width: 100%;
  height: auto;
  stroke: #746B56;
  fill: none;
  stroke-width: 2px;
  transform: rotate(90deg); 
}

.arrow svg .cls-1 {
  fill: none;
  transition: stroke-width 0.3s ease;
}

.arrow.left {
  left: 1rem;
  transform: translateY(-50%) rotate(-180deg); 
}

.arrow.right {
  right: 1rem;
}

.arrow:hover svg .cls-1 {
  stroke-width: 3px;
}

@media (max-width: 1279px) {
  .galerie img {
    width: calc((100vw - 8rem - 20px) / 2); 
    flex-shrink: 0;
    object-fit: cover;
  }
}

@media (max-width: 767px) {
  .galerie img {
    width: calc(100vw - 8rem);
    flex-shrink: 0;
    object-fit: cover;
  }
}


/* Ausstattung Section */

.ausstattung {
  background-color: #746B56;
  padding: 3rem;
  color: #E3E6E0;
}

h2 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 2rem 1rem;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
}

.highlight-block {
  width: calc(100% / 8);
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.highlight-block svg {
  height: 60px;
  margin-bottom: 1rem;
}

.parkplatz svg {
  height: 62px;
  margin-bottom: 14px;
}

.highlight-block span {
  color: #E3E6E0;
  font-size: 20px;
}

.ausstattung h3 {
  margin: 4rem 0 2rem 1rem;
  font-size: 20px;
  font-weight: 600;
}

.ausstattung-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 1rem;
}

.ausstattung-box {
  width: calc((100% - 5rem) / 6);
  height: 240px;
  border: #E3E6E0 1px solid;
  padding: 1rem;
}

.ausstattung-box h5 {
  margin-top: 0;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 1599px) {  
   .highlight-block {
    flex: 1 1 16.666%;
    max-width: 16.666%;
    padding-top: 3rem;
  }
}

@media (max-width: 1599px) {
  .ausstattung h2  {
    margin-bottom: 0;
  }

  .ausstattung-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
  }

  .ausstattung-box {
    flex: 1 1 calc(20% - 1.5rem); 
    max-width: calc(20% - 1.5rem); 
  }

  
  .ausstattung-box:last-child {
    flex: 1 1 100%; 
    max-width: calc(20% - 1.5rem); 
  }
}

@media (max-width: 1399px) {
  .highlight-block {
    flex: 1 1 20%; 
    max-width: 20%; 
    padding-top: 3rem;
  }

  
  .highlight-block:nth-child(n+6) {
    flex: 1 1 20%; 
    max-width: 20%;
  }

  
  .highlight-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start; 
  }
}

@media (max-width: 1399px) {
  .ausstattung-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-start;
  }

  
  .ausstattung-box {
    flex: 1 1 calc(25% - 1.5rem); 
    max-width: calc(25% - 1rem); 
  }

  
  .ausstattung-box:nth-last-child(-n+2) {
    flex: 1 1 calc(25% - 1.5rem); 
    max-width: calc(25% - 1rem);
  }
}

@media (max-width: 1099px) {
  .highlights {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
    row-gap: 1rem;
    justify-content: space-between;
  }

  .highlight-block {
    width: calc((100% - 3rem) / 4);
    padding-top: 3rem;
  }
}

@media (max-width: 1099px) {
  .ausstattung-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
  }

  .ausstattung-box {
    flex: 1 1 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
    height: 240px; 
  }

  .ausstattung-box:nth-last-child(-n+2) {
    flex: 1 1 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
  }
}

@media (max-width: 999px) {
  .ausstattung {
    padding: 3rem 2rem;
  }
}

@media (max-width: 899px) {
  .highlight-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start; /
  }

  .highlight-block {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
    padding-top: 3rem;
  }

  .highlight-block:nth-child(7),
  .highlight-block:nth-child(8) {
    flex: 1 1 calc(50% - 1rem); 
    max-width: calc(50% - 1rem);
    padding-top: 3rem;
  }

  
  .highlight-block:nth-child(6) {
    flex: 1 1 calc(50% - 1rem); 
    max-width: calc(50% - 1rem);
    padding-top: 3rem;
  }
}

@media (max-width: 899px) {
  .ausstattung-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; 
  }

  .ausstattung-box {
    flex: 1 1 calc(50% - 1rem); 
    max-width: calc(50% - 1rem); 
    box-sizing: border-box; 
  }

  .ausstattung-box:nth-child(1),
  .ausstattung-box:nth-child(2),
  .ausstattung-box:nth-child(3),
  .ausstattung-box:nth-child(4),
  .ausstattung-box:nth-child(5),
  .ausstattung-box:nth-child(6) {
    flex: 1 1 calc(50% - 1rem); 
    max-width: calc(50% - 1rem); 
  }
}

@media (max-width: 549px) {
  .ausstattung-details {
    flex-direction: column;
  }

  .ausstattung-details .ausstattung-box {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }
}

@media (max-width: 549px) {
  .highlights {
    row-gap: 0;
    column-gap: 0;
    justify-content: space-between;
  }

  .highlight-block svg {
    height: 52px;
  }

  .parkplatz svg {
    height: 54px;
  } 

  .highlight-block span {
    font-size: 18px;
  }
}

@media (max-width: 500px) {
  .ausstattung {
    padding: 2rem 1rem 3rem 1rem;
  }

  .highlights {
    justify-content: space-around;
  }
}

@media (max-width: 430px) {
  h2 {
    font-size: 26px;
  }
}

@media (max-width: 365px) {
  .highlight-block {
    min-width: 140px;
  }

  .highlight-block svg {
    height: 50px;
  }

  .parkplatz svg {
    height: 52px;
  } 

  .highlight-block span {
    font-size: 16px;
  }
}

@media (max-width: 345px) {
  .highlight-block {
    min-width: 130px;
  }

  .highlight-block svg {
    height: 50px;
  }

  .parkplatz svg {
    height: 52px;
  } 

  .highlight-block span {
    font-size: 16px;
  }
}

@media (max-width: 325px) {
  .highlights {
    justify-content: center;
  }

  .highlight-block {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .highlight-block span {
    font-size: 18px;
  }
}


/* Lage  */

.lage {
  padding: 4rem;
  padding-top: 2rem;
}

.lage h2 {
  margin-left: 0;
}

.lage-beschreibung {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: auto;
  margin-bottom: 2rem;
}

.lage-text {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  font-size: 18px;
}

.lage-text p {
  padding-bottom: .75rem;
}

.adresse {
  grid-column: 2 / 3;
  grid-row: 1 / 2; 
  text-align: right;
  font-size: 18px;
  font-weight: 600;
}

.maps {
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
}

/* 2-Klick Google Maps Integration */

.maps {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

/* Platzhalter-Bereich */
#maps-placeholder {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

/* Screenshot-Bild als Platzhalter */
#maps-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}

/* Button zum Aktivieren der Karte */
#maps-placeholder button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #746B56;
  color: #E3E6E0;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 16px;
  backdrop-filter: blur(2px);
  transition: background-color 0.3s ease;
}

#maps-placeholder button:hover {
  color: #746B56;
  background-color: #E3E6E0;
}

/* Container für das echte Google Maps Iframe */
#map-container {
  display: none;
}

#map-container iframe {
  width: 100%;
  height: 600px;
  border: 0;
  display: block;
}


@media (max-width: 1799px) {
  .lage-text {
    font-size: 16px;
  }

  .adresse {
    font-size: 16px;
  }  
}

@media (max-width: 999px) {
  .lage {
    padding: 2rem 3rem 3rem 3rem;
  }
}

@media (max-width: 899px) {
  .lage-beschreibung {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    margin-bottom: 2rem;
  }

  .lage-text {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .adresse {
    grid-column: 1 / 2;
    grid-row: 2 / 3; 
    padding-top: 2rem;
  }
}

@media (max-width: 899px) {
  .adresse {
    text-align: left;
  }  
}

@media (max-width: 500px) {
  .lage {
    padding: 2rem 2rem 3rem 2rem;
  }
}


/* Aktivitaeten  */

.aktivitaeten {
  padding: 4rem;
  padding-top: 3rem;
  font-size: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto;
  gap: 4rem;
  background-color: #E3E6E0;
}

.aktivitaeten h2 {
  margin-left: 0;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.aktivitaeten-text {
  grid-column: 2 / 3;
  grid-row: 1 / 2; 
}

.aktivitaeten-text p {
  padding-bottom: .75rem;
}

@media (max-width: 1799px) {
  .aktivitaeten {
    font-size: 16px;
  } 
}

@media (max-width: 1499px) {
  .aktivitaeten {
    display: block;
  }
}

@media (max-width: 999px) {
  .aktivitaeten {
    padding: 3rem;
  }
}

@media (max-width: 500px) {
  .aktivitaeten {
    padding: 2rem 2rem 2rem 2rem;
  }
}


/* Buchen  */

.buchen {
  background-color: #746B56;
  color: #E3E6E0;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}

.buchen h2 {
  margin-left: 0;
}

.buchen-text {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  max-width: 800px;
}

.buchen-text span {
  font-size: 18px;
  font-weight: 600;
}

.buchen p {
  font-size: 18px;
  padding-bottom: 1rem;
}

.buchen-anbieter {
  grid-column: 2 / 3;
  grid-row: 1 / 2; 
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.anbieterbox {
  background-color: #746B56;
  color: #E3E6E0;
  padding: 35px;
  padding-top: 30px;
  padding-bottom: 45px;
  width: 380px;
  text-align: right;
}

.buchen-anbieter .anbieterbox p {
  font-size: 22px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: .5rem;
  padding-bottom: 0;
}

.anbieterbox .preis {
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 3rem;
}

.buchen-anbieter .anbieterbox {
  border: #E3E6E0 1px solid;
}

.anbieterbox span {
  font-size: 30px;
  font-weight: 400;
  text-align: left;
  display: block;
  padding-bottom: 2rem;
}

.preis span {
  font-size: 22px;
  font-weight: 400;
  text-align: right;
  display: inline;
}

@media (max-width: 1799px) {
  .buchen-text {
    padding-right: 4rem;
  }

  .buchen-text span {
    font-size: 16px;
  }
  
  .buchen p {
    font-size: 16px;
  }
}

@media (max-width: 1599px) {
  .buchen-anbieter .anbieterbox {
    width: 362px;
  }

  .buchen-anbieter .anbieterbox span {
    font-size: 22px;
  }

  .anbieterbox .big-buchen-button {
    font-size: 26px;
  }
}

@media (max-width: 1330px) {
  .buchen {
    grid-template-columns: auto;
    grid-template-rows: auto;
  }

  .buchen-anbieter {
    grid-column: 1 / 2;
    grid-row: 2 / 3; 
  }

  .buchen-text {
    max-width: 700px;
    padding-right: 0;
    padding-bottom: 2rem;
  }
}

@media (max-width: 1330px) {
  .buchen-anbieter {
    margin-left: 0;
  }

  .buchen-anbieter .anbieterbox {
    margin-left: 0;
    width: 100%;
  }

  .anbieterbox .big-buchen-button {
    font-size: 24px;
  }
}

@media (max-width: 999px) {
  .buchen {
    padding: 3rem;
  }
}  

@media (max-width: 850px) {
  .buchen-anbieter .anbieterbox {
    width: 100%;
  }

  .buchen-anbieter .anbieterbox span {
    font-size: 24px;
  }

  .buchen-anbieter .anbieterbox p {
    font-size: 20px;
  }

  .buchen-anbieter .preis span {
    font-size: 20px;
  }

  .buchen-anbieter .anbieterbox .preis {
    font-size: 52px;
  }

  .buchen-anbieter .big-buchen-button {
    font-size: 22px;
  }
}

@media (max-width: 775px) {
  .buchen-anbieter .anbieterbox {
    width: 100%;
    padding: 25px 30px 35px;
  }

  .buchen-anbieter .anbieterbox span {
    font-size: 22px;
  }

  .buchen-anbieter .preis span {
    font-size: 20px;
  }

  .buchen-anbieter .anbieterbox p {
    font-size: 20px;
  }

  .buchen-anbieter .anbieterbox .preis {
    font-size: 48px;
  }

  .buchen-anbieter .big-buchen-button {
    font-size: 20px;
    padding: 10px 20px;
  }
}

@media (max-width: 720px) {
  .buchen-anbieter .anbieterbox .preis {
    font-size: 44px;
  }

  .buchen-anbieter .big-buchen-button {
    font-size: 18px;
  }
}

@media (max-width: 675px) {
  .buchen-anbieter {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    margin-left: 0;
  }

  .buchen-anbieter .anbieterbox .top {
    grid-column: 1 / 2;
    grid-row: 1 / 2; 
  }

  .buchen-anbieter .anbieterbox .bottom {
    grid-column: 1 / 2;
    grid-row: 2 / 3; 
  }

  .buchen-anbieter .anbieterbox {
    width: 100%;
  }

  .buchen-anbieter .anbieterbox span {
    font-size: 26px;
  }

  .buchen-anbieter .anbieterbox .preis span {
    font-size: 20px;
  }

  .buchen-anbieter .anbieterbox .preis {
    font-size: 42px;
  }

  .buchen-anbieter .big-buchen-button {
    font-size: 18px;
    padding: 10px 18px;
  }
}

@media (max-width: 500px) {
  .buchen {
   padding: 2rem 2rem 3rem 2rem; 
  }
}

@media (max-width: 335px) {
  .buchen-anbieter .anbieterbox span {
    font-size: 20px;
  }

  .buchen-anbieter .anbieterbox .preis {
    font-size: 36px;
  }

  .buchen-anbieter .big-buchen-button {
    font-size: 16px;
    padding: 10px 16px;
  } 
}

@media (max-width: 315px) {
  .buchen-anbieter .anbieterbox span {
    font-size: 18px;
  }

  .buchen-anbieter .anbieterbox p {
    font-size: 18px;
  }

  .buchen-anbieter .anbieterbox .preis span {
    font-size: 18px;
  }
  
  .buchen-anbieter .anbieterbox .preis {
    font-size: 36px;
  }

  .buchen-anbieter .big-buchen-button {
    font-size: 15px;
    padding: 10px 16px;
  } 
}

@media (max-width: 300px) {
  .buchen-anbieter .anbieterbox .preis {
    font-size: 32px;
  }

  .buchen-anbieter .big-buchen-button {
    font-size: 14px;
    padding: 10px 14px;
  } 
}


/* Gut zu wissen  */

.gzw {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  padding: 4rem;
}

.gzw h2 {
  margin-left: 0;
}

.gzw span {
  font-size: 18px;
  font-weight: 500;
}

.responsive-br {
  display: block;
}

@media (max-width: 1799px) {
  .gzw-infos  {
    font-size: 16px;
    gap: 4rem;
  }
}

@media (max-width: 1499px) {
  .gzw {
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-template-rows: auto auto;
  }

  .check,
  .haustiere {
    padding-bottom: 2rem;   
  }

  .check,
  .rauchen {
    padding-right: 6rem;
  }

  .gzw h2 {
    grid-column: 1 / 2;
    grid-row: 1 / 3; 
  }

  .check {
    grid-column: 2 / 3;
    grid-row: 1 / 2; 
  }

  .haustiere {
    grid-column: 3 / 4;
    grid-row: 1 / 2; 
  }

  .rauchen {
    grid-column: 2 / 3;
    grid-row: 2 / 3; 
  }

  .reinigung {
    grid-column: 3 / 4;
    grid-row: 2 / 3; 
  }
}

@media (max-width: 1050px) {
  .check,
  .rauchen {
    padding-right: 4rem;
  }
}

@media (max-width: 1010px) {
  .check,
  .rauchen {
    padding-right: 3rem;
  }
}

@media (max-width: 999px) {
  .gzw {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto auto;
    justify-content: flex-start;
    padding: 3rem;
  }

  .gzw h2 {
    grid-column: 1 / 2;
    grid-row: 1 / 3; 
  }

  .check {
    grid-column: 2 / 3;
    grid-row: 1 / 2; 
    padding-left: 4rem;
  }

  .haustiere {
    grid-column: 2 / 3;
    grid-row: 2 / 3; 
    padding-left: 4rem;
  }

  .rauchen {
    grid-column: 2 / 3;
    grid-row: 3 / 4; 
    padding-bottom: 2rem; 
    padding-left: 4rem;
  }

  .reinigung {
    grid-column: 2 / 3;
    grid-row: 4 / 5; 
    padding-left: 4rem;
  }
}

@media (max-width: 699px) {
  .gzw {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto auto;
    padding: 3rem;
  }

  .gzw h2 {
    grid-column: 1 / 2;
    grid-row: 1 / 2; 
  }

  .check {
    grid-column: 1 / 2;
    grid-row: 2 / 3; 
    padding-left: 0;
    padding-bottom: 1.5rem;
  }

  .haustiere {
    grid-column: 1 / 2;
    grid-row: 3 / 4; 
    padding-left: 0;
    padding-bottom: 1.5rem;
  }

  .rauchen {
    grid-column: 1 / 2;
    grid-row: 4 / 5;  
    padding-left: 0;
    padding-bottom: 1.5rem;
  }

  .reinigung {
    grid-column: 1 / 2;
    grid-row: 5 / 6; 
    padding-left: 0;
  }
}

@media (max-width: 500px) {
  .gzw {
    padding: 2rem 2rem 3rem 2rem;
  }
}

@media (max-width: 390px) {
    .gzw .responsive-br {
    display: none;
  }
}

/* Footer */

footer {
  padding: 4rem;
  padding-top: 3rem;
  background-color: #E3E6E0;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  font-size: 18px;
}

.kontakt h2 {
  margin-left: 0;
}

.mail {
  padding-top: 1rem;
  display: flex;
  align-items: center;
}

.mail a {
  color: #746B56;
}

.mail svg {
  width: 20px;
  min-width: 20px;
  vertical-align: middle;
}

.mail a {
  padding-left: .75rem;
  font-weight: 500;
}

.instagram {
  padding-top: 1rem;
  display: flex;
  align-items: center;
}

.instagram a {
  color: #746B56;
  padding-left: .75rem;
  font-weight: 500;
}

.instagram svg {
  width: 20px;
  height: auto;
  min-width: 20px;
  overflow: visible;
  display: block;
}

.to-the-top {
  padding-top: 3rem;
  display: flex;
  align-items: center;
}

.to-the-top svg {
  width: 20px;
  vertical-align: middle;
  transform: translateY(-2px);
}

.to-the-top span {
  padding-left: .5rem;
  color: #746B56;
}

.to-the-top a:hover{
  -webkit-text-stroke: 1px #746B56;
}

.ttt-small {
  display: none;
}

.anfahrt h2 {
  margin-left: 0;
}

.footer-menu {
  padding-top: 70px;
  padding-left: 6.5rem;
}

.footer-menu li {
  margin-bottom: 0.3rem;
}  

.footer-menu a {
  color: #746B56;
}

.footer-menu a:hover{
  -webkit-text-stroke: 1px #746B56;
}

.full-width-line {
  border-top: 1px solid #746B56;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
}

@media (max-width: 1799px) {
  footer {
    font-size: 16px;
  }

  .footer-menu {
    padding-top: 70px;
  }
}

@media (max-width: 1199px) {
  footer {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto;
    gap: 0;
  }

  .kontakt {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .anfahrt {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    padding-right: 5rem;
  }

  .footer-nav {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .footer-menu {
    padding-top: 5rem;
    padding-left: 0;
  }

  .to-the-top {
    display: none;
  }

  .ttt-small {
    display: block;
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    padding-top: 1rem;
  }
}

@media (max-width: 999px) {
  footer {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto;
    gap: 0;
  }

  .anfahrt {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    padding-top: 4rem;
  }

  .footer-nav {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .footer-menu {
    padding-top: 4rem;
  }

  .ttt-small {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }
}

@media (max-width: 699px) {
  footer {
    padding: 3rem;
    padding-top: 2rem;
  }

  footer h2 {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 500px) {
  footer {
    padding: 2rem 2rem 3rem 2rem;
  }

  .anfahrt {
    padding-right: 2rem;
  }
}

/* Datenschutz */

.datenschutz {
  margin-top: 60px;
  padding-top: 20px;
  padding-left: 4rem;
  padding-right: 4rem;
  padding-bottom: 100px;
  font-size: 16px;
  color: #746B56;
  background-color: #fff;
}

.datenschutz h3 {
  color: #746B56;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 16px;
}

.datenschutz p {
  margin-bottom: 1rem;
}

.datenschutz a {
  color: #746B56;
  text-decoration: none;
}

.datenschutz a:hover,
.datenschutz a:focus {
  text-decoration: underline;
}

@media (max-width: 699px) {
  .datenschutz {
    padding-left: 3rem;
    padding-right: 3rem;
    padding-bottom: 80px;
  }
}

@media (max-width: 500px) {
  .datenschutz {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 60px;
  }
}

/* Impressum */

.impressum {
  margin-top: 60px;
  padding-top: 20px;
  padding-left: 4rem;
  padding-right: 4rem;
  padding-bottom: 100px;
  font-size: 16px;
  color: #746B56;
  background-color: #fff;
}

.impressum h3 {
  color: #746B56;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 16px;
}

.impressum p {
  margin-bottom: 1rem;
}

.impressum a {
  color: #746B56;
  text-decoration: none;
}

.impressum a:hover,
.impressum a:focus {
  text-decoration: underline;
}

@media (max-width: 699px) {
  .impressum {
    padding-left: 3rem;
    padding-right: 3rem;
    padding-bottom: 80px;
  }
}

@media (max-width: 500px) {
  .impressum {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 60px;
  }
}