@charset "UTF-8";
/* colors */
/* font */
@font-face {
  font-family: "JetBrainsMono-Regular";
  src: url(/font/JetBrainsMono-Regular.woff2) format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "JetBrainsMono-Regular";
  src: url(/font/JetBrainsMono-Bold.woff2) format("woff2");
  font-weight: 700;
}
@font-face {
  font-family: "Heebo-Black";
  src: url(/font/Heebo-Black.ttf) format("truetype");
  font-weight: 900;
}
* {
  font-family: "JetBrainsMono-Regular";
  color: #f5fdff;
  font-weight: 400;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* style reset */
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  /* overflow-x: hidden; */
  font-size: 100%;
}

h1 {
  color: #f5fdff;
  display: inline-block;
  font-size: 1.4rem;
}
@media (min-width: 576px) {
  h1 {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  color: #5f5f5f;
  font-size: 1rem;
}
@media (min-width: 576px) {
  h2 {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  h2 {
    font-size: 1.3rem;
  }
}
@media (min-width: 992px) {
  h2 {
    font-size: 1.4rem;
  }
}

.btn {
  background-color: #5496ff;
  border: none;
  border-radius: 0%;
  font-size: 1.2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  margin-top: 1rem;
  background: linear-gradient(149.64deg, #5496ff 8.44%, #3b69b3 73.06%);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  color: #f5fdff;
}

.btn-primary {
  display: inline-block;
  background-color: #5496ff;
  border: none;
  border-radius: 0%;
  font-size: 1.2rem;
  padding: 0.6rem 1.5rem;
  margin-top: 1rem;
  background: linear-gradient(149.64deg, #5496ff 8.44%, #3b69b3 73.06%);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  color: #f5fdff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25), 0px 4px 8px rgba(0, 0, 0, 0.3);
}

a {
  color: #f5fdff;
}
a:hover {
  color: #5496ff;
}

body {
  background-color: #0b0b0b;
  color: #f5fdff;
  display: flex;
  flex-direction: column;
}

nav {
  z-index: 2;
  flex-direction: row;
  height: 64px;
}

#logo {
  display: flex;
  flex-direction: row;
}

.nav-elements {
  display: flex;
  position: relative;
  color: #f5fdff;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}
.nav-elements .fas {
  color: #5496ff;
}
@media (min-width: 768px) {
  .nav-elements {
    font-size: 0.9rem;
  }
}
@media (min-width: 992px) {
  .nav-elements {
    font-size: 1rem;
  }
}

.bgLeft {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  left: 0vw;
  top: 0px;
  width: 0vw;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.21, 0.61, 0.36, 1);
}

.bgRight {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  left: 100%;
  top: 0px;
  width: 0vw;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.21, 0.61, 0.36, 1);
}

.nav-link {
  padding: 0.25em 0.3em 0.25em 0.3em;
  -webkit-text-emphasis: none;
          text-emphasis: none;
  text-decoration: none;
}
.nav-link:hover {
  color: #5496ff;
}
@media (min-width: 360px) {
  .nav-link {
    padding: 0.25em 0.5em 0.25em 0.5em;
  }
}
@media (min-width: 400px) {
  .nav-link {
    padding: 0.25em 0.875em 0.25em 0.875em;
  }
}

.nav-highlighter {
  left: 0px;
  height: 6px;
  width: 50px;
  bottom: 0;
  background: #5496ff;
  position: absolute;
  transition: all 0.6s cubic-bezier(0.21, 0.61, 0.36, 1);
}

.project {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
}

.leftproject {
  justify-content: flex-start;
}

.rightproject {
  justify-content: flex-end;
}

.projectContent {
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 4rem;
}
@media (min-width: 576px) {
  .projectContent {
    padding-bottom: 6rem;
  }
}
@media (min-width: 768px) {
  .projectContent {
    padding-bottom: 8rem;
  }
}
@media (min-width: 992px) {
  .projectContent {
    padding-bottom: 10rem;
  }
}
.projectContent img {
  width: 100%;
  height: auto;
}
@media (min-width: 576px) {
  .projectContent img {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .projectContent img {
    width: 560px;
  }
}
@media (min-width: 992px) {
  .projectContent img {
    width: 800px;
  }
}
.projectContent h2 {
  margin-top: 1rem;
  top: 0;
  left: 0;
  color: #f5fdff;
  font-size: 1.2rem;
}
@media (min-width: 576px) {
  .projectContent h2 {
    font-size: 1.3rem;
  }
}
@media (min-width: 768px) {
  .projectContent h2 {
    font-size: 1.4rem;
  }
}
@media (min-width: 992px) {
  .projectContent h2 {
    font-size: 1.5rem;
  }
}
.projectContent h3 {
  color: #5f5f5f;
  font-size: 1rem;
}
@media (min-width: 576px) {
  .projectContent h3 {
    font-size: 1.1rem;
  }
}
@media (min-width: 768px) {
  .projectContent h3 {
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .projectContent h3 {
    font-size: 1.2rem;
  }
}

section {
  margin-bottom: 2rem;
}

.sticky-top {
  position: fixed;
  display: flex;
  top: 2em;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
  transition: all 0.6s cubic-bezier(0.21, 0.61, 0.36, 1);
}

#welcome {
  position: relative;
  top: -1.4rem;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 100vh;
  min-height: 100lvh;
  background: radial-gradient(125.9% 258.07% at 4.7% -41.23%, #3a4043 0%, #131313 100%);
  position: relative;
}

#welcomeVideo {
  max-width: 1000px;
  max-height: 1000px;
  position: absolute;
  width: 100%;
  height: auto;
  right: 0;
  left: 0;
  bottom: 0px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 376px) {
  #welcomeVideo {
    width: 80%;
  }
}
@media (min-width: 576px) {
  #welcomeVideo {
    width: 60%;
    left: auto;
    right: 0;
  }
}
@media (min-width: 768px) {
  #welcomeVideo {
    width: 50%;
  }
}
@media (min-width: 992px) {
  #welcomeVideo {
    width: 40%;
    right: 10%;
  }
}

