*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;

}

header{
    background-color: #d3e4ec;

}

li {
    list-style: none;
}

a {
    color: #4c4c4c;
    text-decoration: none;
}




h2 {
    text-align: center;
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar{
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;

}



.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.nav-branding{
    font-size: 2rem;
    color: #4c4c4c;
    padding: 0;
    font-weight: normal;
    margin: 5px;
 
}
.nav-branding img{
    height: 20vh;
    width: auto;
}
@media(max-width:768px) {
    .nav-branding{
        font-size: 1rem;
        color: #4c4c4c;
        padding: 0;
        font-weight: normal;
    }

    .nav-branding img{
        height: 10vh;
        width: auto;
    }
}

.nav-link {
    position: relative; /* FÃ¼ge diese Zeile hinzu, um eine relative Positionierung zu ermÃ¶glichen */
}

.nav-link::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0; /* Platziere das Pseudoelement am unteren Rand des Elternelements (nav-link) */
    left: 0; /* Ausrichtung am linken Rand */
    width: 0;
    height: 2px;
    background-color: black;
    transition: 0.3s ease;
}

.nav-link:hover::before {
    width: 100%; /* Hier wird die Breite auf 100% gesetzt, um den Unterstrich von links nach rechts anzuzeigen */
}





.hamburger{
    display: none;
    cursor: pointer;
    background-color: #d3e4ec;
    margin: 5px;
}

.bar {
    display: block;
    width: 30px;
    height: 4px;
    margin: 0 0 5px auto; /* Hier wird der untere Rand auf 5px gesetzt */
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: black;
}



@media(max-width:768px) {
    .hamburger{
        display: block;
    }
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu{
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: #d3e4ec;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        z-index: 1;
    }

    .nav-item{
        margin: 16px 0;
    }

    .nav-menu.active{
        left: 0;
    }
    main{
        margin-left: 0; /* Same as the width of the sidenav */
        
    }
}



.mixed-container {
    display: flex;
    justify-content: space-between;
    margin: 50px auto;
    margin-top: 50px;
    width: 90%;
    gap: 50px;
    
}

.text-container {

    flex: 1;
    width: 50%;
}

.image-container {
    flex: 1;
    width: 50%;
    text-align: center;
}

.image-container img {
    width: 100%;
    height: auto;
}

@media(max-width:768px) {
    .mixed-container {
        flex-direction: column; /* Ändert die Richtung von nebeneinander zu untereinander */
    }

    .text-container, .image-container {
        flex: 1;
        width: 100%;
    
    }

}




.text {
    font-size: 18px;
    line-height: 1.5;
    color: #4c4c4c;
    margin-top: 10px;
    width: 90%;
    padding-bottom: 10px;
    

    font-weight: bold;
    padding: 10px;

}
.textw {
    font-size: 18px;
    line-height: 1.5;
    color: #4c4c4c;
    margin-top: 10px;
    width: 100%;
    padding: 10px;
    font-weight: bold;


}


.h1-text{
    color: #4c4c4c;
    padding-left: 10px;
}

blockquote {
    color: white;
    font-style: italic;
    padding: 25px;
    text-align: center;
    background-color: #92afbf;
    width: 100%;
    margin: 50px auto;
    font-size: 20px;
   
}






footer {
    height: 15vh;
    color: #4c4c4c;
    background-color: #d3e4ec;
    padding: 20px; /* Innenabstand für den Footer-Inhalt */
    text-align: center; /* Zentrierte Ausrichtung des Textes */
}
.footer-link {
   
    text-decoration: none; /* Keine Unterstreichung für die Links */
    margin-right: 20px; /* Abstand zwischen den Links */
}
.footer-link:hover {
    text-decoration: underline; /* Unterstreichung beim Hover-Effekt */
}
.instaLogo {
    width: 30px; /* Breite des Instagram-Logos */
    margin: 0 10px; /* Abstand um das Logo */
    vertical-align: middle; /* Vertikale Ausrichtung des Logos */
}
.copyright {
    margin-top: 5vh; /* Abstand nach oben für das Copyright */
}



.kontaktformular {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
}

.kontaktformular h2 {
    text-align: center;
    margin-bottom: 20px;
}

.kontaktformular form {
    display: flex;
    flex-direction: column;
}

