@charset "UTF-8";
@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-VariableFont_wght.ttf");
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "Jost", sans-serif;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #eeeeee;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

a {
  color: #131313;
  text-decoration: none;
  font-weight: 600;
}

footer {
  background-color: #131313;
  color: #eeeeee;
}

body {
  background-color: #f1f1f1;
  color: #1e1e1e;
}
body.no-scroll {
  overflow: hidden;
}

h1 {
  font-size: 6rem;
  line-height: 1.25;
}

h2 {
  font-size: 4rem;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 2.5rem;
}

p {
  font-size: 1.8rem;
}

img {
  width: 100%;
  height: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  display: flex;
  padding: 1em 4em;
  align-items: center;
  justify-content: space-between;
  background-color: #E20613;
  color: #f1f1f1;
}
header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo {
  font-size: 2em;
  font-weight: 700;
  text-decoration: none;
  color: #f1f1f1;
}
header nav ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 4em;
  list-style: none;
}
header nav a {
  font-size: 2.4rem;
  font-weight: 500;
  text-decoration: none;
  color: #f1f1f1;
}
header .social-icons.desktop {
  display: flex;
  gap: 1em;
}
header .social-icons.desktop img {
  width: 40px;
  height: 40px;
}
header .hamburger {
  display: none;
}
header .mobile-menu {
  display: none;
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  height: -moz-fit-content;
  height: fit-content;
  min-height: 600px;
  width: 100%;
  padding: 4em 2em;
}