#welcomeText {
  position: relative;
  animation: none;
  opacity: 1;
  top: 12rem;
}
@media (min-width: 576px) {
  #welcomeText {
    top: 14rem;
  }
}
@media (min-width: 768px) {
  #welcomeText {
    top: 16rem;
  }
}
@media (min-width: 992px) {
  #welcomeText {
    animation-name: showWelcome;
    animation-duration: 2s;
    top: 20rem;
  }
}
#welcomeText h1 {
  padding: 0;
  font-size: 3rem;
  line-height: 3rem;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}
@media (min-width: 576px) {
  #welcomeText h1 {
    font-size: 4rem;
    line-height: 4rem;
  }
}
@media (min-width: 768px) {
  #welcomeText h1 {
    font-size: 5rem;
    line-height: 5rem;
  }
}
@media (min-width: 992px) {
  #welcomeText h1 {
    font-size: 6rem;
    line-height: 6rem;
  }
}
#welcomeText h2 {
  color: #5496ff;
  font-size: 1.2rem;
}
@media (min-width: 576px) {
  #welcomeText h2 {
    font-size: 1.3rem;
  }
}
@media (min-width: 768px) {
  #welcomeText h2 {
    font-size: 1.4rem;
  }
}
@media (min-width: 992px) {
  #welcomeText h2 {
    font-size: 1.5rem;
  }
}

@keyframes showWelcome {
  0% {
    opacity: 0;
    top: 24rem;
  }
  100% {
    opacity: 1;
    top: 20rem;
  }
}
.reveal {
  position: relative;
  transform: translateY(4rem);
  opacity: 0;
  transition: 2s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

.alignNav {
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .alignNav {
    justify-content: flex-end;
  }
}

footer {
  background-color: #161818;
  min-height: 20rem;
  display: flex;
  align-items: center;
}
footer .container {
  margin-bottom: 2rem;
}
footer .logo {
  display: flex;
  font-size: 1.5rem;
  align-items: center;
  flex-direction: row;
  margin-bottom: 1em;
  margin-top: 1em;
}
footer .logo .hanneken {
  margin-left: 2rem;
  color: #f5fdff;
  font-size: 1.5rem;
}
footer #copyright {
  display: flex;
  align-items: center;
  color: #f5fdff;
  font-size: 1.2rem;
}