.kontaktformular input[type="text"],
.kontaktformular input[type="email"],
.kontaktformular textarea {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.kontaktformular textarea {
    height: 150px;
}

.kontaktformular button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.kontaktformular button:hover {
    background-color: #0056b3;
}

@media(max-width: 768px) {
    .kontaktformular {
        padding: 15px;
    }

    .kontaktformular h2 {
        font-size: 24px;
    }

    .kontaktformular button {
        padding: 8px 16px;
    }
}





.containerul p{
    font-size: 18px;
    line-height: 1.5;
    color: #4c4c4c;
    margin-top: 10px;
    width: 90%;
    padding: 10px;

    font-weight: bold;

}

.containerul ul {
    list-style-type: none;
    padding: 0;
}

.containerul ul li {
    font-size: 18px;
    line-height: 1.5;
    color: #4c4c4c;
    margin-top: 10px;
    width: 90%;
    padding-left: 10px;
    font-weight: bold;

}

.containerul ul li::before {
    content: "•";
    margin-right: 10px;
    color: #333333;

}


.listit {
    margin: 50px auto;
    margin-top: 50px;
    margin-left: 5%;
    margin-right: 5%;
}

.listit p{
    font-size: 18px;
    line-height: 1.5;
    color: #4c4c4c;
    margin-top: 10px;
    width: 90%;
    padding: 10px;

    font-weight: bold;

}

.listit ul {
    list-style-type: none;
    padding: 0;
}

.listit ul li {
    font-size: 18px;
    line-height: 1.5;
    color: #4c4c4c;
    margin-top: 10px;
    width: 90%;
    padding-left: 10px;
    font-weight: bold;

}

.listit ul li::before {
    content: "•";
    margin-right: 10px;
    color: #333333;
}

.Schön {
    color: #4c4c4c;
    padding-left: 10px;
}

.impressum-main{
    text-align: center;
    padding: 20px;
}

.space{
    height: 20px;
}

.textn {
    font-size: 18px;
    line-height: 1.5;
    color: #4c4c4c;
    margin-top: 10px;
    
    padding-bottom: 10px;
    margin-left: 5%;
    margin-right: 5%;

    font-weight: bold;

}

.abc {
    margin-left: 5%;
    margin-right: 5%;
    background-color:  #d3e4ec;
    border-radius: 10px;
    text-align: center;
}

.texta {
    font-size: 18px;
    line-height: 1.5;
    color: #4c4c4c;
     margin-bottom: 10px;
    width: 100%;
    padding: 10px;
   
    font-weight: bold;
} 

.newtext {
    font-size: 18px;
    line-height: 1.5;
    color: #4c4c4c;
    margin-top: 10px;
    width: 90%;
    padding-bottom: 10px;
    

    font-weight: bold;
    padding: 10px;
    margin-left: 20px;
}


















  
  /* Dropdown button on hover & focus */
  .dropbtn:hover, .dropbtn:focus {
    background-color: #2980B9;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: #4c4c4c;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}
  
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  .show {display:block;}


  button {
    color: #4c4c4c;
    text-decoration: none;
    background-color:  #d3e4ec;
    border: none;
    font-size: 1rem;
 
  }


 
.aktuelles {
    color:  #4c4c4c;
    text-align: center;
}

#image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 5%;
}

#image-container img {
    max-width: 100%;
    height: auto;
    margin: 10px; /* Optional: Fügt Abstand zwischen den Bildern hinzu */
}

.text-container-preis{
    flex: 1;
    width: 40%;
    background-color:  #d3e4ec;
    border-radius: 10px;
    text-align: center;
 
}

@media(max-width:768px) {
   

    .text-container-preis{
        flex: 1;
        width: 100%;
    
    }

}


.info-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.info-container h1 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}
.info {
    margin-bottom: 20px;
}
.info strong {
    font-weight: bold;
    margin-right: 5px;
}
.info p {
    margin: 10px 0;
    font-size: 18px;
}

.wko-link {
    color: #007bff; /* Blaue Farbe für den Link */
    text-decoration: none; /* Keine Unterstreichung */
    font-weight: bold; /* Fetter Text */
}
.wko-link:hover {
    text-decoration: underline; /* Unterstreichung beim Hover-Effekt */
}


