body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

h2{

    font-size: 2em;
}

/* Main Menü */
header {
   width: 100%;
    background-color: #ffffffcf;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 10px 20px;
    box-sizing: border-box;
}

/* Main Menu Links */
.main-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* Logo auf der linken Seite */
.logo {
    margin-right: auto; /* Positioniert das Logo links */
}

/* Logo */
.logo img {
    width: 25%;
    max-width: 400px;
}

.menu-links {
    display: flex;
    justify-content: flex-end;
}

.menu-links a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 16px;
    padding: 15px;
    transition: background-color 0.3s;
}

.menu-links a:hover {
    background-color: #4444447a;
}

/* Hamburger Menu (nur sichtbar auf kleinen Bildschirmen) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
}

.hamburger div {
    background-color: rgb(0, 0, 0);
    height: 3px;
    margin: 4px 0;
    width: 30px;
}

/* Sidebar (Side Menu) */
.side-menu {
    position: fixed;
    top: 0;
    right: -250px; /* Startet rechts außerhalb des Bildschirms */
    width: 250px;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 1s ease; /* Sanfte Übergangsanimation */
    z-index: 999;
}

.side-menu a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 24px;
    padding: 15px;
    transition: background-color 0.3s;
}

.side-menu a:hover {
    background-color: #ffffff;
}

.grid-wrapper {
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 100vh;
  }

/* Schließen-Kreuz im Side-Menu */
.close-btn {
    color: rgb(0, 0, 0);
    font-size: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1001; /* Über dem Menü */
}

/* Responsives Design für mobile Geräte */
@media (max-width: 768px) {
    .menu-links {
        display: none; /* Versteckt die Links auf kleinen Bildschirmen */
    }

    .hamburger {
        display: flex; /* Zeigt das Hamburger-Icon an */
    }
    
    .side-menu.active {
        right: 0; /* Menu kommt von rechts */
    }
}

