* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/* jost-100 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Jost';
  font-style: normal;
  font-weight: 100;
  src: url('../styles/fonts/jost-v20-latin-100.woff2') format('woff2'); 
}

/* jost-200 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Jost';
  font-style: normal;
  font-weight: 200;
  src: url('../styles/fonts/jost-v20-latin-200.woff2') format('woff2'); 
}

/* jost-300 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300;
  src: url('../styles/fonts/jost-v20-latin-300.woff2') format('woff2'); 
}

/* jost-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  src: url('../styles/fonts/jost-v20-latin-regular.woff2') format('woff2'); 
}

/* jost-500 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  src: url('../styles/fonts/jost-v20-latin-500.woff2') format('woff2'); 
}

/* jost-600 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  src: url('../styles/fonts/jost-v20-latin-600.woff2') format('woff2'); 
}

/* jost-700 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Jost';
  font-style: normal;
  font-weight: 700;
  src: url('../styles/fonts/jost-v20-latin-700.woff2') format('woff2'); 
}

/* jost-800 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Jost';
  font-style: normal;
  font-weight: 800;
  src: url('../styles/fonts/jost-v20-latin-800.woff2') format('woff2'); 
}


/* fraunces-100 - latin */
@font-face {
  font-display: swap;
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 100;
  src: url('../styles/fonts/fraunces-v38-latin-100.woff2') format('woff2'); 
}

/* fraunces-200 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 200;
  src: url('../styles/fonts/fraunces-v38-latin-200.woff2') format('woff2'); 
}

/* fraunces-300 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300;
  src: url('../styles/fonts/fraunces-v38-latin-300.woff2') format('woff2'); 
}

/* fraunces-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400;
  src: url('../styles/fonts/fraunces-v38-latin-regular.woff2') format('woff2'); 
}

/* fraunces-500 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500;
  src: url('../styles/fonts/fraunces-v38-latin-500.woff2') format('woff2'); 
}

/* fraunces-500italic - latin */
@font-face {
  font-display: swap; 
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  src: url('../styles/fonts/fraunces-v38-latin-500italic.woff2') format('woff2'); 
}

/* fraunces-600 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  src: url('../styles/fonts/fraunces-v38-latin-600.woff2') format('woff2'); 
}

/* fraunces-700 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 700;
  src: url('../styles/fonts/fraunces-v38-latin-700.woff2') format('woff2'); 
}

/* fraunces-800 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 800;
  src: url('../styles/fonts/fraunces-v38-latin-800.woff2') format('woff2'); 
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 170px;
  background-color: rgb(245, 240, 232);
}

[id] {
  scroll-margin-top: 200px;
}

p {
  hyphens: auto;
}

/* =====================
   HEADER
   ===================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  border-bottom: 0.5px solid black;
}

.header-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(245, 240, 232);
  height: 170px;
  padding-left: clamp(16px, 5vw, 70px);
  padding-right: clamp(16px, 3vw, 40px);
}

.logo-img-header {
  width: clamp(160px, 25vw, 300px);
  cursor: pointer;
}

.hamburger-img-header {
  width: clamp(28px, 4vw, 40px);
  cursor: pointer;
}

.hidden-bar-style {
  display: flex;
  flex-direction: column;
  background-color: white;
}

.hidden-bar-style div {
  display: flex;
  align-items: center;
  width: 100%;
  height: 35px;
  border-bottom: 1px solid black;
}

.hidden-bar-style div:hover {
  background-color: rgba(84, 84, 85, 0.3);
}

.hidden-bar-style a {
  text-decoration: none;
  color: rgb(44, 38, 32);
  padding: 5px 10px;
  margin: 0;
  width: 100%;
  font-family: "Jost", sans-serif;
}

.language-div {
  padding: 5px 10px;
  gap: 20px;
}

.language-div img {
  width: 25px;
  cursor: pointer;
}

/* =====================
   HERO SWIPER
   ===================== */

.swiper {
  --swiper-navigation-size: clamp(25px, 4vw, 60px);
  width: 100%;
}

.swiper-slide {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 80vh;
  overflow: hidden;
}

.swiper-button-next,
.swiper-button-prev {
  color: rgb(90, 122, 80) !important;
  font-weight: bold !important;
}