/*HOME*/
.home-page .hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: url("../img/Bühne-dunkel.jpg") no-repeat center center;
  background-size: cover;
  color: #f1f1f1;
}
.home-page .hero .wrapper {
  display: flex;
  flex-direction: row;
}
.home-page .hero .left-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1em;
  width: 60%;
  max-width: 700px;
}
.home-page .hero .left-col .name {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: -0.5em;
}
.home-page .hero .right-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 1em;
  flex: 1;
}
.home-page .hero .social-icons {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.home-page .trenner {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  background: url("../img/Fejtek_2107091808_7575.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: #f1f1f1;
}
.home-page .trenner.trenner2 {
  background: url("../img/Fejtek_2107091806_7523.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.home-page .trenner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}
.home-page .trenner .wrapper {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  z-index: 1;
}
.home-page .trenner p {
  font-size: 6rem;
  font-weight: 600;
}
.home-page .about {
  font-size: 1.8rem;
}
.home-page .about .abschnitt-container {
  display: flex;
  flex-direction: column;
  gap: 2em;
  margin-top: 2em;
}
.home-page .about h3 {
  display: flex;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #E20613;
  gap: 1em;
}
.home-page .about h3 span {
  width: 100%;
  height: 2px;
  background-color: #E20613;
  z-index: -1;
  flex: 1;
}
.home-page .about ul {
  margin-left: 2ch;
}

.posts-container {
  display: flex;
  gap: 2em;
}

.post {
  height: -moz-fit-content;
  height: fit-content;
  flex: 1;
  background-color: #e0e0e0;
}
.post .post-text-container {
  padding: 1em 2em;
}
.post .post-thumbnail {
  width: 100%;
  height: 100%;
  max-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1em;
}
.post .post-title {
  margin-bottom: 0.5em;
}
.post .post-meta {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
  font-size: 1.6rem;
}
.post .post-meta .post-category,
.post .post-meta .post-date {
  color: #E20613;
}
.post .post-excerpt {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1em;
}
.post .post-link {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  background-color: #E20613;
  color: #f1f1f1;
  border: 2px solid #E20613;
  padding: 0.25em 1em;
  margin-top: 0.5em;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

/* SINGLE.PHP */
.post-page {
  padding-top: 1em;
}
.post-page .post-page-content {
  font-size: 1.8rem;
}
.post-page .post-page-content .thumbnail-container {
  margin-bottom: 1em;
}
.post-page .post-page-content .thumbnail-container img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-page .post-page-content .post-title {
  font-size: 4.8rem;
  font-weight: 600;
  margin-bottom: -0.5em;
}
.post-page .post-page-content .post-meta {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 1.6rem;
}
.post-page .post-page-content .post-categories {
  display: flex;
  flex-direction: row;
  gap: 1em;
  padding: 0;
  margin: 0;
  color: #E20613;
}
.post-page .post-page-content .post-categories a {
  color: #E20613;
}
.post-page .post-page-content .post-content {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 2em;
}
.post-page .post-page-content .post-content img {
  max-width: 600px;
  -o-object-fit: contain;
     object-fit: contain;
}
.post-page .post-page-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-family: "Jost", sans-serif;
}
.post-page .post-page-content h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-family: "Jost", sans-serif;
  color: #1e1e1e;
  border-bottom: none;
}
.post-page .post-page-content ol,
.post-page .post-page-content ul {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  margin-left: 2ch;
}
.post-page .post-page-content ol:last-child,
.post-page .post-page-content ul:last-child {
  font-size: 1.5rem;
}
.post-page .post-page-content .share-link {
  margin-top: 4em;
}
.post-page .post-page-content .share-link.copied {
  pointer-events: none !important;
}
.post-page .post-page-content figcaption {
  font-size: 1.2rem;
}
.post-page .older-posts-container {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.post-page .older-posts-container .older-posts {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 1em;
  align-items: flex-start;
}
.post-page .older-posts-container .older-post {
  width: calc(33% - 1em);
  max-width: calc(33% - 1em);
}
.post-page .older-posts-container h2 {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.post-page .older-posts-container h3 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.post-page .older-posts-container .link {
  margin-top: 1em;
  align-self: center;
}
.post-page .older-posts-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-page .post-link {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  background-color: #E20613;
  color: #f1f1f1;
  border: 2px solid #E20613;
  padding: 0.25em 1em;
  margin-top: 0.5em;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}
.post-page .share-link {
  display: inline-block;
  color: #E20613;
  margin-top: 2em;
}

/* ARCHIVE PAGE */
.archive-page {
  padding-top: 1em;
}
.archive-page h1 {
  font-size: 6rem;
}
.archive-page .category-container {
  margin-top: 1em;
  display: flex;
  gap: 1em;
}
.archive-page .category-container p {
  font-weight: 600;
}
.archive-page .current-cat a {
  color: #E20613;
  font-weight: 700;
  text-decoration: underline;
}
.archive-page .cat-item a {
  transition: all 0.5s ease;
}
.archive-page .cat-item:hover a {
  color: #E20613;
  font-weight: 700;
}
.archive-page .post-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  margin-top: 2em;
}
.archive-page .post-container .post {
  width: calc(33% - 2em);
  margin-bottom: 2em;
  flex: inherit;
}
.archive-page .post-container .post-thumbnail {
  height: 300px;
}
.archive-page .post-container .post-link {
  margin-top: 2em;
}

/* PAGE.PHP */
.page {
  min-height: calc(100vh - 100px);
  height: -moz-fit-content;
  height: fit-content;
}
.page img {
  max-height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* FOOTER */
footer {
  background-color: #e0e0e0;
  color: #1e1e1e;
  padding-top: 4em;
  display: flex;
  flex-direction: column;
  gap: 4em;
}
footer .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding-inline: 2em;
}
footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer-content .button {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
  background-color: #E20613;
  color: #f1f1f1;
  border: 2px solid #E20613;
  padding: 0.25em 1em;
  margin-top: 0.5em;
  cursor: pointer;
}
footer .social-icons {
  display: flex;
  gap: 1em;
  margin-top: 1em;
}
footer .social-icons img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer-links {
  width: 100%;
  background-color: #1e1e1e;
  padding-inline: 2em;
}
footer .footer-links .wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  margin-top: 1em;
  padding: 1em 0;
}
footer .footer-links .wrapper a {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f1f1f1;
  transition: all 0.5s ease;
}
footer .footer-links .wrapper a:hover {
  color: #E20613;
}
footer .footer-menu {
  display: flex;
  gap: 1em;
}
footer .sponsor {
  display: grid;
}

/*WORDPRESS ADMIN BAR*/
#wpadminbar {
  display: none;
}

/********** MEDIA QUERIES **********/
@media only screen and (max-width: 1024px) {
  header {
    background-color: transparent;
    width: 100%;
    margin: 0;
  }
  header nav {
    display: none;
  }
  header .desktop {
    display: none !important;
  }
  header .hamburger {
    position: absolute;
    top: 1em;
    right: 2em;
    display: block;
    cursor: pointer;
    z-index: 9999;
  }
  header .hamburger svg {
    width: 40px;
    height: 40px;
  }
  header .hamburger .cross {
    display: none;
  }
  header .hamburger .lines.hide {
    display: none;
  }
  header .hamburger .show.show {
    display: block;
  }
  header .hamburger .line {
    width: 100%;
    height: 2px;
    background-color: #E20613;
    transition: all 0.5s ease;
    transform-origin: center;
  }
  header .hamburger .line:nth-child(1) {
    transform: rotate(0deg);
  }
  header .hamburger .line:nth-child(2) {
    transform: rotate(0deg);
  }
  header .hamburger .line:nth-child(3) {
    transform: rotate(0deg);
  }
  header .hamburger.active .line:nth-child(1) {
    transform: rotate(10deg);
  }
  header .mobile-menu {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #E20613;
    z-index: 100;
    padding: 4em;
    flex-direction: column;
    gap: 4em;
    align-items: flex-end;
    justify-content: center;
    transform: translate(100%, 0);
    transition: transform 0.5s ease;
  }
  header .mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 2em;
    align-items: flex-end;
    justify-content: center;
    list-style: none;
    text-align: right;
  }
  header .mobile-menu a {
    color: #f1f1f1;
    font-size: 4rem;
    font-weight: 600;
    text-decoration: none;
  }
  header .mobile-menu .social-icons {
    display: flex;
    flex-direction: row;
    gap: 1em;
    margin-top: 2em;
  }
  header .mobile-menu .social-icons img {
    width: 40px;
    height: 40px;
  }
  header .mobile-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
    transition: transform 0.5s ease;
  }
  section:first-child {
    margin-top: 0;
  }
  /* HOME PAGE */
  .home-page .hero {
    align-items: flex-end;
    padding-bottom: 6em;
  }
  .home-page .hero .wrapper {
    flex-direction: column;
    row-gap: 2em;
    max-width: 100%;
  }
  .home-page .hero .left-col {
    width: 100%;
  }
  .home-page .hero .right-col {
    align-items: flex-start;
  }
  .home-page .hero .social-icons {
    flex-direction: row;
  }
  .home-page .posts-container {
    flex-wrap: wrap;
  }
  .home-page .trenner {
    text-align: center;
  }
  /* POST SINGLE PAGE */
  .post-page .older-posts-container .older-post {
    width: calc(50% - 1em);
    max-width: calc(50% - 1em);
  }
  /* ARCHIVE PAGE */
  .archive-page {
    padding-top: 4em;
  }
  .archive-page .post-container .post {
    width: calc(50% - 2em);
  }
}
@media only screen and (max-width: 768px) {
  header .hamburger {
    right: 1em;
  }
  header .mobile-menu ul {
    gap: 1em;
  }
  header .mobile-menu a {
    font-size: 3rem;
  }
  /* HOME PAGE */
  .home-page .hero h1 {
    font-size: 4rem;
  }
  .home-page .posts-container {
    flex-direction: column;
  }
  .home-page .post {
    min-width: 100%;
  }
  .home-page .post .post-text-container {
    padding: 1em;
  }
  .trenner {
    background-attachment: scroll !important;
  }
  .trenner p {
    font-size: 4rem;
  }
  .about h3 {
    font-size: 2.4rem;
  }
  .about h3 span {
    display: none;
  }
  /* POST SINGLE PAGE */
  .post-page .post-page-content {
    font-size: 1.8rem;
  }
  .post-page .post-page-content .post-title {
    font-size: 4rem;
    word-wrap: break-word;
  }
  .post-page .post-page-content p,
  .post-page .post-page-content a,
  .post-page .post-page-content li,
  .post-page .post-page-content h2,
  .post-page .post-page-content h3,
  .post-page .post-page-content h4,
  .post-page .post-page-content h5,
  .post-page .post-page-content h6 {
    word-wrap: break-word;
  }
  .post-page .older-posts-container .older-post {
    width: 100%;
    max-width: 100%;
  }
  /* ARCHIVE PAGE */
  .archive-page {
    padding-top: 4em;
  }
  .archive-page .cat-item:hover a {
    color: #1e1e1e;
    font-weight: 600;
  }
  .archive-page .post-container .post {
    width: 100%;
  }
  /* FOOTER */
  footer .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2em;
  }
}
@media only screen and (max-width: 449px) {
  /* POST SINGLE PAGE */
  .post-page-content {
    font-size: 1.6rem;
  }
  .post-page-content .post-title {
    font-size: 3rem;
  }
  .post-page-content h2 {
    font-size: 2.5rem;
  }
  .post-page-content h3 {
    font-size: 2rem;
  }
  /*ARCHIVE PAGE*/
  .archive-page .category-container {
    flex-wrap: wrap;
    gap: 0.5em;
  }
  /* FOOTER */
  footer .footer-links .wrapper {
    flex-direction: column;
    gap: 2em;
  }
}
@media only screen and (max-height: 600px) {
  header .mobile-menu ul {
    gap: 1em;
  }
  header .mobile-menu a {
    font-size: 2.5rem;
  }
  .home-page .trenner {
    background-attachment: scroll !important;
  }
}/*# sourceMappingURL=pages.css.map */