body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fdfdfd;
}
a{
    color: #000000;
    text-decoration: none;
}
.Slogen{
    width: 70%;
}
.logo{
    width: 30px
}

header {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    padding: 10px;
    text-align: center;
    color: black;
    font-weight: bold;
    border-top: 5px solid black;
    border-bottom: 5px solid black;
    position: relative;
}
.menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
    width: 52px;
    position: absolute;
    margin-top: -2vh;
  }
  .menu:hover{
    background-color: transparent;
  }
  .line {
    fill: none;
    stroke: rgb(0, 0, 0);
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
  }
  .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
  }
  .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  

.menu-dropdown {
    position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: none;
        position: absolute;
        background: white;
        width: 200px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        overflow: hidden;
}


.menu-dropdown.open {
    display: block;
}

.menu-dropdown a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: black;
    border-bottom: 1px solid #ddd;
}

.menu-dropdown a:hover {
    background: #4ea4a5;
    color: white;
}

@media (max-width: 768px) {
    .menu {
        background-color: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        padding: 0;
        width: 52px;
        position: relative;
        margin-top: -2vh;
      }
    .menu-dropdown {
        position: relative;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.95);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        display: none; 
        position: fixed;
        top: 120px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
}

    .menu-dropdown a {
        font-size: 18px;
        padding: 15px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }    
}

button {
    background-color: #4ea4a5; 
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: white;
    border-radius: 5px;
    margin: 5px;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: #178b86; /* noch etwas dunkler */
}

.logo {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Arial Black', sans-serif;
}
.divider {
    border-top: 2px solid black;
    margin: 10px 0;
}
.slideshow-container {
    max-width: 100%;
    margin: 20px auto 0 auto;
    overflow: hidden;
}
.slides {
    display: none;
    width: 100%;
}
.active {
    display: block;
}
.booking-process {
    text-align: center;
    padding: 40px;
}
.booking-process h2 {
    margin-bottom: 30px;
}
.steps-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.step {
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    width: 250px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.step:hover {
    transform: translateY(-5px);
}
.step strong {
    font-size: 18px;
}
.kontakinfobox{
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    width: 50%;
    border-radius: 8px;
    transition: transform 0.3s ease;
    margin-left: auto;
    margin-right: auto;	
}
.services {
    text-align: center;
    padding: 50px;
}
.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.service-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s ease;
}
.service-item:hover {
    transform: translateY(-5px);
}
.service-item span {
    font-weight: bold;
    background: #4ea4a5;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 10px;
}
        .map-section {
            background: linear-gradient(to right, #4ea4a5, #4ea4a5);
            color: white;
            padding: 50px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        iframe {
            width: 100%;
            max-width: 800px;
            height: 450px;
            border: none;
        }
        .map-text {
            max-width: 500px;
            padding-left: 20px;
        }
        @media (min-width: 768px) {
            .map-section {
                flex-direction: row;
                justify-content: center;
            }
            .map-text {
                padding-left: 20px;
            }
        }
        @media (max-width: 767px) {
            .map-text {
                padding-left: 0;
                text-align: center;
            }
        }

.contact-section {
    background: #4ea4a54d;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-info {
    max-width: 500px;
}
.contact-box { 
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}
.contact-box h3 {
    margin-bottom: 10px;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer-section.social-media {
    width: 100%;
    text-align: center;
}

.bottom-footer {
    background: #4ea4a5;
    color: white;
    text-align: center;
    padding: 10px;
}
.safety-section {
    text-align: center;
    padding: 50px;
}
.safety-section h2 {
    max-width: 800px;
    margin: 0 auto 30px;
    font-weight: normal;
}
.safety-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.safety-item {
    background: #fafafa;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    width: 220px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}
.safety-item:hover {
    transform: translateY(-5px);
}
.safety-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}
.safety-item h3 {
    margin-bottom: 10px;
}

button {
    cursor: pointer;
}

@media (min-width: 1024px) {
.steps-container {
justify-content: space-between;
max-width: 900px;
margin: 0 auto;
}

.step {
width: 300px;
}

.kontakinfobox {
width: 350px;
}

.services-list {
max-width: 1100px;
margin: 0 auto;
}

.service-item {
width: 350px;
}

.safety-container {
max-width: 1100px;
margin: 0 auto;
}

.safety-item {
width: 280px;
}

.map-section {
flex-direction: row;
align-items: flex-start;
padding: 70px;
}

.map-text {
padding-left: 50px;
max-width: 600px;
}

.contact-section {
flex-direction: row;
justify-content: space-around;
}

.contact-info {
max-width: 600px;
}
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #ffffff;
    color: rgb(0, 0, 0);
    padding: 20px;
    flex-wrap: wrap;
}
.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}
.footer-section h3 {
    margin-bottom: 10px;
}
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.social-icons img {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.social-icons img:hover {
    transform: scale(1.1);
}
.footer-bottom {
    background: #94e5e6;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}


.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: left;
}
.about-text {
    max-width: 600px;
}
.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}