@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;500&family=Quicksand:wght@300;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat&family=Quicksand:wght@300;600&display=swap");
@import url(http://fonts.googleapis.com/css?family=Chewy);
:root {
  --main-brand-color: steelblue;
  --primary-color: #243848;
  --secondary-color: #bcddf7;
  --secondary-color-light: #6D3539;
  --text-color: #ffffff;
  --secondary-text-color: lightgreen;
}

* {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background-color: var(--primary-color);
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  color: var(--text-color);
}

h1 {
  font-size: 4rem;
  line-height: 100%;
}

.subhead {
    margin-top: 25px;
    text-align: justify;
    line-height: normal;
    color: var(--main-brand-color);
}

h2 {
  font-size: 3rem;
  text-align: center;
  padding: 0.5em 0;
  border-top: solid 3px var(--secondary-color);
  border-bottom: solid 3px var(--secondary-color);
}

h3 {
  font-size: 2.5rem;
}

.subheading {
    margin-top: 25px;
    text-align: justify;
    line-height: normal;
    color: var(--text-color);
}

header {
  padding: 100px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.header_text {
  width: 850px;
}

.profilbild2 {
  display: none;
}

.profilbild1 {
  width: 400px;
  height: 400px;
  max-width: 80vw;
  max-height: 80vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 50%;
  border: 20px solid var(--main-brand-color);
}
.profilbild1 img {
  width: 600px;
  transform: perspective(800px) rotateY(25deg) scale(0.9) rotateX(10deg);
  filter: blur(2px);
  opacity: 0.2;
  transition: 0.6s ease all;
}
.profilbild1 img:hover {
  transform: perspective(800px) rotateY(-15deg) translateY(50px) rotateX(10deg) scale(1.2);
  filter: blur(0);
  opacity: 1;
}

nav {
  margin-bottom: 120px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav a {
  color: var(--main-brand-color);
  text-decoration: none;
  position: relative;
  padding: 3px;
}
nav a:hover {
  color: var(--text-color);
}
nav a::after {
  content: "";
  height: 2px;
  width: 0;
  background: var(--main-brand-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 150ms ease-in-out;
}
nav a:hover::after {
  width: 100%;
}

#toggle-button {
  display: none;
}

label[for=toggle-button] {
  display: none;
}

label[for=toggle-button] span {
  font-size: 40px;
}

.flex-container {
  margin-top: 50px;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 1em;
}

.card {
  width: 20%;
  height: 30em;
  max-width: calc(75% - 40px);
  background-color: var(--secondary-color-light);
  border-radius: 50px;
  padding: 1em;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  overflow: auto;
}
.card h3 {
  font-size: 1.5rem;
  padding: 0.5em 0;
}
.card ul li {
  text-align: left;
  list-style-type: none;
}
.card p {
  margin: 0;
  font-size: 1.25rem;
  text-align: left;
}
.card a {
  background-color: var(--main-brand-color);
  width: max-content;
  padding: 15px 40px;
  border-radius: 50px;
  margin: 0 auto;
  text-decoration: none;
  color: var(--text-color);
  border: 4px solid var(--main-brand-color);
  transition: 150ms ease-in-out;
}
.card a:hover {
  background: transparent;
}

.essay_pic {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}
.essay_pic img {
  width: 100%;
  height: auto;
}

.card * {
  text-align: center;
}

.card_essay {
  width: 90%;
  height: 90%;
}
.card_essay p {
  text-align: left;
}
.card_essay ol {
  padding-left: 10%;
}
.card_essay ol li {
  text-align: left;
  padding-bottom: 0.25em;
}

.card_ly p {
  font-size: 1.2rem;
}

/* --------------------------------About Me-Sektion -------------------------------- */
#about_me_section {
  padding: 100px 0;
  background-color: var(--main-brand-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap-reverse;
}
#about_me_section img {
  width: 400px;
  max-width: calc(90% - 30px);
  border: 15px solid var(--text-color);
}

.about_me_container {
  width: 750px;
  max-width: 90%;
}
.about_me_container h2 {
  border: none;
}
.about_me_container p {
  text-align: left;
  line-height: normal;
}

/* --------------------------------Writer-Sektion -------------------------------- */
#writer_section {
  padding: 70px 0;
  background-color: var(--primary-color);
}
#writer_section p {
  padding: 0.5em 0;
}

.button {
  position: absolute;
  height: 2em;
  bottom: 2em;
  align-self: center;
}

/* --------------------------------Further Me-Sektion -------------------------------- */
#further_me_section {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap-reverse;
  justify-content: center;
  gap: 10%;
  background-color: var(--primary-color);
  margin-bottom: 2em;
}

.facts-container {
  width: 45%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  overflow: hidden;
}
.facts-container h3 {
  width: 100%;
  font-size: 1.25rem;
  padding-left: 0.5em;
  margin-bottom: 0.5em;
}

.facts_item {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 25em;
  padding: 0.5em 0;
  font-size: 1rem;
  background-color: var(--secondary-color-light);
}
.facts_item ul {
  text-decoration: none;
  list-style-type: none;
  font-size: 1.25rem;
}
.facts_item ul li span {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--secondary-color);
}
.facts_item img {
  height: 150px;
  width: 150px;
}
.facts_item span {
  font-weight: bold;
  color: var(--secondary-color);
}
.facts_item h3 {
  font-size: 1.5rem;
  font-weight: bold;
}

.facts_item_halb {
  width: 50%;
  height: auto;
  overflow: scroll;
}
.facts_item_halb ul {
  padding-left: 2em;
}

