:root {
  --white-color: #2a2a2a;
  --shadow-color: #4d4d4d;
  --transition-color: #2d2d2d;
  --whiterBlack-color: #2c2c2c;
  --accentSuperLight-color: #f40fb7;
  --accentlight-color: #d415a1;
  --accent-color: #a70f7e;
  --accentShadow-color: #860563;
  --accentDark-color: #53033e;
  --accentSuperDark-color: #3f032f;
}

body::-webkit-scrollbar{
  display: none;
}

/* Basis-Styles */
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--white-color);
  height: 0vw;
}

body,
html {
  font-family: 'Bahnschrift', sans-serif;
  border: 0px;
  margin: 0px;
  padding: 0px;
  width: auto;
}

h1,
h2,
h3,
p {
  color: white;
}

a{
  color: var(--accentSuperLight-color);
}


#PodcastMode {
  padding: 2em;
  background-color: var(--shadow-color);
  border-radius: 10px;
  margin: 2em auto;
  max-width: 700px;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}


#PodcastText {
  padding: 1em 3em;
  margin-bottom: 1em;
}

.audio-file-name {
  color: var(--accentSuperLight-color);
  font-weight: bold;
  margin-bottom: 0.5em;
}

.purple-text {
  color: var(--accentSuperLight-color);
}

#transition {
  position: fixed;
  height: 100%;
  width: 0%;
  z-index: 10000;
  background-color: var(--transition-color);
  transition: width 0.3s ease-in;
  overflow: hidden;
  filter: blur(0, 60px);
}

#aboutMe {
  background-color: var(--accentShadow-color);
  color: white;
  padding-top: 7em;
  padding-bottom: 22em;
}

#timeline {
  display: flex;
  align-items: center;
  position: relative;
  background-color: yellow;
}

.line {
  position: absolute;
  display: flex;
  height: 2px;
  top: 50%;
  right: 0;
  width: 70%;
  height: 30px;
  left: 15%;
  border-top: 1px solid white;
}

.StepsLebenslauf {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 1em);
  opacity: 0;
  transition: all .1s ease-out;
}

.StepsLebenslaufText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 5.5em);
  opacity: 0;
  transition: all .1s ease-out;
}


.circle {
  position: absolute;
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
  background-color: var(--shadow-color);
  transform: translateY(-2vw);
  transition: all .3s ease-in-out;
}

.circle:hover {
  background-color: var(--transition-color);
}

.circleClicked {
  background-color: var(--accentSuperLight-color) !important;
}

.visible {
  opacity: 1;
}


.filter-buttons {
  margin-bottom: 3em;
}

.filter-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  background-color: var(--accentShadow-color);
  color: #ffffff;
  border: none;
  transform: translateY(0px);
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 0px 0px var(--accentShadow-color);
  margin-left: 5px;
  margin-right: 5px;
  scale: 1.05;
}

.filter-button:hover {
  scale: 1.0;
  transform: translateY(-.25em);
  box-shadow: 0px 7px 10px var(--accentShadow-color);
  background-color: var(--accentlight-color);
}

.filter-button.active {
  background-color: var(--accentSuperLight-color);
}

#Logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease-in;
  filter: blur(5px);
  opacity: 0;
  height: 20vw;
}

/* Vollbild-Video-Container */
.fullscreen-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Video */
video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Animierter Text */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.animated-text {
  font-size: 3rem;
  color: white;
  opacity: 0;
  animation: fade-in 2s ease-out forwards;
}

@keyframes fade-in {
  0% {
    filter: blur(30px);
    opacity: 0;
  }

  100% {
    filter: blur(0px);
    opacity: 1;
  }
}



/* Menü */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(232, 232, 232, 0.79);
  padding: 10px 0;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  z-index: 999;
}

.menu.visible {
  opacity: 1;
}

.menu ul {
  list-style-type: none;
}

.menu ul li {
  display: inline-block;
  margin-right: 10px;
}

.menu ul li a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* Abschnitte */
.section {
  background-color: var(--white-color);
  text-align: center;
}

.project{
  margin-left: 20%;
  margin-right: 20%;
}

.YTVideo{
  aspect-ratio: 16/9;
  margin-bottom: 2vw;
}

.section h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Projekte */
.project-list {
  margin-left: 30%;
  margin-right: 30%;
}

.project-box {
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  /* Abgerundete Ecken */
  box-shadow: 0px 0px 60px var(--accentShadow-color);
  transition: all 0.3s ease-in-out;
}

.project-box:hover {
  transform: translateY(-5px);
  box-shadow: 15px 15px 30px var(--accent-color);
  scale: 1.05;
}

.project-box img {
  width: 200px;
  height: auto;
}

.project-box h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.project-box p {
  font-size: 1rem;
}

.project.hidden {
  display: none;
}


.project-box img {
  max-width: 100px;
  /* Ändere die Breite nach deinen Wünschen */
  height: auto;
  margin-bottom: 10px;
}

.project:nth-child(odd) .project-box {
  background-color: var(--whiterBlack-color);
  /* Dunklere Hintergrundfarbe für ungerade Projekte */
}

