/*Kommentar*/
head, body{
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fdf6f0;
    color: rgb(107, 91, 51);
       
}

body{
    background-image: url(img/Hintergrundbild.jpg);
}

.logo{
    display: block;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    width: 150px;
    height: 150px;
}

/*Überschrift*/
.Ü1{
    display: flex; /*felxiebles layout modell wird aktiviert*/
    align-items: center; /*Zentrieren von oben nach unten*/
    justify-content: center;/*Zentrieren von links nach rechts*/ 
    color: rgb(107, 91, 51);
    text-align: center;
    
    
    
}

@media screen and (max-width: 324px)/*wenn 324px erreicht wird soll die überschrift kleiner werden*/
{
    .Ü1{
        display: flex; /*felxiebles layout modell wird aktiviert*/
        align-items: center; /*Zentrieren von oben nach unten*/
        justify-content: center;/*Zentrieren von links nach rechts*/
    }
}

@media screen and (max-width: 1241px)/*wenn 1241px erreicht wird soll die überschrift kleiner werden*/
{
    .Ü1{
        
        display: flex; /*felxiebles layout modell wird aktiviert*/
        align-items: center; /*Zentrieren von oben nach unten*/
        justify-content: center;/*Zentrieren von links nach rechts*/
        word-wrap: break-word;
        overflow-wrap: break-word;
        
    }
}

