/* Allgemeine Stile */
body, html {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: #2f2f2f; /* Dunkelgrauer Text statt Weiß */
  background-color: #f2eee9; /* Heller Hintergrund */
}
html {
  scroll-behavior: smooth;
}

.info-icon{
  display: none;
}




/* Linke Navigation (Sidebar) */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background-color: #f2eee9;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  border-right: 2px solid #bbb8b6;
}

.legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px; /* Abstand zwischen Link – Punkt – Link */
  font-size: 0.9rem;
  color: #7d5a4f; /* dezente, warme Farbe */
  margin-bottom: 50px;
}

.legal-links a {
  text-decoration: none;
  color: #7d5a4f;
  transition: 0.2s ease;
}

.legal-links a:hover {
  text-decoration: underline;
}

.legal-links .dot {
  font-size: 1rem;
  line-height: 1;
}



/* Logo oben */
.logo img {
  width: 200px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(10%) saturate(700%) hue-rotate(340deg); 
}

/* Optional: Turm-Illustration unten */
.logo-turm img {
  width: 250px;
  margin-top: 50px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(10%) saturate(700%) hue-rotate(340deg); 
  /* Illustration auf dunkles Braun umgefärbt */
}

nav {
  width: 100%;
  margin-top: -100px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 120px;
}

nav ul li a {
  text-decoration: none;
  color: #2f2f2f; /* Dunkelgrauer Text */
  font-size: 1.2rem;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #b38b6d; /* Cappuccino-Farbton als Hover */
}

.legal-links {
  display: flex;
  gap: 8px;
  text-align: center;
  font-size: 0.9rem;

}

.legal-links a {
  text-decoration: none;
  color: #7d5a4f;
  transition: color 0.3s;
}

.legal-links a:hover {
  color: #b38b6d;
}

/* Mobiler Header ohne Menü */
.mobile-header-logo {
  display: none;
  background-color: rgba(248, 244, 239, 0.9); /* leicht transparent */
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1001;
  backdrop-filter: blur(4px); /* optional für sanften Glas-Effekt */
}

.mobile-logo {
  height: 70px;
}













.main-content {
  margin-left: 300px;
  width: calc(100% - 300px);
  overflow-y: auto;
}

.info-banner {
  position: fixed; /* <- fixiert ganz oben */
  top: 0;
  left: 340px; /* beginnt rechts von der Sidebar */
  width: calc(100% - 300px);
  background-color: #e3c7a5;
  color: #2f2f2f;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  z-index: 1001;
  background-color: #f2eee9; /* gleiche Farbe wie Sidebar */
  margin-left: -40px;
  font-family: "Poppins", sans-serif;
}


.info-banner p {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.info-banner strong {
  font-weight: bold;
  color: #7d5a4f;
}

.times-popup {
  position: absolute;
  right: 20px;
  top: 40px;
  background-color: #f2eee9;
  border: 1px solid #ccc;
  padding: 10px 20px;
  box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
  border-radius: 5px;
  z-index: 1000;
}

.times-popup ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.times-popup li {
  padding: 5px 0;
  font-size: 14px;
}







/* Hero-Abschnitt */
.hero {
  position: relative;
  height: 80vh; /* nicht ganz Fullscreen */
  overflow: hidden;
  display: flex;
}

/* Hintergrundbild */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay rechts */
.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(179,139,109,0.85) 100%);
  padding: 0 5%;
}

.hero-text {
  color: white;
  text-align: left;
  padding: 40px 20px;
  text-shadow: 0 5px 6px rgba(0, 0, 0, 0.3);
}

.hero-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  display: inline-block;
  opacity: 0.9;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #fff8f0;
  font-size: 5rem;
  font-weight: 600;
}


.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 25px;
  color: #fdf9f5;
  opacity: 0.95;
}


.hero-line {
  width: 200px;
  height: 2px;
  background-color: #fff;
  margin: 15px 0;
}


