/* Google Fonts Imports */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Noto+Sans+Linear+A&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com');
@import url('https://fonts.gstatic.com');

/* Vereinheitlichter CSS-Stil aus allen HTML-Dateien */
    .about-container {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 20px;
    }
    .about-text {
      flex: 1 1 60%;
      text-align: left;
    }
    .about-image {
      flex: 1 1 30%;
      display: flex;
      justify-content: center;
    }
    .about-image img {
      height: auto;
      object-fit: cover;
      max-height: 300px;
      border-radius: 8px;
    }
    /* Responsive für kleinere Bildschirme */
    @media (max-width: 768px) {
      .about-container {
        flex-direction: column;
        text-align: center;
      }
      .about-text,
      .about-image {
        flex: 1 1 100%;
      }
      .about-image img {
        max-height: none;
        width: 100%;
      }
    }
    .gallery-wrapper {
      position: relative;
      max-width: 90%;
      margin: auto;
      overflow: hidden;
    }
    
    
    .gallery-carousel::-webkit-scrollbar {
      display: none;
    }
    @media (max-width: 768px) {
      .gallery-btn {
        display: none;
      }
    }
    
    .gallery-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 30px;
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      padding: 10px;
      cursor: pointer;
      z-index: 1;
      border-radius: 50%;
    }
    .gallery-btn:hover {
      background-color: rgba(0, 0, 0, 0.7);
    }
    .gallery-btn.left {
      left: 0;
    }
    .gallery-btn.right {
      right: 0;
    }
    /* Lightbox Styling */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
    }
    .lightbox-content {
      max-width: 90%;
      max-height: 90%;
      border-radius: 8px;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    }
    .lightbox .close {
      position: absolute;
      top: 30px;
      right: 50px;
      font-size: 40px;
      color: white;
      cursor: pointer;
      font-weight: bold;
    }
    /* Grundlegendes Styling */
    body {
        padding-top: 70px; /* Höhe der fixierten Leiste ausgleichen */
      margin: 0;
      line-height: 1.6;
      background-color: #e5dddd;
      font-family: "Roboto", serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      font-variation-settings:
        "wdth" 100;
    }
    .noto-sans-linear-a-regular {
      font-family: "Noto Sans Linear A", serif;
      font-weight: 400;
      font-style: normal;
    }
    .dancing-script-abc {
      font-family: "Dancing Script", serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
    }
    /* Feststehende Navigationsleiste */
    nav {
     position: fixed;           /* fixiert die Leiste */
  top: 0;                    /* immer ganz oben */
  left: 0;                   /* gesamte Seitenbreite */
  width: 100%;
  z-index: 1000;             /* über anderen Elementen */
  background: #7fa151;
  color: #e5dddd;
  padding: 15px 0;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: "Dancing Script", serif;
  font-style: normal;
  font-size: 24px;
    }
    nav a {
      color: #e5dddd;
      text-decoration: none;
      margin: 0 15px;
    }
    nav a:hover {
      text-decoration: underline;
    }
    /* Inhalt der Seite */
    .hero {
        width: 60%;
  margin: 0 auto; /* Zentriert das Element horizontal */
      background-image: url('./media/img/banner.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-position-y: -125px;
      height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #e5dddd;
      text-align: center;
      width:80%;
    }
    .galleryImg {
      padding: 15px;
      height: 200px;
    }
    .sideImg {
      height: 400px;
    }
    .hero h1 {
      font-size: 3rem;
    }
    .centerDiv{
      
  margin: auto;
  width: 50%;
  padding: 10px;
    }
    h2 {
      font-family: "Dancing Script", serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      background-color: #7fa151;
      font-size: 32px;
    }
    section {
      padding: 25px;
      text-align: center;
    }
    footer {
      text-align: center;
      background: #333;
      color: #e5dddd;
      padding: 20px 0;
      margin-top: 50px;
    }
    .link {
      color: #7fa151;
    }
    #philosophie {
      padding-bottom: 0px;
    }
    .underline {
      text-decoration: underline;
    }
    .bold {
      font-weight: bold;
    }
    .linkButton{
      display:inline-block; background:#7fa151; color:#fff; padding:10px 20px; border-radius:8px; text-decoration:none; margin-top:15px;
    }
    @media (max-width: 480px) {
        .hero {
        height: 140px;
        background-position-y: center;
        width: 100%;
      }
      .hero h1 {
        font-size: 1.5rem;
      }
    }
    .gallery-wrapper {
  position: relative;
  max-width: 90%;
  margin: auto;
  overflow: hidden;
}


.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
}
.gallery-btn:hover {
  background-color: rgba(0,0,0,0.7);
}
.gallery-btn.left {
  left: 0;
}
.gallery-btn.right {
  right: 0;
}
    /* Lightbox Styling */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}