@media screen and (max-width: 470px)/*wenn 470px erreicht wird soll die überschrift kleiner werden*/
{
    .Ü1{
        
        display: flex; /*felxiebles layout modell wird aktiviert*/
        align-items: center; /*Zentrieren von oben nach unten*/
        justify-content: center;/*Zentrieren von links nach rechts*/
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/*texte*/
.Ü2{
    display: flex; /*felxiebles layout modell wird aktiviert*/
    align-items: center; /*Zentrieren von oben nach unten*/
    justify-content: center;/*Zentrieren von links nach rechts*/
    color: rgb(107, 91, 51);
    font-size: 12px;
    text-align: center;
    
}

.Ü3 {
    display: flex;
    flex-direction: column; /* Inhalt von oben nach unten anordnen */
    align-items: center; /* Inhalte horizontal zentrieren */
    justify-content: center; /* vertikal zentrieren (optional bei fester Höhe) */
    color: rgb(107, 91, 51);
    font-size: 14x;
    text-align: center;
    padding: 2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: auto;
    
}
.G3 {
    display: flex;
    flex-direction: column; /* Inhalt von oben nach unten anordnen */
    align-items: center; /* Inhalte horizontal zentrieren */
    justify-content: center; /* vertikal zentrieren (optional bei fester Höhe) */
    color: rgb(107, 91, 51);
    font-size: 14x;
    text-align: center;
    padding: 1rem;
    padding-bottom: 0.3rem;
    line-height: 1.6;
    max-width: 800px;
    margin: auto;
}

.G4 {
    display: flex;
    flex-direction: column; /* Inhalt von oben nach unten anordnen */
    align-items: center; /* Inhalte horizontal zentrieren */
    justify-content: center; /* vertikal zentrieren (optional bei fester Höhe) */
    color: rgb(107, 91, 51);
    font-size: 14x;
    text-align: center;
    padding: 0.4rem;
    padding-top: 0;
    line-height: 1.6;
    max-width: 800px;
    margin: auto;
}

/*Menuleiste*/
ul  {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color:#333;
    display: flex; /*felxiebles layout modell wird aktiviert*/
    align-items: center; /*Zentrieren von oben nach unten*/
    justify-content: center;/*Zentrieren von links nach rechts*/ 
    position: -webkit-sticky; /* Leiste fixieren*/
    position: sticky;/* Leiste fixieren*/
    top: 0;/* Leiste fixieren*/ 
    }

li  {
    float: left; /*mach da weiter wo das letzte aufgehört hat*/
    border-right: 1px solid #bbb; /*trennlinien weiß*/
    }

li a{
    font-size: 14px;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
.active{
    background-color: rgb(94, 177, 192);
}

li a:hover:not(.active){
    background-color: none;
}

li:last-child /*das letzte item bekommt keine weiße linie*/
{
    border-right: none;
}

@media screen and (max-width: 541px)/*wenn 541px erreicht wird werden die linien nicht mehr angezeigt*/
{
    li  {
        float: left; 
        border-right: 0px; 
        }
        
}
/*Ab hier gilt für burger Menu*/
.navbar{
    position:sticky;
    top: 0;
    background-color: #333;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0;
}

.menuliste li a{
display: block;
color: white;
padding: 14px 16px;
text-decoration: none;
}

.burger {
    display: none;
    font-size: 26px;
    color: white;
    padding: 14px 16px;
    cursor: pointer;
    margin-left: auto;
    
  }
  
  .menu-toggle {
    display: none;
  }
  
  @media screen and (max-width: 544px) 
  {
    .burger {
      display: block;
    }
  
    ul {
      display: none;
      flex-direction: column;
      width: 100%;
    }
  
    .menu-toggle:checked + .burger + ul {
      display: flex;
    }
  
    li {
      
      text-align: center;
      
    }
  }
/*bis hier her burgermenu code*/



/*PreisLeistungsBereich*/
.Leistungsboxen1{
    max-width: 100%;
    height: auto;
    display: flex;
    justify-content:space-evenly;/* Divs zwichen den bereich verteilen*/
}
.Leistungsbox1{
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-right: 1rem;
    margin-left: 1rem;
    width: 300px;
    height: auto;
    background-color:#bbb;
    border: 1px solid #333;
}

.Leistung{
    text-align: center;
    margin-top: 1rem;
    font-size: 16px;
}

.preis{
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0.4rem;
    font-size: 16px;
}

.LBild{
    height: 200px;
    width: 200px;
    margin: auto;
    margin-bottom: 1rem;
    
}
.button{
    background-color: #333;
    display: flex;
    justify-content: center;
}
.trenner{
    background-color: #333;
    height: 20px;
}

@media screen and (max-width: 662px){
    .Leistungsboxen1{

    max-width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;/*Div untereinander*/
    align-items: center;/*zentrieren*/
    }
}
/*PreisListeBereich*/

.PreisT{
   width: 100%;
   border-collapse: collapse;
}
td{
    width: 50%;
    padding: 12px;
}

th:first-child {
    text-align: left;
    padding: 12px;
  }

  /* Erste Spalte: linksbündig (Standard) */
  td:first-child {
    text-align: left;
    width: 70%;
  }

  /* Zweite Spalte (Preise): zentriert */
  td:last-child {
    text-align: center;
    width: 30%;
  }

  
/*Kontaktbereich*/

.responsive_map {/*maps responsive machen damit die karte sich anpasst */
    max-width: 400px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 12px;
    border: 1px solid #747272;
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.responsive_map iframe {/*maps responsive machen*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.form-container{
  max-width: 400px;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  background: transparent;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #747272;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);

}
.form-container h4 {
  margin-bottom: 20px;
  margin-top: 5px;
  font-size: 24px;
  color: #333;
  text-align: center;

}

label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  color: #555;
  
}

input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
  font-size: 16px; 
}


.Formbutton {
  margin-top: 20px;
  width: 100%;
  background-color:#333 ;
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color:#555 ;
}

@media (max-width: 600px) {
  .form-container {
    padding: 20px;
  }
  button {
    padding: 12px;
  }
}

* {
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .form-container h4 {
    font-size: 18px; /* kleinere Schrift auf Handy */
  }
}

::placeholder {
  font-size: 14px; /* Hier kannst du die gewünschte Größe einstellen */
  color: #888; /* Optional: Helle Farbe für den Platzhalter */
}

span{
    font-size: 1.5rem;
    text-decoration: underline;
    
}

.Ü2>p{
    font-size: 1rem;
}


/*Titelbild*/
 .hauptbild{
    border-radius: 10px; /* Rundet die Ecken leicht ab */
    width: 80%;
    height: auto;
    margin-top: 0.85rem;
    max-width: 400px;  /* aber nicht größer als 400px */
    max-height: 266px;
    display: block;
    margin-left: auto;
    margin-right: auto;
 }

/*googlebild*/
.GoogleBild {
border-radius: 10px; /* Rundet die Ecken leicht ab */
    width: 80%;
    height: auto;
    margin-top: 0rem;
    max-width: 400px;  /* aber nicht größer als 400px */
    max-height: 266px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*überunsbild*/
.uberunsbild{
    border-radius: 10px; /* Rundet die Ecken leicht ab */
    width: 80%;
    height: auto;
    margin-top: 0.85rem;
    max-width: 400px;  /* aber nicht größer als 400px */
    max-height: 266px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
 }


 /*Galeriebild*/
 .gal{
    border-radius: 10px; /* Rundet die Ecken leicht ab */
    width: 80%;
    height: auto;
    margin-bottom: 1.5rem;
    max-width: 400px;  /* aber nicht größer als 400px */
    max-height: 266px;
    display: block;
    margin-left: auto;
    margin-right: auto;
 }

 .Bildrandgalerie{
  border-radius: 12px;
  border: 1px solid #74727260;
  margin-bottom: 1px;
  margin-top: 1px;
 }


/*Galeriebild*/
 /* Allgemeine Styles für den Footer */
.footer {
  
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #333;
  margin-top: 40px;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer p {
  margin: 5px 0;
}

/* Links im Footer */
.footer-link {
  color: #333;
  text-decoration: underline;
  margin: 0 10px;
}

.footer-link:hover {
  color: #0056b3;
}

/* Social Media Links */
.social-links {
  margin-top: 10px;
}

.social-link {
  margin: 0 10px;
  color: #333;
  text-decoration: none;
}

.social-link:hover {
  color: #0056b3;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .footer-content {
    padding: 0 10px;
  }

  .footer p {
    font-size: 12px;
  }

  .social-links {
    margin-top: 15px;
  }

  .social-link {
    display: inline-block;
    margin: 5px 8px;
  }
}

@media (max-width: 480px) {
  .footer p {
    font-size: 11px;
  }

  .social-link {
    font-size: 12px;
  }
}

.DatenschutzT{
  background-color: transparent;
  display: block;
}
