/*SLOGAN ENDE*/
  /* 1. Allgemeine Stile (gelten immer) */
  #Slogan {
    padding: 1%; /* Behält den äußeren Abstand bei */
  }

  #Slogan .slogan-container {
    display: flex; /* Aktiviert Flexbox für die Layout-Steuerung */
    align-items: center; /* Zentriert die Elemente vertikal zueinander */
    gap: 20px; /* Erzeugt einen Abstand zwischen den Elementen */
  }
  
  /* Stile für den "Anfrage"-Button */
  #Slogan .btn-anfrage {
    font-family: "Ubuntu Condensed", Arial, sans-serif;
    display: inline-block; /* Notwendig für Padding und Abstände */
    background-color: #93a86a;
    color: #ffffff; /* Weißer Text für hohen Kontrast (Barrierefreiheit) */
    padding: 10px 20px;
    border-radius: 5px; 
    text-decoration: none; 
    font-weight: bold;
    font-size: 1.4em;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Weicher Übergang beim Hovern */
  }

  /* Visuelles Feedback bei Maus-Hover und Tastatur-Fokus (Barrierefreiheit) */
  #Slogan .btn-anfrage:hover,
  #Slogan .btn-anfrage:focus {
    background-color: #7d9059; /* Etwas dunklerer Grünton */
    outline: 2px solid #005fcc; /* Deutlicher Fokus-Rahmen für Tastaturbenutzer */
    outline-offset: 2px;
  }

  /* Container für E-Mail und Telefon */
  #Slogan .contact-details {
    display: flex;
    gap: 20px; /* Abstand zwischen E-Mail und Telefon */
  }

  #Slogan .contact-info a {
    text-decoration: none;
    color: inherit; /* Vererbt die Textfarbe */
    display: inline-flex; /* Richtet Bild und Text in einer Zeile aus */
    align-items: center;
  }

  #Slogan .contact-info a:hover,
  #Slogan .contact-info a:focus {
    text-decoration: underline; /* Klassisches Feedback für Links */
  }

  #Slogan .contact-info img {
    height: 14px;
    margin-right: 8px; /* Abstand zwischen Icon und Text */
  }


  /* 2. Desktop-Ansicht (größer als 959px) */
  @media (min-width: 960px) {
    #Slogan .slogan-container {
      justify-content: space-between; /* Schiebt "Anfrage" nach links und "Kontaktdetails" nach rechts */
    }
  }


  /* 3. Mobile-Ansicht (bis 959px) */
  @media (max-width: 959px) {
    #Slogan .slogan-container {
      flex-direction: column; /* Stellt die Elemente untereinander dar */
      align-items: center; /* Zentriert die gestapelten Elemente horizontal */
      text-align: center;
    }
    #Slogan .contact-details {
      flex-direction: column; /* Stellt auch E-Mail und Telefon untereinander dar */
      gap: 15px;
    }
  }
/*SLOGAN ENDE*/

#ContStartseiteHTMLDiv {
    clear: both;
    padding: 1%;
    font-size: 1.1em;
    line-height: 1.4em;
	background-color: rgba(255,255,255,0.2);
	
}

/*FOOTER INHALT*/

#BottContHtmlDiv {
    background-color: rgba(255,255,255,1);
}

#adresse h2 {
     background:url("../ms02Pics/symbol2.svg");
    background-repeat: no-repeat;
    background-size: 80px 80px;
    background-position: 0% 50%;
    padding-left: 80px;
    min-height: 80px;
}
@media screen and (max-width: 959px) {
    #adresse h2 {
        padding-left: inherit;
        padding-top: 100px;
        background-size: 85px 85px;
    background-position: 50% 0%;
    }
}



/* Überschrift (Michaela Frauenberger) */
#adresse .frauenberger-heading {
  line-height: 1.2em;
  color: rgba(147, 178, 106, 1);
  font-size: 1.7em;
}

/* Telefon-Link - Flexbox für saubere Ausrichtung */
.telefon-wrapper .telefon-link:hover {
  background-color: black!important;
   color: white!important;
}