.scroll-down {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  margin-left: 300px; /* wegen Sidebar */
}

.scroll-down span {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-bottom: 3px solid #b38b6d;
  border-right: 3px solid #b38b6d;
  transform: rotate(45deg);
  animation: pulse-down 1.5s infinite ease-in-out;
  opacity: 0.8;
}

@keyframes pulse-down {
  0%, 100% {
    transform: rotate(45deg) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: rotate(45deg) scale(1.2);
    opacity: 1;
  }
}




.about-section {
  padding: 20px 80px;
  background-color: #f2eee9;
  margin-left: 360px;
  max-width: calc(100% - 300px);
}

.about-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1500px;
  margin: 0 auto;
}

.about-text {
  flex: 1.2;
  min-width: 400px;
}

.about-label {
  color: #b38b6d;
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1.2px;
}

.about-text h2 {
  font-size: 3.4rem;
  margin: 20px 0 30px;
  color: #2f2f2f;
  font-family: math ;
}

.about-text p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.about-list li {
  margin-bottom: 14px;
  font-size: 1.2rem;
  color: #2f2f2f;
}

.about-btn {
  display: none;
  padding: 16px 32px;
  background-color: #b38b6d;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 25px;
  font-size: 1.2rem;
  font-weight: 500;
}

.about-btn:hover {
  background-color: #a07857;
}

.about-facts {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 0.8;
  min-width: 280px;
  margin-top: 50px;
}

.fact:nth-child(3) .number::after {
  content: "%";
  margin-left: 2px;
}

.fact:nth-child(2) .number::after {
  content: "+";
  margin-left: 2px;
}


.fact .number {
  font-size: 3.5rem;
  color: #b38b6d;
  font-weight: bold;
}

.fact .label {
  font-size: 1.3rem;
  color: #333;
}
.about-image {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 150%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}


.team-section {
  background-color: #2f2f2f;
  color: #f2eee9;
  padding: 80px 0; /* Oben & unten Abstand */
  margin-left: 300px;
  max-width: calc(100% - 300px);
  margin-top: 60px;
}

.team-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px; /* gleicht dem der about-section */
  gap: 60px;
}

.team-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  margin-left: 110px;
}

.team-image img {
  width: 120%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.team-content {
  flex: 1.2;
  min-width: 400px;
  margin-left: 100px;
}

.team-label {
  color: #e3c7a5;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
  display: block;
}

.team-content h2 {
  font-size: 3.2rem;
  margin-bottom: 30px;
  color: #fff;
  font-family: 'Georgia', serif;
}

.team-content p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #ddd;
}

.team-btn {
  display: none;
  padding: 16px 32px;
  background-color: #e3c7a5;
  color: #2f2f2f;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.team-btn:hover {
  background-color: #d6b797;
}

.menu-section {
  background-color: #f2eee9;
  padding: 80px;
  margin-left: 300px;
  max-width: calc(100% - 300px);
}

.menu-label {
  text-align: center;
  color: #b38b6d;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-bottom: 50px;
  display: block;
  margin-left: 50px;
}

/* Flexgrid für 2 Kacheln */
.menu-grid {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: 50px;
}

/* Jede Kachel */
.menu-item {
  width: 100%;
  max-width: 500px;
  background-color: #f2eee9;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-item img {
  width: 100%;
  max-width: 500px;
  height: 520px; /* <-- gleiche feste Höhe für beide Bilder */
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}


/* Text darunter */
.menu-text {
  width: 100%;
}

.menu-text h3 {
  font-size: 1.8rem;
  font-family: Georgia, serif;
  margin-bottom: 20px;
  color: #2f2f2f;
}

.menu-text p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.6;
}

.menu-text strong {
  font-weight: 600;
  color: #2f2f2f;
}

.menu-text span {
  display: block;
  font-size: 0.95rem;
  color: #888;
  margin-top: 4px;
}
.menu-btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: #b38b6d;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.menu-btn:hover {
  background-color: #a07857;
}