.lightbox .close {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  font-weight: bold;
}
    /* Grundlegendes Styling */
    body {
      padding-top: 70px; /* Höhe der fixierten Leiste ausgleichen */
      margin: 0;
      line-height: 1.6;
      background-color: #e5dddd;
      font-family: "Roboto", serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      font-variation-settings:
        "wdth" 100;
    }
    .noto-sans-linear-a-regular {
      font-family: "Noto Sans Linear A", serif;
      font-weight: 400;
      font-style: normal;
    }
    .dancing-script-abc {
      font-family: "Dancing Script", serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
    }
    /* Feststehende Navigationsleiste */
    nav {
     position: fixed;           /* fixiert die Leiste */
  top: 0;                    /* immer ganz oben */
  left: 0;                   /* gesamte Seitenbreite */
  width: 100%;
  z-index: 1000;             /* über anderen Elementen */
  background: #7fa151;
  color: #e5dddd;
  padding: 15px 0;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: "Dancing Script", serif;
  font-style: normal;
  font-size: 24px;
    }
    nav a {
      color: #e5dddd;
      text-decoration: none;
      margin: 0 15px;
    }
    nav a:hover {
      text-decoration: underline;
    }
    /* Inhalt der Seite */
    .hero {
        width: 60%;
  margin: 0 auto; /* Zentriert das Element horizontal */
      background-image: url('./media/img/banner.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-position-y: -125px;
      height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #e5dddd;
      text-align: center;
      width:80%;
    }
    .galleryImg {
      padding: 15px;
      height: 200px;
    }
    .sideImg {      
      height: 400px;
    }
    .hero h1 {
      font-size: 3rem;
    }
    h2 {
      font-family: "Dancing Script", serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      background-color: #7fa151;
      font-size:32px;      
    }
    section {
      padding: 50px;
      text-align: center;
    }
    footer {
      text-align: center;
      background: #333;
      color: #e5dddd;
      padding: 20px 0;
      margin-top: 50px;
    }
    .link {
      color: #7fa151;
    }
    #philosophie{
      padding-bottom:0px;
    }
    @media (max-width: 480px) {
      .hero {
        height: 140px;
        background-position-y: center;
      }
      .hero h1 {
        font-size: 1.5rem;
      }
    }
     .about-image {
      flex: 1 1 30%;
      display: flex;
      justify-content: center;
    }
    .about-image img {
      height: auto;
      object-fit: cover;
      max-height: 300px;
      border-radius: 8px;
    }
    .gallery-wrapper {
  position: relative;
  max-width: 90%;
  margin: auto;
  overflow: hidden;
}


.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
}
.gallery-btn:hover {
  background-color: rgba(0,0,0,0.7);
}
.gallery-btn.left {
  left: 0;
}
.gallery-btn.right {
  right: 0;
}
    /* Lightbox Styling */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}
.lightbox .close {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  font-weight: bold;
}
    /* Grundlegendes Styling */
    body {
       padding-top: 70px; /* Höhe der fixierten Leiste ausgleichen */
      margin: 0;
      line-height: 1.6;
      background-color: #e5dddd;
      font-family: "Roboto", serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      font-variation-settings:
        "wdth" 100;
    }
    .noto-sans-linear-a-regular {
      font-family: "Noto Sans Linear A", serif;
      font-weight: 400;
      font-style: normal;
    }
    .dancing-script-abc {
      font-family: "Dancing Script", serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
    }
  nav {
     position: fixed;           /* fixiert die Leiste */
  top: 0;                    /* immer ganz oben */
  left: 0;                   /* gesamte Seitenbreite */
  width: 100%;
  z-index: 1000;             /* über anderen Elementen */
  background: #7fa151;
  color: #e5dddd;
  padding: 15px 0;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: "Dancing Script", serif;
  font-style: normal;
  font-size: 24px;
    }
    nav a {
      color: #e5dddd;
      text-decoration: none;
      margin: 0 15px;
    }
    nav a:hover {
      text-decoration: underline;
    }
    /* Inhalt der Seite */
    .hero {
        width: 60%;
  margin: 0 auto; /* Zentriert das Element horizontal */
      background-image: url('./media/img/banner.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-position-y: -125px;
      height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #e5dddd;
      text-align: center;
      width:80%;
    }
    /* Inhalt der Seite */    
    .galleryImg {
      padding: 15px;
      height: 200px;
    }
    .sideImg {
      height: 400px;
    }
    .hero h1 {
      font-size: 3rem;
    }
    h2 {
      font-family: "Dancing Script", serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      background-color: #7fa151;
      font-size:32px;      
    }
    section {
      padding: 50px;
      text-align: center;
    }
    footer {
      text-align: center;
      background: #333;
      color: #e5dddd;
      padding: 20px 0;
      margin-top: 50px;
    }
    table{
      width:50%;
      display:inline-table;
    }
    .link {
      color: #7fa151;
    }
    #philosophie{
      padding-bottom:0px;
    }
    .width25{
      width:25%;
    }
    .tableHeadLine{
      text-decoration: underline;
      text-align:left;
    }
    .bold{
      font-weight:bold;
    }
    #preistabelle {     
      width: 30%;
      border-collapse: collapse;
      font-size: 1em;
    }
    #preistabelle td {
      padding: 8px 12px;
        border-radius: 6px;
    }
    #preistabelle tr:not(:last-child) td {
      border-bottom: 6px solid transparent;
    }
    #preistabelle td:first-child {
      font-weight: bold;     
    }
    .green{
       color: #7fa151;
       text-align: left;
    }
    .subinfo{
      font-size: small;
      font-weight: 400 !important;
    }
      @media (max-width: 480px) {
          #preistabelle {
      width: 100%;
          }
      .hero {
        height: 140px;
        background-position-y: center;
      }
      .hero h1 {
        font-size: 1.5rem;
      }
    }
    .gallery-wrapper {
  position: relative;
  max-width: 90%;
  margin: auto;
  overflow: hidden;
}


