   /* Schriftarten */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Roboto:wght@400;500&display=swap');


/* Allgemeine Stile */
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
color: #333;
background-color: #ffffff;
line-height: 1.6;
}

.container {
width: 90%;
max-width: 1200px;
margin: auto;
text-align: center;
}

.image-frame {
position: relative;
padding: 0;
box-shadow: none; /* Kein Schatten */
border: none; /* Kein Rahmen */
}

.image-frame img {
width: 100%; /* Bild wird immer an die verfügbare Breite angepasst */
border-radius: 0; /* Keine abgerundeten Ecken */
}

.photo-credit {
font-size: 0.8rem;
color: #666;
text-align: right;
margin-top: 5px;
font-style: italic;
}

/* BUTTONS */
.btn {
display: inline-block;
padding: 0.8rem 1.5rem;
font-size: 1rem;
color: #ffffff;
background-color: #ff8c42;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.btn:hover {
background-color: #e6762f;
}

/* SECTIONS */
.section {
padding: 4rem 1rem;
text-align: center;
background-color: #ffffff;
}

.section h2 {
font-family: 'Poppins', sans-serif;
font-size: 2rem;
color: #005f73;
margin-bottom: 1rem;
}

.section p {
font-size: 1.1rem;
color: #555;
line-height: 1.8;
}

/* PUBLIKATIONEN */
.publications-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
  text-align: left;
}

.publications-list li {
  margin-bottom: 2rem;  
}

.pub-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: #005f73;
}

.pub-authors {
color: #333;
}

.pub-journal {
font-style: italic;
color: #777;
}

.pub-link {
color: #ff8c42;
text-decoration: none;
}

.pub-link:hover {
text-decoration: underline;
}


/* Lehre */
.teaching-list {
list-style: none;
padding: 0;
margin: 0 auto;
max-width: 800px;
text-align: left;
}

.teaching-list li {
margin-bottom: 2rem;
}

.teaching-title {
font-family: 'Poppins', sans-serif;
font-size: 1.2rem;
font-weight: bold;
color: #005f73;
display: block;
margin-bottom: 0.5rem;
}

.teaching-details {
font-size: 1rem;
color: #777;
display: block;
}

/* Über mich */
#ueber-mich {
padding: 2rem 1rem;
background-color: #f5f8fa;
text-align: center;
}

#ueber-mich h2 {
font-family: 'Poppins', sans-serif;
font-size: 2.5rem;
color: #005f73;
margin-bottom: 2rem;
}

.ueber-mich-content {
max-width: 800px;
margin: 0 auto;
text-align: left;
}

.ueber-mich-content p {
font-size: 1.2rem;
color: #444;
line-height: 1.8;
margin-bottom: 1.5rem;
}

.ueber-mich-content .intro {
font-weight: bold;
color: #3b3b3b;
}

.contact-box {
margin-top: 3rem;
text-align: center;
}

.contact-box .call-to-action {
font-size: 1.2rem;
color: #005f73;
margin-bottom: 1.5rem;
}
.contact-button {
    text-align: center;
    margin-top: 20px; /* Abstand nach oben */
}

.contact-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px; /* Abstand innen */
    background-color: #004d66; /* Türkis */
    color: #ffffff; /* Weiß */
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none; /* Keine Unterstreichung */
    border-radius: 30px; /* Runde Ecken */
    border: none; /* Kein Rahmen */
    transition: background-color 0.3s ease, text-decoration 0.3s ease; /* Animation für Hover */
}

.contact-button a .icon {
    margin-right: 10px; /* Abstand zwischen Icon und Text */
    fill: currentColor; /* Passt Icon-Farbe an Textfarbe an */
    font-size: 1.2rem; /* Größe des Icons */
}

/* Hover-Effekt */
.contact-button a:hover {
    background-color: #ff8c42; /* Orange beim Hover */
    color: #ffffff; /* Weißer Text */
    text-decoration: underline; /* Unterstreichung beim Hover */
}


/* Allgemeiner Bereich für Beratung */

/* Einheitliche Formatierung für den Beratungstext */
.beratung-text {
    max-width: 800px; /* Gleiche Breite wie andere Abschnitte */
    margin: 0 auto; /* Zentriert den Text */
    text-align: left; /* Links ausgerichtet wie der "Über mich"-Abschnitt */
}

.beratung-text p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}



.section {
padding-top: 60px;
background-color: #f9f9f9;
text-align: center;
}

.section:last-child {
padding-bottom: 30px;
}

.container {
max-width: 1200px;
margin: 0 auto;
}

h2 {
color: #005F73;
font-size: 2rem;
margin-bottom: 40px;
}


#beratung h2 {
font-size: 2.5rem;
}

.services {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 20px;
}

