@charset "utf-8";
/* CSS Document */

html,
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

/* rubik-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/rubik-v28-latin/rubik-v28-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* unna-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Unna';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/unna-v23-latin/unna-v23-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}





.style-header {
    position: relative;
}

.style-header h1 {
    font-family: 'Unna';
    font-size: 12vw;
    color: #FFFFFF;
    position: absolute;
    top: 80.6%;
    left: 35%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
	pointer-events: none; /* Füge diese Zeile hinzu, um Mausklicks zu deaktivieren */
}


.style-header img {
    width: 100%;
    height: auto;
}


.style-nav {
	margin-top: 10px;
}

.style-nav ul {
    list-style: none;
    display: flex;
    padding: 20px;    
    background-color: #1A727A;
    text-align: center;
    justify-content: center; /* Mittig zentrieren */
}

.style-nav ul li {
    padding: 0 2vw; /* Proportionaler Abstand zur Fensterbreite verwenden */
}

.style-nav ul li a {
    text-decoration: none;
    color: #FFFFFF;
    font-family: 'Rubik';
    font-size: 20px;
	line-height: 2;
    transition: color 0.3s; /* Fügt eine sanfte Übergangsanimation hinzu */
}


.style-nav ul li a.highlight {
    color: #5FA9B0;
}


.style-nav ul li a:hover {
    color: #beae95; /* Ändert die Textfarbe beim Hovern */
}

/* Media Query für kleine Bildschirme (z. B. Smartphones) */
@media only screen and (max-width: 800px) {
    .style-nav ul {
        flex-direction: column; /* Ändert die Richtung auf Spalte */
        align-items: center; /* Zentriert die Elemente horizontal */
    }
}

@media only screen and (max-width: 800px) {
    .style-nav ul li {
        margin: 0 10px; /* Fester Abstand für kleine Bildschirme */
    }
}


.style-main ul {
	list-style-type: none;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap; /* Damit die Bilder untereinander platziert werden können */
    justify-content: center;
    padding: 0px;
	
	
}

.style-main ul li {
    display: flex;
    align-items: flex-start; /* Elemente oben ausrichten */
    margin-bottom: 0px;
    width: 180px; /* Festlegen einer Breite für jedes Listenelement */
}

.style-main ul li a {
    text-decoration: none;
    font-family: 'Rubik';
    color: #000;
    display: flex;
    flex-direction: column; /* Elemente als Spalten anordnen */
    text-align: center; /* Elemente links ausrichten */
    margin-left: 15px; /* Abstand zwischen Bild und Text */
	padding-top: 10px;
	transition: color 0.3s; /* Hinzufügen einer Transitionsanimation für die Schriftfarbe */
}

.style-main ul li a:hover {
    color: #beae95; /* Ändere die Farbe auf die gewünschte Farbe beim Überfahren */
}

.style-main ul li a p {
	margin-top: 10px;
	line-height: 1.25;
}

.style-main ul li img {
    max-width: 150px; /* Maximalbreite des Bildes anpassen */
    height: 150px; /* Setze die Höhe der Bilder auf denselben Wert */
	transition: transform 0.3s; /* Hinzufügen einer Transitionsanimation für die Transformation (Verkleinerung) */
}

.style-main ul li:hover img {
    transform: scale(0.9); /* Verkleinere das Bild beim Überfahren */
}


.style-main li div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Text zentriert ausrichten */
}
.style-main li ul {
      list-style-type: none;
      padding: 0;
      margin: 0;
}


.style-main li ul li {
     margin: 5px 0;
}


.style-main h2 {
	font-family: 'Rubik';
}

.style-main p {
	font-family: 'Rubik';
	line-height: 1.5;
}


.empty {
	padding: 5px;    
    background-color: #1A727A;
	
}

.Bio {
    margin-left: auto;
    margin-right: auto;
    max-width: 40%; /* Standardbreite für große Bildschirme */
}

/* Media Queries für schrittweise Anpassung der Breite */
@media (max-width: 1656px) {
    .Bio {
        max-width: 50%;
    }
}

@media (max-width: 1392px) {
    .Bio {
        max-width: 60%;
    }
}

@media (max-width: 1128px) {
    .Bio {
        max-width: 70%;
    }
}

@media (max-width: 864px) {
    .Bio {
        max-width: 80%;
    }
}

@media (max-width: 600px) {
    .Bio {
        max-width: 90%; /* maximale Breite für kleine Bildschirme */
    }
}




.Auszeichnungen {
    text-align: center;
    
}



.Auszeichnungen ol {
    list-style-type: none;
    padding: 0;
}

.Auszeichnungen ol li {
    margin-bottom: 4%;
    font-family: 'Rubik';
    break-inside: avoid; /* Verhindert, dass Listenpunkte zerteilt werden */
}

.Museen {
    text-align: center;
}

.Museen ol {
    list-style-type: none;
    padding: 20px;
    margin: 0;
	max-width: 450px;
    margin-left: auto;
    margin-right: auto; /* Zentriere die Liste */
}

.Museen ol li {
    margin-bottom: 4%;
    font-family: 'Rubik';
    break-inside: avoid; /* Verhindert, dass Listenpunkte zerteilt werden */
    line-height: 1.5;
}

/* Responsive Styling */
@media (min-width: 1201px) {
    /* Drei Spalten */
    .Auszeichnungen ol {
        column-count: 3;
        column-gap: 10%;
		margin: 0 10vw;
    }
}

@media (max-width: 1200px) {
    /* Zwei Spalten */
    .Auszeichnungen ol {
        column-count: 2;
        column-gap: 10%;
		margin: 0 10vw;
    }
}

@media (max-width: 800px) {
    /* Eine Spalte */
    .Auszeichnungen ol {
        column-count: 1;
		margin: 0 10vw;
    }
}




.Literatur {
	padding: 0 25vw;	
}

.Weblinks {
	padding: 0 25vw;	
}

.Einzelnachweise {
	padding: 0 25vw;	
}




.style-footer {
  position: relative;
  bottom: 0;
  width: 100%;
}

.style-footer ul {
  list-style: none;
  display: flex;
  padding: 10px;
  background-color: #1A727A;
  text-align: center;
  justify-content: center; /* Mittig zentrieren */
}

.style-footer ul li {
  padding: 0.5vw 3vw; /* Proportionaler Abstand zur Fensterbreite verwenden */
}

.style-footer ul li a {
  padding: 0.5vw 3vw; /* Proportionaler Abstand zur Fensterbreite verwenden */
  font-family: 'Rubik';
  color: #FFFFFF;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s; /* Fügt eine sanfte Übergangsanimation hinzu */
}

.style-footer ul li a:hover {
  color: #beae95; /* Ändert die Textfarbe beim Hovern */
}

	


.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #1A727A;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 5px;
    border: 2px solid #ffffff; /* Weiße Kontur mit 2px Breite hinzufügen */
    opacity: 0;
    transition: opacity 0.3s;
}

.scroll-to-top.show {
    opacity: 1;
}

.arrow {
    font-size: 20px;
    color: #ffffff;
}