.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
}
.gallery-btn:hover {
  background-color: rgba(0,0,0,0.7);
}
.gallery-btn.left {
  left: 0;
}
.gallery-btn.right {
  right: 0;
}
    /* Lightbox Styling */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}
.lightbox .close {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  font-weight: bold;
}
    /* Grundlegendes Styling */
    body {
       padding-top: 70px; /* Höhe der fixierten Leiste ausgleichen */
      margin: 0;
      line-height: 1.6;
      background-color: #e5dddd;
      font-family: "Roboto", serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      font-variation-settings:
        "wdth" 100;
    }
    .noto-sans-linear-a-regular {
      font-family: "Noto Sans Linear A", serif;
      font-weight: 400;
      font-style: normal;
    }
    .dancing-script-abc {
      font-family: "Dancing Script", serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
    }
    /* Feststehende Navigationsleiste */
   nav {
     position: fixed;           /* fixiert die Leiste */
  top: 0;                    /* immer ganz oben */
  left: 0;                   /* gesamte Seitenbreite */
  width: 100%;
  z-index: 1000;             /* über anderen Elementen */
  background: #7fa151;
  color: #e5dddd;
  padding: 15px 0;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: "Dancing Script", serif;
  font-style: normal;
  font-size: 24px;
    }
    nav a {
      color: #e5dddd;
      text-decoration: none;
      margin: 0 15px;
    }
    nav a:hover {
      text-decoration: underline;
    }
    /* Inhalt der Seite */
    .hero {
        width: 60%;
  margin: 0 auto; /* Zentriert das Element horizontal */
      background-image: url('./media/img/banner.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-position-y: -125px;
      height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #e5dddd;
      text-align: center;
      width:80%;
    }
    .galleryImg {
      padding: 15px;
      height: 200px;
    }
    .sideImg {
      height: 400px;
    }
    .hero h1 {
      font-size: 3rem;
    }
    h2 {
      font-family: "Dancing Script", serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      background-color: #7fa151;
      font-size:32px;      
    }
    section {
      padding: 50px;
      text-align: center;
    }
    footer {
      text-align: center;
      background: #333;
      color: #e5dddd;
      padding: 20px 0;
      margin-top: 50px;
    }
    .link {
      color: #7fa151;
    }
    #philosophie{
      padding-bottom:0px;
    }
    .underline{
      text-decoration: underline;
    }
    @media (max-width: 480px) {
      .hero {
        height: 140px;
        background-position-y: center;
      }
      .hero h1 {
        font-size: 1.5rem;
      }}
    .gallery-wrapper {
  position: relative;
  max-width: 90%;
  margin: auto;
  overflow: hidden;
}


.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
}
.gallery-btn:hover {
  background-color: rgba(0,0,0,0.7);
}
.gallery-btn.left {
  left: 0;
}
.gallery-btn.right {
  right: 0;
}
    /* Lightbox Styling */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}