.telefon-wrapper .telefon-link {
  display: inline-flex; /* Richtet Icon und Text in einer Zeile aus */
  align-items: center;    /* Zentriert Icon und Text vertikal */
  gap: 8px;               /* Abstand zwischen Icon und Text */
  
  text-decoration: none!important;
  padding: 10px 20px;
  background-color: rgba(147, 178, 106, 1);
  font-size: 1.25em;
  color: white;
  border-radius: 5px; /* Optional: für abgerundete Ecken */
}

/* Telefon-Icon im Link */
.telefon-wrapper .telefon-link img {
  max-height: 18px;
  height: 18px; /* Feste Höhe für Konsistenz */
}

/* Impressum-Link */
.impressum-link {
  margin-top: 5%;
}

.impressum-link a {
  font-size: 0.8em;
}

/* iFrame für die News */
#NEWS iframe {
  border: 0;
  margin: 0;
  height: 190px;
  width: 100%;
  overflow: hidden;
}

/* "Letzte Änderung"-Block */
#letzteAend {
  margin-bottom: 1%;
  margin-top: 1%;
  font-size: 1em;
  max-width: 200px;
}

/* ============================================= */
/* Mobile Ansicht (bis 959px Breite)             */
/* ============================================= */
@media screen and (max-width: 959px) {
  #adresse .qualifikationen-liste {
    /* Setzt den Aufzählungspunkt IN den Textfluss */
    list-style-position:inside;
    
    /* Entfernt den Standard-Einzug des Browsers */
    padding-left:0;
  }
}
#cookieaendern, #SucheButton {
  padding: 0;
  background-color: black;
  max-width: 200px!important;
}
#cookieaendern:hover, #SucheButton:hover {
  padding: 0;
  background-color: black;
  max-width: 200px!important;
}

#cookieaendern button, #SucheButton {
  background-color: black;
  border:0;
  padding:15px;
  color: white;
  border-radius: 3px;
  -webkit-border-radius: 3px;
}

#cookieaendern button:hover, #SucheButton:hover, #SucheButton a:hover {
  background-color: rgba(0,0,0,0.7);
  border:0;
  padding:15px;
  color: white;
  border-radius: 3px;
  -webkit-border-radius: 3px;
}

#SucheButton {
  background-image: url("/lib/imgAllg/lupeW.svg");
  background-repeat: no-repeat;
  background-position: 15px 50%;
}

/*FOOTER INHALT ENDE */



#SlideShowContainer {
    margin-bottom: 2%;
    margin-top: 2%;
}
#SlideShowContDiv {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

#TopLogo img {
    margin-left: auto;
    margin-right: auto;
}




/*HINTERGRUENDE */
.primaryContainer0,
.primaryContainer2,
.primaryContainer3,
.primaryContainer6,
.primaryContainer10,
.primaryContainer21,
.primaryContainer99
{
      height: auto;
    margin-left: auto;
    margin-right: auto;
    min-height: 100%;
    width: 100%;
    background-color: rgba(147,178,106,1);
/*	background: url("../ms02Pics/hint2.jpg") no-repeat center center fixed;*/
  -webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-attachment: fixed;
    position: relative;
    
    
      -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
    
    -webkit-animation-delay: 0.4s;
-moz-animation-delay: 0.4s;
animation-delay: 0.4s;
    
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
  animation-name: fadeIn;
    
   
}


/*HINTERGRUENDE ENDE */


#ContStartseiteHTMLDiv {
    clear: both;
    padding: 1%;
    font-size: 1.1em;
    line-height: 1.4em;
	background-color: rgba(255,255,255,0.2);
	
}



/*############################################# 959 */
/*mobile HINTERGRÜNDE*/
@media screen and (max-width: 959px) {
   
	body {
		background-color: #000;
	}
    
  #TOP {
    background-color: rgba(255,255,255,0)
  }
    
    #NEWS {
        width: 100%;
        height: 450px;
        max-height: 410px;
    }
    #NEWS iframe {
         width: 100%;
        min-height: 450px;
        max-height: 410px;
        overflow: scroll;
        
    }
    
}

/*mobile HINTERGRUENDE ENDE */
    
    