/*Startseite*/

    /* Slideshow */
    .slideshow {
        position: relative;
        overflow: hidden;
        height: 50%;
        object-fit: contain;
        justify-content: center;
        display: flex;
    }

    .slides {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .slide {
        min-width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }

    .slide img {
        
        width: 100%;
        height: 100%;
        object-position: top;
        object-fit: cover;
        align-items: center;
    }

    .slide-text {
    position: absolute;
    width: 70%;
    min-height: 100px;
    bottom: 30px; /* Adjust as needed */
    left: 5%; /* Adjust as needed */
    color: rgb(0, 0, 0); /* Text color */
    font-size: 1.3rem; /* Adjust text size */
    background-color: rgba(221, 224, 255, 0.542); /* Optional: Semi-transparent background */
    padding: 10px; /* Padding around the text */
    border-radius: 5px; /* Optional: Rounded corners for the text box */
    }

    /* Link button styling */
    .slide-button {
        display: inline-block;
        padding: 10px 0px;
        font-size: 1.7rem;
        color: rgb(0, 0, 0);
        background-color: rgba(255, 255, 255, 0); /* Semi-transparent background */
        text-decoration: none; /* Remove underline */
        border-radius: 5px; /* Rounded corners */
        cursor: pointer;
        font-weight: bold; /* Optional: Bold text */
        transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover effect */
    }

    /* Hover effect for the button */
    .slide-button:hover {
        background-color: rgba(0, 0, 0, 0); /* Lighter background */
        color: rgba(0, 0, 0, 0.607); /* Changes text color */
        transform: scale(1.02); /* Slight zoom on hover */
    }

    /* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: background-color 0.3s;
}

.prev:hover, .next:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.Vision{
   text-align: center;
   padding: 0px;
   font-size: 1.7em;
   margin-top: 5%;
}

/* Drei Kästchen mit Infos*/
.three-columns {
    display: flex;
    flex-wrap: wrap;
    width: 95%;
    justify-content:space-between;
    padding: 20px;
    gap: 20px;
}

.column {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    margin: 0 0px;
    margin-top: 10px;
    padding-top: 10px;
    padding: 10px;
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-right: 20px;
}

.column h2 {
    font-size: 1.5em;
    margin-bottom: 0px;
}

.column p {
    font-size: 0.9em;
    line-height: 1.6;
}

    /* Großes Bild mit Text */
    .large-image {
        position: relative;
        height: 50vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .large-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .large-image-text {
        position: absolute;
        color: rgb(0, 0, 0);
        background: rgba(255, 255, 255, 0.766);
        padding: 00px;
    }

/*Über uns*/

    /* Stil für den Bereich "Über uns" */
.ueber-uns {
    background-color: #ffffff;
    padding: 0px;
    text-align: center;
    align-items: center;
}

.a {
    color: #ff4d00;
}

.a:hover {
    color: #ff4d00a1;
}

/* Container, um die Spalten nebeneinander zu platzieren */
.hero {
    width: 100%;
    height: 50vh;
    display:flex;
    object-fit: cover;
    align-items: center;
    align-content: center;
}

.container {
    flex-direction: column; 
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}

.container2 {
    width: 80%;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
    margin: 0 auto;
}

/* Stil für die Spalten */
.spalte {
    width: 90%;
    align-items: center;
}

/* Stil für jede Person */
.person {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    align-content: center;
    text-align: justify;
}

.person-image {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}


.person-bild {
    width: 100%;
    height: auto;
    border-radius: 0%;
    object-position: top;
    object-fit: cover;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.2em;
    color: #333;
}

p {
    font-size: 1em;
    color: #000000;
    line-height: 1.6;
}

/*Produkt*/

.products-section {
    width: 100%;
    max-width: auto;
    align-items: center;
    text-align: center;
    padding-top: 6%;
    margin-bottom: 0px;
}

.products-title {
    margin-top: 80px;
    font-size: 1.7rem;
    padding: 10px 10px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Produkt-Container: Flexbox für nebeneinander stehende Produkte */
.product-container {
    flex-direction: line;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: center;
    gap: 20px;
    width: 90%;
    padding: 10px 10px;
    margin: 0 auto;
}

/* Produktrahmen */
.product-frame {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 80%;
    max-width: 600px;
    min-height: 560px;
    transition: transform 0.3s ease;
}

/* Produktbild */
.product-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    object-position: bottom;
}

/* Produktinformationen */
.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

/* Produkttitel */
.product-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0px;
}

/* Produktbeschreibung */
.product-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

/* Button für den Onlineshop */
.onlineshop-info button {
    background-color: #ff4d00;
    color: #fff;
    border: none;
    padding: 30px 40px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2em;
    margin-bottom: 40px;
}

/*Veranstaltung*/

/* Veranstaltungen Bereich */

.veranstaltungen {
    width: 100%;
    max-width: auto;
    align-items: center;
    text-align: center;
    padding-top: 6%;
    margin-bottom: 0px;
}

.events-title {
    margin-top: 80px;
    font-size: 1.7rem;
    padding: 10px 10px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Stil für einzelne Veranstaltung */
.veranstaltung-container {
    flex-direction: line;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: center;
    gap: 20px;
    width: 90%;
    padding: 10px 10px;
    margin: 0 auto;
}

.event-frame {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 80%;
    max-width: 600px;
    min-height: 520px;
    transition: transform 0.3s ease;
}

/* Bild der Veranstaltung */
.veranstaltung-bild {
    margin: 10px 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding-top: 20px;
    margin-left: 10px;
    object-fit: cover;
    margin: 0 auto;
}

/* Info-Bereich der Veranstaltung */
.veranstaltung-info {
    text-align: center;
    padding: 20px;
    flex: 1;
}

/* Titel der Veranstaltung */
.veranstaltung-info h3 {
  text-align:center;
    font-size: 1.2em;
    margin-top: 0;
    color: #333;
}

/* Beschreibung und Datum */
.veranstaltung-info p {
   font-size: 0.9em;
    margin: 10px 0;
    color: #555;
}

/* Button für die Anmeldung */
.veranstaltung-info button {
    background-color: #ff4d00;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
}

.veranstaltung-info button:hover {
    background-color: #ff4d00a1;
}

/* Kontaktseite*/

    /* Kontaktformular */

    .contact-container{
        padding-top: 13%;
        width: 90%;
        height: 100%;
        align-items: center;
        text-align: center;
        padding-bottom: 40px;
        margin: 0 auto;
    }

    .contact-form {
        text-align: left;
        margin: 20px auto;
        max-width: 95%;
    }

    .contact-form label {
        display: block;
        margin-bottom: 5px;
    }

    .contact-form input, .contact-form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .contact-form button {
        align-content: center;
        width: 100%;
        background-color: #333;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-bottom: 100px;
    }

    .form-container {
        max-width: 600px;
        margin: 0 auto;
        background: #ffffff;
        padding: 40px;
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
        margin-top: 10%;
      }
      
      h1 {
        font-size: 28px;
        margin-bottom: 20px;
        color: #2e8b57;
      }
      
      p {
        font-size: 18px;
        line-height: 1.6;
      }
      
      button {
        margin-top: 30px;
        padding: 12px 24px;
        background-color: #2e8b57;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }
      
      button:hover {
        background-color: #256d46;
      }


    .Impressum{
        margin-top: 7%;
        padding: 40px 20px;
        width: 100%;
        height: 100%;
marin:0 auto;
marin-right: 10px;

    }
    /* Footer */
    footer {
        object-position: bottom;
        background-color: #333;
        margin-bottom: -20px;
        margin-top: 0px;
        height: 100px;
        width: 100%;
        color: white;
        text-align: center;
        padding:10px;
        font-size: 0.9em;
    }

    footer a {
        align-items: center;
        padding: 10px;
        color: white;
        text-decoration: none;
        margin: 10px 10px;
    }

    .person-image-aufbau {
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
        height: auto;
        margin-left: 0px;
    }
    
    
    .person-bild-aufbau {
        width: 200%;
        height: auto;
max-height: 800px;
        border-radius: 0%;
        object-position: top;
        object-fit: cover;
        margin-top: -80px;
        margin-bottom: -45px;
        margin-left: -50%;
    }
      
      .text-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 1.0rem;
        font-weight: bold;
        background: rgba(0, 0, 0, 0.5); /* halbtransparenter Hintergrund */
        padding: 10px 20px;
        padding-bottom: 50px;
        border-radius: 8px;
        text-align: center;}

        .overlay-button {
            display: inline-block;
            background-color :rgba(255, 77, 0,0.7);
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 1rem;
            transition: background-color 0.3s ease;
          }
          
          .overlay-button:hover {
            background-color: #ff4d00a1;
          }
    