.lightbox .close {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  font-weight: bold;
}
    /* Grundlegendes Styling */
    body {
      padding-top: 70px; /* Höhe der fixierten Leiste ausgleichen */
      margin: 0;
      line-height: 1.6;
      background-color: #e5dddd;
      font-family: "Roboto", serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      font-variation-settings:
        "wdth" 100;
    }
    .noto-sans-linear-a-regular {
      font-family: "Noto Sans Linear A", serif;
      font-weight: 400;
      font-style: normal;
    }
    .dancing-script-abc {
      font-family: "Dancing Script", serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
    }
    /* Feststehende Navigationsleiste */
    nav {
     position: fixed;           /* fixiert die Leiste */
  top: 0;                    /* immer ganz oben */
  left: 0;                   /* gesamte Seitenbreite */
  width: 100%;
  z-index: 1000;             /* über anderen Elementen */
  background: #7fa151;
  color: #e5dddd;
  padding: 15px 0;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: "Dancing Script", serif;
  font-style: normal;
  font-size: 24px;
    }
    nav a {
      color: #e5dddd;
      text-decoration: none;
      margin: 0 15px;
    }
    nav a:hover {
      text-decoration: underline;
    }
    /* Inhalt der Seite */
    .hero {
        width: 60%;
  margin: 0 auto; /* Zentriert das Element horizontal */
      background-image: url('./media/img/banner.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-position-y: -125px;
      height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #e5dddd;
      text-align: center;
      width:80%;
    }
    .galleryImg {
      padding: 15px;
      height: 200px;
    }
    .sideImg {      
      height: 400px;
    }
    .hero h1 {
      font-size: 3rem;
    }
    h2 {
      font-family: "Dancing Script", serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      background-color: #7fa151;
      font-size:32px;      
    }
    section {
      padding: 50px;
      text-align: center;
    }
    footer {
      text-align: center;
      background: #333;
      color: #e5dddd;
      padding: 20px 0;
      margin-top: 50px;
    }
    .link {
      color: #7fa151;
    }
    #philosophie{
      padding-bottom:0px;
    }
    @media (max-width: 480px) {
      .hero {
        height: 140px;
        background-position-y: center;
      }
      .hero h1 {
        font-size: 1.5rem;
      }
    }
     .about-image {
      flex: 1 1 30%;
      display: flex;
      justify-content: center;
    }
    .about-image img {
      height: auto;
      object-fit: cover;
      max-height: 300px;
      border-radius: 8px;
    }
    .gallery-wrapper {
  position: relative;
  max-width: 90%;
  margin: auto;
  overflow: hidden;
}


.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
}
.gallery-btn:hover {
  background-color: rgba(0,0,0,0.7);
}
.gallery-btn.left {
  left: 0;
}
.gallery-btn.right {
  right: 0;
}
    /* Lightbox Styling */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}
.lightbox .close {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  font-weight: bold;
}
    /* Grundlegendes Styling */
    body {
      padding-top: 70px; /* Höhe der fixierten Leiste ausgleichen */
      margin: 0;
      line-height: 1.6;
      background-color: #e5dddd;
      font-family: "Roboto", serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      font-variation-settings:
        "wdth" 100;
    }
    .noto-sans-linear-a-regular {
      font-family: "Noto Sans Linear A", serif;
      font-weight: 400;
      font-style: normal;
    }
    .dancing-script-abc {
      font-family: "Dancing Script", serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
    }
    /* Feststehende Navigationsleiste */
    nav {
     position: fixed;           /* fixiert die Leiste */
  top: 0;                    /* immer ganz oben */
  left: 0;                   /* gesamte Seitenbreite */
  width: 100%;
  z-index: 1000;             /* über anderen Elementen */
  background: #7fa151;
  color: #e5dddd;
  padding: 15px 0;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: "Dancing Script", serif;
  font-style: normal;
  font-size: 24px;
    }
    nav a {
      color: #e5dddd;
      text-decoration: none;
      margin: 0 15px;
    }
    nav a:hover {
      text-decoration: underline;
    }
    /* Inhalt der Seite */
    .hero {
        width: 60%;
  margin: 0 auto; /* Zentriert das Element horizontal */
      background-image: url('./media/img/banner.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-position-y: -125px;
      height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #e5dddd;
      text-align: center;
      width:80%;
    }
    .galleryImg {
      padding: 15px;
      height: 200px;
    }
    .sideImg {      
      height: 400px;
    }
    .hero h1 {
      font-size: 3rem;
    }
    h2 {
      font-family: "Dancing Script", serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      background-color: #7fa151;
      font-size:32px;      
    }
    section {
      padding: 50px;
      text-align: center;
    }
    footer {
      text-align: center;
      background: #333;
      color: #e5dddd;
      padding: 20px 0;
      margin-top: 50px;
    }
    .link {
      color: #7fa151;
    }
    #philosophie{
      padding-bottom:0px;
    }
    @media (max-width: 480px) {
      .hero {
        height: 140px;
        background-position-y: center;
      }
      .hero h1 {
        font-size: 1.5rem;
      }
    }
     .about-image {
      flex: 1 1 30%;
      display: flex;
      justify-content: center;
    }
    .about-image img {
      height: auto;
      object-fit: cover;
      max-height: 300px;
      border-radius: 8px;
    }
/* Verbesserte Galerie für Smartphones */
.gallery-carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  transition: transform 0.5s ease;
}

.gallery-carousel img {
  flex: 0 0 auto;
  width: 200px;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  scroll-snap-align: start;
}

@media (max-width: 768px) {
  .gallery-btn {
    display: none;
  }
}