.menu-button{
  justify-content: center;
  display: flex;
  margin-left: 18%;

}

.map-section {
  background-color: #2f2f2f;
  padding: 80px 40px;
  margin-left: 300px;
  max-width: calc(100% - 300px);
}

.map-container{
  margin-left: 1%;
}

.map-text {
  text-align: center;
  margin-bottom: 40px;
}

.map-text h2 {
  font-size: 2.5rem;
  font-family: Georgia, serif;
  color: white;
  margin-bottom: 10px;
}

.map-text p {
  font-size: 1.1rem;
  color: #ddd;
}

.map-container iframe {
  border-radius: 12px;
    width: 90%;
    height: 450px;
    margin-left: 110px;
}




/* Slideshow container */
.slideshow-container {
  max-width: 1200px; /* größer für 3 Bilder */
  position: relative;
  margin: 60px auto;
  margin-left: 34%;


}

/* Hide the slides by default */
.mySlides {
  display: none;
}

/* Slide group (3 Bilder nebeneinander) */
.slide-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.slide-group img {
  width: 100%;
  max-width: 32%; /* 3 Bilder mit Abstand */
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}


/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  border-radius: 3px;
  user-select: none;
  background-color: rgba(0,0,0,0.5);
  transform: translateY(-50%);
  z-index: 10;
}

.next {
  right: 10px;
}

.prev {
  left: 10px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 14px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  z-index: 5;
}


.footer-bottom a,
.footer a {
  color: white;
  text-decoration: none;
}

.footer-bottom a:hover,
.footer a:hover {
  text-decoration: underline;
}
/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

.mobile-gallery {
  display: none;
}




.review-section {
  padding: 80px 40px;
  background-color: #f2eee9;
  margin-left: 350px;
  max-width: calc(100% - 300px);
  text-align: center;
}

.review-title {
  font-size: 2.5rem;
  font-family: Georgia, serif;
  color: #2f2f2f;
  margin-bottom: 10px;
}

.review-subline {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 40px 20px;
  padding-left: 380px; /* Platz für Sidebar */
  box-sizing: border-box;
  width: 100%;
  padding-bottom: 10px;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mobile-legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  margin-top: 10px;
  padding-bottom: 20px;
}

.mobile-legal-links a {
  color: #fff;
  text-decoration: none;
}

.mobile-legal-links a:hover {
  text-decoration: underline;
}

.mobile-legal-links .dot {
  color: #fff;
  font-size: 1rem;
}



.footer-inner img {
  width: 90px;
  margin-bottom: 15px;
}

.footer-inner .social-icons img {
  width: 44px;
  margin: 0 10px;
  filter: brightness(0) invert(1); /* Weiß einfärben */
}

.social-icons a {
  color: transparent;  /* falls Icon als Text dargestellt wird */
  font-size: 0;
}




.impressum-section {
  margin-left: 360px; /* gleiche Sidebar-Breite wie Startseite */
  max-width: calc(100% - 360px);
  padding: 80px;
  background-color: #f2eee9;
  font-family: "Georgia", serif;
  color: #2f2f2f;
  padding-bottom: 10px;
}

.impressum-section h1 {
  font-size: 2.8rem;
  color: #2f2f2f;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.impressum-section h2 {
  color: #b38b6d;
  font-size: 1.1rem;
  margin-top: 40px;
  margin-bottom: 10px;
  font-weight: 600;
}

.impressum-section p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

.impressum-section a {
  color: #d37e00;
  text-decoration: none;
}

.impressum-section a:hover {
  text-decoration: underline;
}

.credits-section {

  background-color: #f2eee9;
  border-top: 2px solid #ccc;
  text-align: center;
}

.credits-section p {
  font-size: 1rem;
  color: #2f2f2f;
  margin-bottom: 12px;
}