/* Responsive Layout für Desktop */
@media screen and (min-width: 768px) {
  .project-box {
    display: flex;
    align-items: center;
    text-align: left;
    flex-wrap: wrap;
  }

  .project-box img {
    width: 150px;
    margin-right: 20px;
  }
  

  .project-box img {
    flex: 0 0 30%;
    /* Hier kannst du die Breite anpassen */
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .project-box .project-info {
    flex: 0 0 60%;
    /* Hier kannst du die Breite anpassen */
  }

  .project-box .project-info h3 {
    margin-top: 0;
  }
}

/* Scroll-Down-Pfeile */
.scroll-down-arrows {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: bounce 2s infinite;
}

.arrow {
  width: 30px;
  height: 30px;
  border: solid #ffffff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  margin: 10px 20px;
}

.arrow-1 {
  animation-delay: 0.3s;
}

.arrow-2 {
  animation-delay: 0.6s;
}

.arrow-3 {
  animation-delay: 0.9s;
}

@keyframes bounce {
  0% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 10px);
  }

  100% {
    transform: translate(-50%, 0);
  }
}

@keyframes bounceScale {
  0% {
    scale: 1;
  }

  50% {
    scale: .9;
  }

  100% {
    scale: 1;
  }
}

/* Hinzugefügte CSS-Regeln für Trennlinien */
.project-box:not(:last-child) {
  margin-bottom: 0px;
  padding-bottom: 5px;
}

.project-line {
  border-top: 4px solid var(--accentSuperLight-color);
  border-radius: 4px;
  display: none;
  width: 60%;
  height: 2px;
  margin-top: 20px;
  margin: 0 auto;
}

.project:not(:last-child) .project-line {
  margin-top: 25px;
  margin-bottom: 25px;
  padding-bottom: 0px;
  display: block;
}

.project.last-visible-project .project-line {
  display: none;
}

.project-list .project-box.alternate-background {
  background-color: var(--shadow-color);
}

#impressum {
  padding-top: 5em;
  width: 100%;
  padding-bottom: 5em;
}

.topline{
  border-top: 5px solid var(--accentSuperLight-color);
}

@media (max-width: 767px) {
  .project-list {
    margin-left: 5%;
    margin-right: 5%;
  }
}

.projects {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.SingleProject{
  display: flex;
  position: relative;
  width:100%;
  height: 20vw;
  background-color: var(--accentSuperDark-color);
  transition: all .3s ease-in-out;
}

.SingleProject.alternate-background{
  background-color: var(--accentDark-color) !important;
}

.SingleProject:hover
{
  background-color: var(--accentlight-color) !important;
  scale: 1.01;
  cursor: pointer ;
}


.SingleProject:hover > .imgBox{
  filter: brightness(1.1);
}

.imgBox {
  height: auto;
  width: auto;
  overflow: hidden;
  transition: all .3s ease-in-out;
}


.imges {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 20vw;
  width: auto;
}

.TextBox {
  position: relative;
  margin-top: 5%;
  flex:1;

}
.Title{
  font-size: 4vw !important;
}
.paragraph{
  margin-left: 30%;
  margin-right: 30%;
  white-space: pre-wrap;
  font-size: 1.5vw;
}

#projects-container{
  position: absolute;
  width: 100%;
  z-index: 9999;
  background-color: var(--white-color);

}

.ProjectTitle{
  margin-top: 2em;
 font-size: 3em;
}

.ProjektDescriptionText{
  margin-top: 2em;
}
.ProjektDescriptionText:last-of-type{
  margin-bottom: 5em;
}
.ProjectSubTitle{
  margin-top: 2em;
  font-size: 2em;
  color: white;
}

ul {
  list-style-type: disc; /* Standard, gefüllte Kreise */
  margin-top: 0.5em;
  padding-left: 2em;
  color: white;
}
li{
  margin-top: 0.25em;
}

#backButton{
  display: flex;
  position: fixed;
  left:6%;
  top: 50%;
  width: 6vw;
  max-height: 50px;
  height: 6vw;
  max-width: 50px;
  border-radius: 50%;
  background-color: var(--accent-color);
  transform: translateY(-2vw);
  transition: all .3s ease-in-out;
 justify-content: center;
 align-items: center;
}
#backButton:hover{
  cursor: pointer;
  background-color: var(--accentShadow-color);
}

.SmartphoneImage{
  width: 30vw;
  height: auto;
}

.container {
  display: flex;
  flex-wrap: wrap;
}

.container img {
  flex: 1 0 5vw; /* Flex-Grow, Flex-Shrink und Basisbreite anpassen */
  margin: 5px; /* Abstand zwischen den Bildern anpassen */
  
  
  width: 4vw;
  height: auto;
}
iframe{
  width: 100%;
  height: 99%;
  margin: 0px;
  padding: 0px;
  border: 0px;
}

blockquote {
  width: 60%; /* Hier kannst du die Breite des Blockquotes anpassen */
  margin: 0 auto; /* Zentriert das Element horizontal */
}

.audio-player {
  display: flex;
  align-items: center;
  background-color: var(--accentDark-color);
  padding: 10px;
  border-radius: 5px;
  margin-top: 20px;
  margin-left: 0vw;
  margin-right: 0vw;
  border-radius: 50vw;
}

.play-pause-btn {
  background-color: var(--accentSuperLight-color);
  border: none;
  color: white;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: background-color 0.3s;
}

.play-pause-btn:hover {
  background-color: var(--accentlight-color);
}

.timeline {
  flex-grow: 1;
  background-color: var(--accentShadow-color);
  height: 5px;
  position: relative;
  cursor: pointer;
  border-radius: 5px;
}

.progress {
  background-color: var(--accentSuperLight-color);
  height: 100%;
  width: 0;
  border-radius: 5px;
  transition: width 0.1s linear;
}

.time-display {
  padding-left: 10px;
  color: var(--accentSuperLight-color);
  font-size: 14px;
}