.swiper-button-next {
  right: 20px !important;
}
.swiper-button-prev {
  left: 20px !important;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide-overlay {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: start;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: clamp(8px, 2vw, 12px) clamp(16px, 4vw, 40px);
  overflow: hidden;
}

.hero-grid {
  display: flex;
  height: 100%;
  gap: 4px;
}

.hero-main {
  flex: 2;
  overflow: hidden;
}

.hero-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-side img {
  flex: 1;
  width: 100%;
  object-fit: cover;
  min-height: 0;
}

.element {
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.element h2 {
  color: rgb(245, 240, 232);
  font-size: clamp(14px, 3vw, 25px);
  margin: 0;
  text-align: left;
}

.element span {
  color: rgb(221, 197, 172);
  font-family: "Fraunces", sans-serif;
  font-style: italic;
  font-weight: 500;
}

.element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   FACTS BAR
   ===================== */

.facts-div {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  padding: 20px 16px;
  background-color: rgb(90, 122, 80);
  margin-bottom: 50px;
  min-height: 80px;
}

.facts-div div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.facts-div img {
  width: clamp(32px, 5vw, 60px);
}

.facts-div p {
  color: rgb(245, 240, 232);
  font-size: clamp(8px, 1.8vw, 20px);
  font-weight: 500;
  text-align: center;
}

/* =====================
   MAIN / LAYOUT
   ===================== */

main {
  display: flex;
  flex-direction: column;
  max-width: 1250px;
  width: 100%;
  margin: auto;
  padding: 0 16px;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  color: rgb(30, 26, 20);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  font-family: "Fraunces", sans-serif;
}

p {
  font-family: "Jost", sans-serif;
  color: rgb(44, 38, 32);
}

h4 {
  font-family: "Fraunces", sans-serif;
  color: rgb(155, 139, 111);
  margin: 30px 0 30px 0;
}

/* =====================
   DESCRIPTION
   ===================== */

.description-div {
  display: flex;
  flex-direction: column;
  padding: 0 4px;
}

/* =====================
   GALLERY
   ===================== */

.fancybox-div {
  display: grid;
  gap: clamp(6px, 1vw, 12px);
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}

.fancybox-div img {
  transition: filter 0.1s ease;
}

.fancybox-div img:hover {
  filter: brightness(0.6);
}

@media (max-width: 600px) {
  .fancybox-div {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid black;
}

.button-div {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 50px;
}

.button-div button {
  padding: 10px 20px;
  font-size: clamp(16px, 2.5vw, 23px);
  background-color: transparent;
  border: 1px solid rgb(200, 168, 112);
  border-radius: 10px;
  cursor: pointer;
  color: rgb(200, 168, 112);
  font-family: "Jost", sans-serif;
  transition: all 0.4s ease;
}

.button-div button:hover {
  background-color: rgb(90, 122, 80);
  color: black;
  border: 1px solid black;
}

/* =====================
   FEATURES
   ===================== */

.h2-features {
  margin-bottom: 30px;
}

.features-div {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: clamp(30px, 8vw, 150px);
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.features-div img {
  width: clamp(28px, 3.5vw, 40px);
}

.features-child {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features-child div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-child p {
  font-size: clamp(15px, 2vw, 20px);
}

/* =====================
   ACTIVITIES
   ===================== */

.activities-div {
  display: flex;
  flex-direction: column;
}

.dv-div {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.description-div-2 {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 200px;
}

.image-div {
  flex: 1;
  min-width: 200px;
  max-width: 420px;
}

.image-div img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0px 2px 11px 0px #000000;
}

.description-ext-div {
  padding: 0 20px;
  margin-top: 10px;
  margin-bottom: 60px;
}

/* =====================
   PARKING / LOCATION
   ===================== */

.parking-div {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
  margin-bottom: 60px;
}

.parking-div p {
  text-align: center;
}

.distances-div {
  display: flex;
  justify-content: space-evenly;
  margin-top: 16px;
  gap: clamp(5px, 1vw, 12px);
  margin-bottom: 10px;
}

.distances-div div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.distances-div img {
  width: clamp(16px, 1.5vw, 28px);
  flex-shrink: 0;
}

.distances-div p {
  font-size: clamp(8px, 1.8vw, 15px);
}

.overlay-map-div {
  width: 100%;
  height: clamp(250px, 50vw, 550px);
  background-color: rgb(90, 122, 80);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.overlay-map-div p {
  font-weight: 500;
}

.overlay-map-div button {
  font-family: 'Jost', sans-serif;
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 500;
  color: rgb(30, 26, 20);
  background: transparent;
  border: 1px solid rgb(30, 26, 20);
  cursor: pointer;
  border-radius: 8px;
  padding: 12px 30px;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.overlay-map-div button:hover {
  transform: scale(1.05);
  background-color: rgb(200, 168, 112);
  color: rgb(30, 26, 20);
}

/* =====================
   CONTACT
   ===================== */

.contact-div {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

.contact-des-p {
  text-align: center;
}

.contact-parent-div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(30px, 10vw, 200px);
  margin-top: 30px;
}

.contact-parent-div p {
  font-weight: 500;
  font-size: clamp(15px, 2vw, 17px);
}

.contact-buttons-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.contact-buttons-div img {
  width: clamp(36px, 5vw, 50px);
  transition: all 0.3s ease;
}

.contact-buttons-div img:hover {
  transform: scale(1.1);
}

/* =====================
   SERVICES
   ===================== */

.services-div {
  margin-bottom: 60px;
}

.boxes-container {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.boxes-container div {
  flex: 1 1 0; /* alle gleich breit */
  min-width: 0; /* ❗ wichtig gegen Overflow */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  width: clamp(140px, 30vw, 250px);
  min-height: 140px;
  background: rgb(237, 231, 218);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    inset 0 -2px 4px rgba(0,0,0,0.08),
    0 1px 3px rgba(0,0,0,0.1);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
}

.boxes-container p {
  font-size: clamp(12px, 1.2vw, 18px);
  hyphens: auto;
  overflow-wrap: break-word;
}

.boxes-container img {
  width: clamp(36px, 5vw, 50px);
  height: clamp(36px, 5vw, 50px);
  margin-bottom: 10px;
}

/* =====================
   PRICES
   ===================== */

.prices-div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-parent-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  background-color: rgb(44, 38, 32);
  min-height: 160px;
  border-radius: 25px;
  padding: clamp(20px, 4vw, 36px);
  margin-bottom: 30px;
}

.price-parent-div h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3.5vw, 35px);
  font-weight: 600;
  color: rgb(245, 240, 232);
  margin-bottom: 5px;
  text-align: start;
}

.text-div p {
  font-family: 'Jost', sans-serif;
  font-size: clamp(14px, 2vw, 17px);
  line-height: 22px;
  font-weight: 300;
  color: rgb(160, 144, 128);
  margin-bottom: 20px;
  white-space: pre-wrap;
}

.text-div button {
  font-family: 'Jost', sans-serif;
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 500;
  color: rgb(245, 240, 232);
  background-color: rgb(44, 38, 32);
  border: 1px solid gray;
  cursor: pointer;
  border-radius: 8px;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.text-div button a {
  color: inherit;
  text-decoration: none;
}

.text-div button:hover {
  transform: scale(1.05);
  background-color: rgb(160, 144, 128);
  color: rgb(44, 38, 32);
}

.price-div {
  display: flex;
  align-items: center;
}

.price-div p {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 500;
  color: rgb(245, 240, 232);
  line-height: 15px;
}

.price-div span {
  font-family: 'Jost', sans-serif;
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 400;
  color: rgb(138, 122, 96);
}

.d {
  display: flex;
  width: 100%;
  justify-content: right;
}

.price-text-ext {
  text-align: center;
  padding: 0 10px;
  margin-bottom: 60px;
}

/* =====================
   FOOTER
   ===================== */

footer {
  display: flex;
  gap: 24px;
  background-color: rgb(90, 122, 80);
  padding: clamp(20px, 4vw, 25px) clamp(16px, 4vw, 30px);
}

footer img {
  width: clamp(110px, 20vw, 210px);
  margin-bottom: 10px;
  cursor: pointer;
}

footer h3 {
  font-family: "Fraunces", sans-serif;
  font-weight: 450;
  margin-bottom: 10px;
  color: rgb(245, 240, 232);
  font-size: clamp(18px, 2.5vw, 23px);
}

footer a {
  font-family: "Jost", sans-serif;
  text-decoration: none;
  color: rgb(245, 240, 232);
  font-size: clamp(10px, 2vw, 18px);
}

footer p {
  color: rgb(245, 240, 232);
  font-weight: 500;
  font-size: clamp(10px, 2vw, 18px);
}

footer div {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.footer-div {
  display: flex;
  justify-content: center;
}

.footer-div-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-div-2 {
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.footer-div-2 a {
  margin-bottom: 3px;
  transition: all 0.1s ease;
}

.footer-div-2 a:hover {
  color: rgb(199, 189, 189);
}

.footer-div-2 a:active {
  color: rgb(199, 189, 189);
}

/* =====================
   RESPONSIVE BREAKPOINTS
   ===================== */

   /* Unter 1000px: normales Einzelbild */
@media (max-width: 1000px) {
  .hero-grid {
    display: block;
    height: 100%;
  }

  .hero-side {
    display: none;
  }

  .hero-main {
    height: 100%;
  }
}

/* Tablet */
@media (max-width: 900px) {
  body {
    padding-top: 80px;
  }

  [id] {
    scroll-margin-top: 90px;
  }

  .header-child {
    height: 80px;
  }

  .facts-div {
    gap: 12px;
    padding: 16px 12px;
  }

  .features-div {
    gap: 40px;
  }

  .dv-div {
    padding: 0 20px 0 20px;
  }

  .description-div-2 {
    min-width: 0;
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  body {
    padding-top: 70px;
  }

  [id] {
    scroll-margin-top: 80px;
  }

  .header-child {
    height: 70px;
  }

  .facts-div {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-items: center;
    gap: 16px;
    padding: 20px 12px;
    height: auto;
  }

  .features-div {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .features-child {
    width: 235px;
  }

  .distances-div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    padding: 0 10px;
    gap: 5px;
  }

  .description-ext-div {
    padding: 0 10px;
  }


  footer div {
    min-width: unset;
  }
}

@media (max-width: 500px) {
  .dv-div {
    flex-direction: column;
    align-items: center;
  }
 
  .footer-div, .footer-div-2 {
    flex: 0.5;
  }

  .image-div {
    max-width: 100%;
    width: 100%;
  }
}

/* Very small screens */
@media (max-width: 380px) {
  .facts-div {
    grid-template-columns: repeat(5, 1fr);
  }

  .contact-parent-div {
    gap: 20px;
  }
}