.facts_item_voll {
  width: 100%;
  height: auto;
  overflow: scroll;
}
.facts_item_voll ul {
  padding-left: 2em;
}

.ib_row {
  display: flex;
  flex-direction: row;
  gap: 1em;
}

.bild_umfliessen {
  width: 400px;
  height: 300px;
  margin-top: 1em;
  float: left; /* Lässt den Text rechts neben dem Bild fließen */
  margin-right: 20px; /* Fügt einen Abstand rechts vom Bild hinzu */
  margin-bottom: 10px; /* Fügt einen Abstand unter dem Bild hinzu */
}

.ib_column {
  display: flex;
  flex-direction: column;
}

#videos .kind img {
  height: 200px;
}

#videos .kind:nth-child(3) img {
  height: 100px;
}

#videos .textbereich {
  max-width: 100%;
}

/* -------------------------- Filmgalerie Videos ------------------- */
.video-container {
  width: 15em;
  height: auto;
}

.video-container video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

footer {
  padding: 70px;
  background-color: var(--secondary-color);
}
footer h2 {
  font-size: 50px;
  text-align: center;
}

@media (max-width: 1300px) {
  .facts_item_halb, .facts_item_voll ul {
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .card {
    width: 40%;
    border-radius: 5px;
  }
  .card h3 {
    font-size: 1.1rem;
    padding: 0.5em 0;
  }
  .card p {
    font-size: 1.1rem;
    line-height: 1.2;
  }
  .card a {
    padding: 5px 10px;
  }
  .facts-container {
    width: 45%;
  }
  .facts-container h3 {
    width: 100%;
    font-size: 1.1rem;
    padding-left: 0.5em;
  }
  .facts_item {
    font-size: 1rem;
  }
  .facts_item ul {
    padding-left: 0.5em;
    font-size: 1.1rem;
  }
  .facts_item ul li span {
    font-size: 1.1rem;
  }
}
@media (max-width: 800px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 8vw;
    text-align: center;
  }
  h1 span {
    font-size: 8vw;
    text-align: center;
  }
  h2 {
    text-align: center;
    font-size: 5vw;
  }
  .subheading {
    text-align: center;
  }
  nav {
    position: absolute;
    top: 0;
    left: 0;
    padding: 15px;
    border-radius: 0 0 25px 0;
  }
  nav ul {
    display: none;
    flex-direction: column;
  }
  #toggle-button:checked ~ ul {
    display: flex;
    width: 120px;
    padding: 15px;
    background: var(--main-brand-color);
  }
  #toggle-button:checked ~ ul a {
    color: var(--text-color);
  }
  label[for=toggle-button] {
    display: block;
  }
  .profilbild1 {
    display: none;
  }
  .profilbild2 {
    width: 400px;
    height: 400px;
    max-width: 80vw;
    max-height: 80vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 50%;
    border: 20px solid var(--main-brand-color);
  }
  .profilbild2 img {
    width: 500px;
  }
  .pb_animate {
    display: none;
  }
  #about_me_section {
    padding: 20px 0 20px 0;
    gap: 25px;
  }
  #about_me_section img {
    width: 300px;
    max-width: calc(90% - 30px);
    border: 5px solid var(--text-color);
  }
  #writer_section {
    padding: 0;
    margin: 0;
  }
  .flex-container {
    width: 100vw;
    height: auto;
    margin: 5px 0 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .button {
    bottom: 1em;
  }
  .button a {
    font-size: 1rem;
  }
  .facts-container {
    width: 100%;
    justify-content: center;
    align-items: flex-start;
  }
  .facts_item {
    width: 40em;
    height: auto;
    padding: 5px 0;
    gap: 10px;
  }
  .facts_item ul {
    text-decoration: none;
    list-style-type: none;
    font-size: 1rem;
  }
  .facts_item ul li span {
    font-weight: bold;
  }
  .facts_item h3 {
    font-size: 1.25rem;
  }
  .facts_item_halb ul {
    padding: 0.5em;
  }
}
@media (max-width: 650px) {
  .profilbild2 {
    width: 300px;
    height: 300px;
    max-width: 80vw;
    max-height: 80vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 50%;
    border: 10px solid var(--main-brand-color);
  }
  .profilbild2 img {
    width: 500px;
  }
  h1 {
    font-size: 3rem;
    line-height: 1;
  }
	.subhead {
    font-size: 2.5rem;
    margin-top: .5em;
    }
  h2 {
    margin: 0.5em 0;
    padding: 0.25em 0;
  }
  .card {
    width: 90%;
    max-width: calc(95% - 40px);
    height: 25em;
  }
  .card h3 {
    font-size: 1.5rem;
    margin: 0.5em 0;
    padding: 0;
  }
  .card_ly p {
    width: 100%;
  }
  .card_essay {
    width: 90vw;
    height: 90vh;
  }
  .card_essay p {
    text-align: left;
  }
  .card_essay ol {
    padding-left: 10%;
  }
  .card_essay ol li {
    font-size: 1.1rem;
    text-align: left;
  }
  .ib_row {
    gap: 0.5em;
  }
  .ib_row img {
    width: 200px;
    height: 150px;
    margin-top: 1em;
  }
  .facts-container {
    align-items: center;
    padding-left: 0;
  }
  .facts_item {
    width: 90vw;
    height: auto;
    padding: 20px;
  }
  .facts_item img {
    height: 100px;
    width: 100px;
  }
  .facts_item h3 {
    font-size: 2rem;
  }
  .video-container video {
    width: 80%;
  }
}/*# sourceMappingURL=general_settings.css.map */