.credits-section img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.credits-section img:hover {
  opacity: 1;
}

.datenschutz-section {
  margin-left: 360px;
  max-width: calc(100% - 360px);
  padding: 80px;
  background-color: #f2eee9;
  color: #2f2f2f;
}

.datenschutz-section h1 {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 30px;
  font-family: Georgia, serif;
}

.datenschutz-section h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #b38b6d;
  font-weight: bold;
}

.datenschutz-section h3 {
  font-size: 1.1rem;
  margin-top: 25px;
  margin-bottom: 8px;
  color: #2f2f2f;
  font-weight: 600;
}

.datenschutz-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
}

.datenschutz-section a {
  color: #b38b6d;
  text-decoration: underline;
}

.datenschutz-section a:hover {
  color: #8d6b51;
}
.hosting-logo {
  max-width: 180px; /* passt das Logo auf eine angenehme Breite an */
  margin-top: 10px;
  margin-bottom: 30px;
  display: block;
}



@media (max-width: 430px) {
 
  html, body {
    overflow-x: hidden;   /* Verhindert horizontales Scrollen */
    touch-action: pan-y;  /* Erlaubt nur vertikales Scrollen */
  }
  html {
    scroll-behavior: smooth;
  }
 
 
  .sidebar {
    display: none !important;
  }

  .mobile-info-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .info-icon {
    background-color: #b38b6d;
    border-radius: 999px;
    padding: 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: width 0.3s ease;
    white-space: nowrap;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
  }
  
  .info-icon img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-right: 0;
    transition: margin 0.3s ease;
  }
  
  .info-icon.expanded {
    width: auto;
    padding-left: 12px;
    padding-right: 16px;
  }
  
  .info-icon.expanded img {
    margin-right: 8px;
  }
  
  .info-icon span {
    margin-left: 8px;
  }
  

  

  .main-content {
    margin-left: 0px;
    width: auto;
  }
  .scroll-down {
    margin-left: -0px;
  }

  .info-banner {
    display: none;
  }
  
  .mobile-header-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile-header-logo img {
    width: 190px;
    height: auto;
  }

  .mobile-legal-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    padding-bottom: 20px;
  }

  .mobile-legal-links a {
    text-decoration: none;
    color: #ffffff;
    opacity: 0.9;
  }

  .mobile-legal-links a:hover {
    opacity: 1;
  }

  .mobile-legal-links .dot {
    color: #aaa;
  }

  .hero-bg {
    width: 100%;
  }

    .hero {
      justify-content: flex-end;
      height: 60vh;
    }
  
    .hero-overlay {
      justify-content: center;
      background: linear-gradient(to top, rgba(179,139,109,0.9) 0%, rgba(0,0,0,0) 100%);
      padding: 30px 15px;
      text-align: center;
    }
  
    .hero-text {
      padding: 0;
      text-align: center;
    }
  
    .hero-label {
      font-size: 0.75rem;
      letter-spacing: 1px;
    }
  
    .hero h1 {
      font-size: 2rem;
      line-height: 1.3;
    }
  
    .hero h1 span {
      font-size: 2.8rem;
    }
  
    .hero p {
      font-size: 1rem;
      line-height: 1.5;
      margin: 0 auto;
    }

.hero-line {
  width: 100%;
}

.about-section {
  padding: 20px;
  margin-left: 0;
  max-width: 100%;
}

.about-content {
  flex-direction: column;
  gap: 40px;
  padding: 0;
}

.about-text {
  min-width: auto;
}