.vert-center {
  display: flex;
  flex-direction: column;
}

#aboutImage {
  background: linear-gradient(180deg, #151618 0%, #121212 100%);
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: baseline;
}
#aboutImage img {
  max-width: 800px;
  width: 70%;
  height: auto;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  #aboutImage img {
    width: 60%;
  }
}
@media (min-width: 768px) {
  #aboutImage img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  #aboutImage img {
    width: 100%;
  }
}

.about-text {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

#about-me .container .socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0 1rem 0;
}
#about-me .container .socials a {
  color: #5496ff;
  text-decoration: none;
}
#about-me .container .socials img {
  width: 2rem;
  height: auto;
}

/* Custom Grid System */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 0 1rem;
}
@media (min-width: 576px) {
  .container {
    padding: 0 1.5rem 0 1.5rem;
  }
}
@media (min-width: 768px) {
  .container {
    padding: 0 2rem 0 2rem;
  }
}
@media (min-width: 992px) {
  .container {
    padding: 0 2.5rem 0 2.5rem;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 2fr;
    align-items: center;
  }
}

.about-image {
  background: linear-gradient(180deg, #151618 0%, #121212 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-image img {
  max-width: 800px;
  width: 70%;
  height: auto;
  margin-top: 2rem;
}
@media (min-width: 576px) {
  .about-image img {
    width: 60%;
  }
}
@media (min-width: 768px) {
  .about-image img {
    width: 100%;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mt10 {
  margin-top: 5rem;
}
@media (min-width: 576px) {
  .mt10 {
    margin-top: 6rem;
  }
}
@media (min-width: 768px) {
  .mt10 {
    margin-top: 8rem;
  }
}
@media (min-width: 992px) {
  .mt10 {
    margin-top: 10rem;
  }
}

#mobileTexts {
  position: relative;
  display: block;
}
@media (min-width: 992px) {
  #mobileTexts {
    display: none;
  }
}

.mtext {
  display: none;
  margin-top: 2rem;
}
.mtext h1 {
  color: #5f5f5f;
}

.mtext.active {
  display: block;
}

/* Image Gallery */
.modal-content {
  background-color: #5496ff;
}

.modal-header {
  border: 0;
}

.modal-body {
  max-width: 100vw;
  max-height: 100vh;
}

#changeText {
  position: absolute;
  padding-bottom: 1rem;
  left: 0;
  transform: translate(0, -50%);
  opacity: 0;
  animation: fade-in 0.5s ease-in-out forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translate(0, -60%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
.fade-out {
  animation: fade-out 0.5s ease-in-out forwards;
}

@keyframes fade-out {
  from {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
}
header {
  background-color: transparent;
  background: none;
}

#logo-top {
  width: -moz-fit-content;
  width: fit-content;
  height: 64px;
  position: absolute;
  top: 2rem;
  color: #f5fdff;
  align-items: center;
  flex-direction: row;
  display: none;
}
@media (min-width: 992px) {
  #logo-top {
    display: flex;
  }
}

.hanneken {
  font-size: 1.5rem;
  white-space: nowrap;
  overflow: hidden;
}
.hanneken span.firstname {
  font-family: "Heebo-Black";
  color: #f5fdff;
}
.hanneken span.lastname {
  font-family: "Heebo-Black";
  color: #5496ff;
}

.rotatingText {
  position: relative;
  padding-bottom: 1.8rem;
}

.rotatingTextElement {
  position: absolute;
  max-width: 450px;
  bottom: 0;
  opacity: 0;
  color: #5496ff;
  line-height: 150%;
}

@keyframes rotate1 {
  0%, 30% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  33%, 96% {
    opacity: 0;
    transform: translate3d(0, -25px, 0);
  }
  97% {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rotate2 {
  0%, 30% {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  33%, 63% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  66% {
    opacity: 0;
    transform: translate3d(0, -25px, 0);
  }
}
@keyframes rotate3 {
  0%, 63% {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  66%, 97% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -25px, 0);
  }
}
.rotatingTextElement:nth-of-type(1) {
  animation-name: rotate1;
  animation-duration: 16s;
  animation-iteration-count: infinite;
}

.rotatingTextElement:nth-of-type(2) {
  animation-name: rotate2;
  animation-duration: 16s;
  animation-iteration-count: infinite;
}

.rotatingTextElement:nth-of-type(3) {
  animation-name: rotate3;
  animation-duration: 16s;
  animation-iteration-count: infinite;
}

#carousel-text-indicators {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  background: linear-gradient(180deg, #151618 0%, #121212 100%);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.1);
}

.carousel-text-indicator {
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.carousel-text-indicator:hover {
  color: #5496ff;
}

.carousel-text-indicator.active::after {
  position: absolute;
  content: "";
  height: 4px;
  bottom: -8px;
  left: 0px;
  width: 100%;
  background-color: #5496ff;
  animation: 0.5s indicator-animation;
}

@keyframes indicator-animation {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.carousel-item {
  padding-left: 0;
  height: 22rem;
}
@media (min-width: 600px) {
  .carousel-item {
    height: 24rem;
  }
}
@media (min-width: 992px) {
  .carousel-item {
    height: 28rem;
    padding-left: 4rem;
  }
}
@media (min-width: 1200px) {
  .carousel-item {
    height: 32rem;
    padding-left: 4rem;
  }
}
.carousel-item .textContainer {
  display: none;
}
@media (min-width: 992px) {
  .carousel-item .textContainer {
    display: block;
  }
}
.carousel-item .textContainer h1 {
  font-size: 2rem;
}
@media (min-width: 1200px) {
  .carousel-item .textContainer h1 {
    font-size: 2.5rem;
  }
}
.carousel-item .imageContainer {
  width: 100%;
  height: 100%;
  float: left;
  margin-left: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .carousel-item .imageContainer {
    margin-left: 3rem;
    float: right;
    width: auto;
  }
}
@media (min-width: 1200px) {
  .carousel-item .imageContainer {
    margin-left: 6rem;
  }
}
.carousel-item .imageContainer img {
  height: 80%;
}
@media (min-width: 500px) {
  .carousel-item .imageContainer img {
    height: 100%;
  }
}
@media (min-width: 800px) {
  .carousel-item .imageContainer img {
    height: 100%;
  }
}
@media (min-width: 992px) {
  .carousel-item .imageContainer img {
    height: 80%;
  }
}
@media (min-width: 1200px) {
  .carousel-item .imageContainer img {
    height: 100%;
  }
}
.carousel-item h1 {
  color: #5f5f5f;
}

.carousel {
  display: flex;
  flex-direction: row;
}

.mt10 {
  margin-top: 5rem;
}
@media (min-width: 576px) {
  .mt10 {
    margin-top: 6rem;
  }
}
@media (min-width: 768px) {
  .mt10 {
    margin-top: 8rem;
  }
}
@media (min-width: 992px) {
  .mt10 {
    margin-top: 10rem;
  }
}

#mobileTexts {
  position: relative;
  display: block;
}
@media (min-width: 992px) {
  #mobileTexts {
    display: none;
  }
}

.mtext {
  display: none;
  margin-top: 2rem;
}
.mtext h1 {
  color: #5f5f5f;
}

.mtext.active {
  display: block;
}

.showcaseContainer {
  display: flex;
  height: 500px;
  width: 100%;
  overflow: hidden;
}

.column {
  flex: 1; /* alle Spalten gleich groß */
  transition: all 0.6s ease;
  display: flex;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Wenn man über den Container hovert: alle Spalten schrumpfen */
.showcaseContainer:hover .column {
  flex: 0 0 20%; /* fixe Breite von 10px */
}

/* Die gehoverte Spalte wächst und nimmt den Rest ein */
.showcaseContainer .column:hover {
  flex: 1; /* wächst wieder auf vollen Anteil */
}

.projectPage {
  margin-top: 10rem;
  margin-bottom: 4rem;
}

.ptype {
  color: #5496ff;
  font-size: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .ptype {
    font-size: 1.1rem;
  }
}
@media (min-width: 768px) {
  .ptype {
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .ptype {
    font-size: 1.2rem;
  }
}

.playlink {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.playlink::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
}
.playlink a {
  position: relative;
  z-index: 1;
}

.video-Container video {
  width: 100%;
  height: auto;
}/*# sourceMappingURL=style.css.map */