.service-box {
background-color: #ffffff;
border: 1px solid #ddd;
border-radius: 10px;
padding: 20px;
width: 250px;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
transform: translateY(-10px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.icon-wrapper {
margin-bottom: 20px;
}

h3 {
color: #005F73;
font-size: 1.25rem;
margin-bottom: 10px;
}

p {
color: #333;
font-size: 0.95rem;
line-height: 1.5;
}

.cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 20px;
}

.card {
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
padding: 20px;
text-align: center;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
transform: translateY(-5px);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.card .icon {
margin-bottom: 10px;
}

.card h3 {
color: #005f73;
font-size: 1.2rem;
margin-bottom: 10px;
}

.card p {
font-size: 1rem;
color: #4a4a4a;
}


/* CTA Section Styling */
.cta-section {
text-align: center;
padding: 40px 20px;
border-radius: 10px;
}

.cta-content {
max-width: 800px;
margin: 0 auto;
}

.cta-text {
font-size: 1.2rem;
line-height: 1.8;
color: #333;
margin-bottom: 20px;
font-family: 'Roboto', sans-serif;
}
/* Kontakt-Sektion */
.contact-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.contact-section h2 {
    font-size: 2rem;
    color: #004d66;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Button-Styling */
.contact-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #004d66; /* Türkis */
    color: #ffffff; /* Weiße Schrift und Icon */
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: none; /* Entfernt zusätzliche Boxen */
}

/* Icon im Button */
.contact-button a .icon {
    margin-right: 10px;
    fill: currentColor; /* Icon-Farbe passt sich der Textfarbe an */
    width: 24px; /* Größeres Icon */
    height: 24px;
}

/* Hover-Effekt */
.contact-button a:hover {
    background-color: #ff8c42; /* Orange beim Hover */
    color: #ffffff; /* Weiße Schrift */
    text-decoration: underline; /* Unterstrichener Text */
    transform: translateY(-2px);
}

/* Active-Effekt */
.contact-button a:active {
    background-color: #e6762f; /* Dunkleres Orange beim Klicken */
    transform: translateY(0);
}


/* Testimonials */
.testimonials {
padding: 3rem 1rem;
background-color: #f9f9f9;
text-align: center;
}

.testimonials-title {
font-size: 2rem;
color: #005f73;
margin-bottom: 2rem;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
justify-content: center; /* Zentriert die Grid-Items */
}

.testimonial {
background-color: #ffffff;
border-radius: 8px;
padding: 1.5rem;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
text-align: center;
}

.testimonial-quote {
font-size: 1rem;
color: #333;
margin-bottom: 1rem;
line-height: 1.5;
flex-grow: 1;
}

.testimonial-name {
font-size: 1.2rem;
font-weight: bold;
color: #005f73;
margin: 0.5rem 0;
}

.testimonial-role {
font-size: 0.9rem;
color: #666;
}

@media (min-width: 1024px) {
  .testimonials-grid {
      max-width: 900px;
      margin: 0 auto;
  }
}

.testimonial-quote {
    font-family: 'Roboto', sans-serif; /* Verwende die richtige Schriftart */
    font-style: italic;
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1;
}

/* Zertifikate Styling - Anpassung */
.section {
padding: 2.2rem 1rem;
background-color: #f9f9f9;
}

.intro-text {
font-size: 1.2rem;
color: #555;
line-height: 1.8;
margin-bottom: 2rem;
}

.certificates {
display: flex;
flex-direction: column;
gap: 2rem;
}

.certificate-category {
padding: 1rem 0; /* Abstand oben und unten */
border: none; /* Keine Umrandung */
box-shadow: none; /* Kein Schatten */
}

.certificate-category h3 {
font-family: 'Poppins', sans-serif;
font-size: 1.5rem;
color: #005f73;
margin-bottom: 0.5rem;
border-bottom: 1px solid #ddd; /* Dünner Strich */ 
padding-bottom: 0.3rem;
}

.certificate-category ul {
list-style: none;
padding: 0;
margin: 0;
}

.hidden {
  display: none;
}

.certificate-category ul li {
font-size: 1rem;
line-height: 1.6;
color: #333;
margin-bottom: 1rem;
}

.certificate-category ul li strong {
color: #005f73;
}

.certificate-category ul li em {
color: #777;
font-style: italic;
}

/* Hover-Effekt entfernen */
.certificate-category:hover {
transform: none;
box-shadow: none;
transition: none;
}

.section {
padding: 4rem 1rem;
background-color: #f9f9f9;
}

.intro-text {
font-size: 1.2rem;
color: #555;
line-height: 1.8;
margin-bottom: 2rem;
}

.certificates {
display: flex;
flex-direction: column;
gap: 2rem;
}

.certificate-category {
background: #ffffff;
border: 1px solid #ddd;
border-radius: 8px;
padding: 1.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.certificate-category h3 {
font-family: 'Poppins', sans-serif;
font-size: 1.5rem;
color: #005f73;
margin-bottom: 1rem;
border-bottom: 2px solid #005f73;
padding-bottom: 0.5rem;
}

.certificate-category ul {
list-style: none;
padding: 0;
margin: 0;
}

.certificate-category ul li {
font-size: 1rem;
line-height: 1.6;
color: #333;
margin-bottom: 1rem;
}

.certificate-category ul li strong {
color: #005f73;
}

.certificate-category ul li em {
color: #777;
font-style: italic;
}

/* Hover-Effekt für Kategorien */
.certificate-category:hover {
transform: translateY(-5px);
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
}

/* Allgemeine Link-Stile */
a {
color: #ff8c42; /* Orange */
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 1.6rem;
    }
}

h3 {
    word-wrap: break-word; /* Für ältere Browser */
    overflow-wrap: break-word; /* Für moderne Browser */
    hyphens: auto; /* Automatische Silbentrennung */
}

#forschung p {
    text-align: left; /* Links ausgerichtet */
    margin-bottom: 1.5rem; /* Abstand zwischen den Absätzen */
    line-height: 1.8; /* Erhöht die Zeilenhöhe für bessere Lesbarkeit */
}