.about-text h2 {
  font-size: 2.2rem;
  margin: 15px 0 20px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-list li {
  font-size: 1rem;
}

.about-btn {
  font-size: 1rem;
  padding: 12px 24px;
}

.about-facts {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: -20px;
}

.fact .number {
  font-size: 2rem;
}

.fact .label {
  font-size: 1rem;
}

.about-image {
  max-width: 300px;
  margin-left: 25px;
}

.about-image img {
  width: 100%;
  max-height: 300px;
  margin-left: 10px;
}

.team-section {
  margin-left: 0;
  max-width: 100%;
  padding: 50px 20px;
}

.team-inner {
  flex-direction: column;
  padding: 0;
  gap: 40px;
}

.team-image {
  margin-left: 0;
  max-width: 100%;
}

.team-image img {
  width: 100%;
  border-radius: 10px;
}

.team-content {
  margin-left: 0;
  min-width: auto;
}

.team-label {
  font-size: 0.95rem;
  text-align: left;
}

.team-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.team-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.team-btn {
  display: none;
  padding: 12px 24px;
  font-size: 1rem;
}

.menu-section {
  padding: 40px 20px;
  margin-left: 0;
  max-width: 100%;
}

.menu-label {
  font-size: 1rem;
  margin-bottom: 30px;
  margin-left: 0px;
}

.menu-grid {
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-left: 0px;
}

.menu-item {
  width: 100%;
  max-width: 100%;
}

.menu-item img {
  height: auto;
  max-height: 400px;
}

.menu-text h3 {
  font-size: 1.5rem;
}

.menu-text p {
  font-size: 1rem;
  line-height: 1.6;
}

.menu-btn {
  display: block;
  margin: 40px auto 0;
  font-size: 1rem;
  padding: 12px 24px;
  text-align: center;
  margin-left: 15%;
}

.slideshow-container {
  max-width: 1200px;
  position: relative;
  margin: 60px auto;
  margin-left: 500px;
}

  .slideshow-container {
    margin: 40px auto;
    margin-left: 0;
    padding: 0 16px;
    max-width: 100%;
  }

  .mySlides img {
    max-width: 100%;
    height: auto;
  }

  .prev, .next {
    font-size: 20px;
    padding: 12px;
  }

  .desktop-gallery {
    display: none;
  }

  

  .map-section {
    margin-left: 0;
    max-width: 100%;
    padding: 60px 20px;
  }

  .map-text h2 {
    font-size: 1.8rem;
  }

  .map-text p {
    font-size: 1rem;
  }

  .map-container iframe {
    width: 100%;
    height: 350px;
    margin-left: 0;
  }


  .review-section {
    padding: 60px 20px;
    margin-left: 0;
    max-width: 100%;
    text-align: center;
  }

  .review-title {
    font-size: 1.8rem;
  }

  .review-subline {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }


  footer {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }

  .footer-inner {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-inner img {
    width: 100px;
  }

  .footer-inner .social-icons img {
    width: 52px;
    margin: 0 8px;
  }


  .impressum-section {
    margin-left: 0;
    max-width: 100%;
    padding: 40px 20px;
  }

  .impressum-section h1 {
    font-size: 2rem;
    text-align: center;
  }

  .impressum-section h2 {
    font-size: 1rem;
    margin-top: 30px;
    text-transform: uppercase;
  }

  .impressum-section p {
    font-size: 0.95rem;
  }

  .credits-section {
    padding: 30px 20px;
  }

  .credits-section p {
    font-size: 0.9rem;
  }

  .credits-section img {
    height: 32px;
  }


  .datenschutz-section {
    margin-left: 0;
    max-width: 100%;
    padding: 40px 20px;
  }

  .datenschutz-section h1 {
    font-size: 2rem;
    text-align: center;
  }

  .datenschutz-section h2 {
    font-size: 1.2rem;
    margin-top: 30px;
  }

  .datenschutz-section h3 {
    font-size: 1rem;
    margin-top: 20px;
  }

  .datenschutz-section p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hosting-logo {
    max-width: 140px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}


@media (min-width: 1023px) and (max-width: 1024px) {

  html, body {
    overflow-x: hidden;   /* Verhindert horizontales Scrollen */
    touch-action: pan-y;  /* Erlaubt nur vertikales Scrollen */
  }

  .sidebar {
    width: 200px;
    height: 96vh;
  }

  html {
    scroll-behavior: smooth;
  }

  .menu-grid {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 40px;
    margin-left: 0;
  }

  .menu-btn {
    margin-left: 0;
  }

  .menu-button{
    justify-content: center;
    display: flex;
    margin-left: 26%;
  
  }

  
  .menu-label {
    margin-left: 0;
  }

  
 
  .info-banner{
    left: -70px;
    width: 1120px;
  }

  .logo img{
    margin-top: 30px;
  }

  .hero{
    height: 70vh;
  }

  .main-content{
    margin-left: 20px;
    width: 1000px;
  }

  .about-section{

    background-color: #f2eee9;
    margin-left: 210px;
    max-width: calc(100% - 300px);
    width: 800px;
  }

  .about-image{
    margin-left: 20px;
  }

  .team-section{

    background-color: #2f2f2f;
    color: #f2eee9;
    padding: 80px 0;
    margin-left: 145px;
    margin-top: 60px;
    max-width: 100%;
  }

  

 .map-section{
  background-color: #f2eee9;
  margin-left: 300px;
 }

  .slideshow-container{
    max-width: 1200px;
    position: relative;
    margin: 100px 30px;
    margin-left: 300px;
}



.map-text{
  text-align: center;
    margin-bottom: 40px;
    margin-left: 40px;
}



.map-section{
  background-color: #2f2f2f;
    padding: 80px 40px;
    margin-left: 220px;
}

.map-container iframe{
  border-radius: 12px;
  width: 90%;
  height: 450px;
  margin-left: 60px;
}

.review-section{
  padding: 50px 50px;
  background-color: #f2eee9;
  margin-left: 260px;
  text-align: center;
  max-width: 100%;
}


.footer-inner{
  margin-left: -100px;
  }

}



@media (min-width: 431px) and (max-width: 1000px){
  html, body {

    overflow-x: hidden;   /* Verhindert horizontales Scrollen */
    touch-action: pan-y;  /* Erlaubt nur vertikales Scrollen */
}

.sidebar {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

.mobile-info-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-icon {
  background-color: #b38b6d;
  border-radius: 999px;
  padding: 12px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: width 0.3s ease;
  white-space: nowrap;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.info-icon img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-right: 0;
  transition: margin 0.3s ease;
}

.info-icon.expanded {
  width: auto;
  padding-left: 12px;
  padding-right: 16px;
}

.info-icon.expanded img {
  margin-right: 8px;
}

.info-icon span {
  margin-left: 8px;
}




.main-content {
  margin-left: 0px;
  width: auto;
}
.scroll-down {
  margin-left: -0px;
}

.info-banner {
  display: none;
}

.mobile-header-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.mobile-header-logo img {
  width: 190px;
  height: auto;
}

.mobile-legal-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
}

.mobile-legal-links a {
  text-decoration: none;
  color: #2f2f2f;
  opacity: 0.9;
}

.mobile-legal-links a:hover {
  opacity: 1;
}

.mobile-legal-links .dot {
  color: #aaa;
}

.hero-bg {
  width: 100%;
}

  .hero {
    justify-content: flex-end;
    height: 75vh;
  }

  .hero-overlay {
    justify-content: center;

    padding: 30px 15px;
    text-align: center;
  }

  .hero-text {
    padding: 0;
    text-align: center;
  }

  .hero-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero h1 span {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 auto;
  }

.hero-line {
width: 40vh;
}

.about-section {
padding: 20px;
margin-left: 40px;
max-width: 100%;
}

.about-content {
gap: 40px;
padding: 0;
}

.about-text {
min-width: auto;
}

.about-text h2 {
font-size: 2.2rem;
margin: 15px 0 20px;
}

.about-text p {
font-size: 1.1rem;
line-height: 1.6;
}

.about-list li {
font-size: 1rem;
}

.about-btn {
font-size: 1rem;
padding: 12px 24px;
}

.about-facts {
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 70px;
  margin-right: -50px;
}

.fact .number {
font-size: 2rem;
}

.fact .label {
font-size: 1rem;
}

.about-image {
max-width: 300px;
margin-left: 160px;
}

.about-image img {
width: 100%;
max-height: 300px;
}

.team-section {
margin-left: 0;
max-width: 100%;
padding: 50px 20px;
}

.team-inner {
flex-direction: column;
padding: 0;
gap: 40px;
}

.team-image {
margin-left: 0;
max-width: 100%;
}

.team-image img {
width: 100%;
border-radius: 10px;
}

.team-content {
margin-left: 0;
min-width: auto;
}

.team-label {
font-size: 0.95rem;
text-align: left;
}

.team-content h2 {
font-size: 2.2rem;
margin-bottom: 20px;
}

.team-content p {
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 20px;
}

.team-btn {
display: none;
padding: 12px 24px;
font-size: 1rem;
}

.menu-section {
padding: 40px 20px;
margin-left: 0;
max-width: 100%;
}

.menu-label {
font-size: 1rem;
margin-bottom: 30px;
}

.menu-grid {
flex-direction: column;
gap: 40px;
align-items: center;
}

.menu-item {
width: 100%;
}

.menu-item img {
height: auto;
max-height: 400px;
}

.menu-text h3 {
font-size: 1.5rem;
}

.menu-text p {
font-size: 1rem;
line-height: 1.6;
}

.menu-btn {
display: block;
margin: 40px auto 0;
font-size: 1rem;
padding: 12px 24px;
text-align: center;
}

.slideshow-container {
max-width: 1200px;
position: relative;
margin: 60px auto;
margin-left: 500px;
}

.slideshow-container {
  margin: 40px auto;
  margin-left: 0;
  padding: 0 16px;
  max-width: 100%;
}

.mySlides img {
  max-width: 100%;
  height: auto;
}

.prev, .next {
  font-size: 20px;
  padding: 12px;
}

.desktop-gallery {
  display: none;
}



.map-section {
  margin-left: 0;
  max-width: 100%;
  padding: 60px 20px;
}

.map-text h2 {
  font-size: 1.8rem;
}

.map-text p {
  font-size: 1rem;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  margin-left: 0;
}


.review-section {
  padding: 60px 20px;
  margin-left: 0;
  max-width: 100%;
  text-align: center;
}

.review-title {
  font-size: 1.8rem;
}

.review-subline {
  font-size: 0.95rem;
  margin-bottom: 30px;
}


footer {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}

.footer-inner {
  max-width: 100%;
  margin: 0 auto;
}

.footer-inner img {
  width: 100px;
}

.footer-inner .social-icons img {
  width: 52px;
  margin: 0 8px;
}


.impressum-section {
  margin-left: 0;
  max-width: 100%;
  padding: 40px 20px;
}

.impressum-section h1 {
  font-size: 2rem;
  text-align: center;
}

.impressum-section h2 {
  font-size: 1rem;
  margin-top: 30px;
  text-transform: uppercase;
}

.impressum-section p {
  font-size: 0.95rem;
}

.credits-section {
  padding: 30px 20px;
}

.credits-section p {
  font-size: 0.9rem;
}

.credits-section img {
  height: 32px;
}


.datenschutz-section {
  margin-left: 0;
  max-width: 100%;
  padding: 40px 20px;
}

.datenschutz-section h1 {
  font-size: 2rem;
  text-align: center;
}

.datenschutz-section h2 {
  font-size: 1.2rem;
  margin-top: 30px;
}

.datenschutz-section h3 {
  font-size: 1rem;
  margin-top: 20px;
}

.datenschutz-section p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.hosting-logo {
  max-width: 140px;
  margin-top: 20px;
  margin-bottom: 20px;
}
}






  

  

  
 
  

  
  



  

















