@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: noone;
}

:root {
  --color-primary: #191d2b;
  --color-secondary: #88B625;
  --color-tertiary: #8B00F7;
  --color-white: #FFFFFF;
  --icon-color: #FFFFFF;
  --color-black: #000;
  --color-grey0: #f8f8f8;
  --color-grey-1: #dbe1e8;
  --color-grey-2: #b2becd;
  --color-grey-3: #6c7983;
  --color-grey-4: #454e56;
  --color-grey-5: #2a2e35;
  --color-grey-6: #12181b;
  --br-sm-2: 14px;
  --box-shadow-1: 0 3px 15px rgba(0,0,0,.3);
}

.light-mode {
  --color-primary: #FFFFFF;
  --color-secondary: #8B00F7;
  --color-tertiary: #88B625;
  --color-white: #191d2b;
  --icon-color: #FFFFFF;
  --color-black: #FFFFFF;
  --color-grey0: #12181b;
  --color-grey-1: #2a2e35;
  --color-grey-2: #454e56;
  --color-grey-3: #6c7983;
  --color-grey-4: #b2becd;
  --color-grey-5: #dbe1e8;
  --color-grey-6: #f8f8f8;
}

body {
  background-color: var(--color-primary);
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: var(--color-white);
  transition: all 0.4s ease-in-out;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-family: inherit;
}

header {
  min-height: 100vh;
  color: var(--color-white);
  overflow: hidden;
}

section {
  min-height: 100vh;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 3rem 18rem;
}

.section {
  transform: translateY(-100%) scale(0);
  transition: all 0.4s ease-in-out;
  background-color: var(--color-primary);
}

.sec1 {
  display: none;
  transform: translateY(0) scale(1);
}

.sec2 {
  display: none;
  transform: translateY(0) scale(1);
}

.sec3 {
  display: none;
  transform: translateY(0) scale(1);
}

.sec5 {
  display: none;
  transform: translateY(0) scale(1);
}

.active {
  display: block;
  animation: scaleAnim 1s ease-in-out;
}
@keyframes scaleAnim {
  0% {
    transform: translateY(-100%) scaleY(0);
  }
  100% {
    transform: translateY(0) scaleY(1);
  }
}

.controls {
  position: fixed;
  z-index: 10;
  top: 50%;
  width: 12rem;
  right: 3%;
  display: flex;
  flex-direction: column;
  align-items: self-end;
  justify-content: center;
  transform: translateY(-50%);
}
.controls .control-con {
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  margin: 0.7rem 0;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  width: 100%;
}
.controls .control-con .control {
  padding: 1rem;
  cursor: pointer;
  background-color: var(--color-grey-4);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--box-shadow-1);
  position: relative;
  transition: all 0.4s ease-out;
}
.controls .control-con .control::before {
  content: attr(data-hover-text);
  text-transform: uppercase;
  position: absolute;
  top: 0;
  right: 0;
  width: 300%;
  height: 100%;
  color: var(--icon-color);
  background-color: var(--color-secondary);
  transform: translateX(105%);
  transition: transform 0.4s ease-out;
  z-index: 1;
  display: flex;
  align-items: center;
  border-radius: 26px;
  opacity: 0.9;
  padding-left: 10px;
  white-space: nowrap;
}
.controls .control-con .control:hover::before {
  transform: translateX(0);
}
.controls .control-con .control i {
  font-size: 1.2rem;
  color: var(--color-grey-2);
  pointer-events: none;
  z-index: 2;
}
.controls .control-con .active-btn {
  background-color: var(--color-secondary);
  transition: all 0.4s ease-in-out;
}
.controls .control-con .active-btn i {
  color: var(--icon-color);
}

.theme-btn {
  top: 5%;
  right: 3%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--color-grey-4);
  cursor: pointer;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.1s ease-in-out;
}
.theme-btn:active {
  transform: translateY(-3px);
}
.theme-btn i {
  font-size: 1.4rem;
  color: var(--color-grey-2);
  pointer-events: none;
}
.theme-btn:hover {
  background-color: var(--color-secondary);
}

/* Header-Content */
.header-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 100vh;
}
.header-content .left-header {
  display: flex;
  align-items: center;
  position: relative;
}
.header-content .left-header .h-shape {
  transition: all 0.4s ease-in-out;
  width: 65%;
  height: 100%;
  background-color: var(--color-secondary);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 25%, 25% 75%, 50% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 75% 0%, 100% 25%, 25% 75%, 50% 100%, 0% 100%);
}
.header-content .left-header .browser-image {
  display: grid;
  margin-left: 4rem;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
}
.header-content .left-header .browser-image .image {
  grid-column: 1;
  grid-row: 1;
  border-radius: var(--br-sm-2);
  width: 90%;
  height: auto;
  transition: all 0.4s ease-in-out;
  z-index: 1; /* Damit das Bild unten bleibt */
  overflow: hidden;
}
.header-content .left-header .browser-image .image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease-in-out;
  display: block;
}
.header-content .left-header .browser-image .Sphere {
  grid-column: 1;
  grid-row: 1;
  z-index: 2; /* Damit die Kugel über dem Bild liegt */
  display: flex;
  align-items: center;
  justify-content: baseline;
  padding-top: 0;
  padding-left: 0;
  margin-top: -100px;
  margin-left: -30px;
  overflow: hidden;
}
.header-content .left-header .browser-image .Sphere .tagcloud {
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 20px;
  color: var(--color-tertiary);
}
.header-content .right-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 18rem;
  padding-bottom: 3rem;
}
.header-content .right-header .name {
  font-size: 2rem;
}
.header-content .right-header .name span {
  color: var(--color-secondary);
}
.header-content .right-header p {
  margin: 1.5rem;
  line-height: 2rem;
}

/*timeline*/
.timeline-legend {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 4rem;
  align-items: center;
}
.timeline-legend .timeline-legend-item {
  display: flex;
  width: 200px;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
}

.timeline-legend-item.inactive {
  color: var(--color-grey-2); /* Beispiel: ausgegraute Farbe für Text */
  background-color: var(--color-grey-1); /* Beispiel: ausgegraute Hintergrundfarbe */
}

.timeline-container {
  display: flex;
  align-items: flex-start;
  margin-top: 3rem;
}

.calendar-years {
  display: flex;
  flex-direction: column;
  margin-right: 20px;
}

.year {
  color: var(--color-grey-2);
  height: 100px;
  line-height: 100px;
  border-bottom: 1px solid var(--color-grey-2);
  position: relative;
}

#events {
  position: relative;
  flex-grow: 1;
}

.event {
  position: absolute;
  left: 0;
  right: 0;
  width: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0 1rem;
  border-radius: 5px;
  transition: transform 0.3s, z-index 0.3s;
}

.profession {
  background-color: var(--color-secondary);
  color: var(--icon-color);
  padding: 0;
}

.education {
  background-color: var(--color-tertiary);
  color: var(--icon-color);
  padding: 0;
}

.diploma {
  background-color: var(--color-grey-1);
  color: var(--color-grey-6);
  padding: 0;
}

.event-label {
  position: relative;
  left: 50px;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  background-color: inherit;
  transition: transform 0.3s, z-index 0.3s;
}

.event-label::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  width: 40px;
  height: 2px;
  background-color: inherit;
  transform-origin: left;
  transition: transform 0.4s, z-index 0.4s;
}

.event:hover,
.event:hover .event-label,
.event:hover .event-label::before {
  transform: scale(1.03);
  z-index: 8;
}

.event:hover .event-label::before {
  width: 38.0952380952px; /* Berechnet die reduzierte Breite */
  left: -38.0952380952px; /* Berechnet die reduzierte Breite */
}

.popup {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
  margin: 15% auto;
  padding: 20px;
  border-radius: 15px;
  width: 80%;
}

.popup-title {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: bold;
}

.close {
  float: right;
  font-size: 2.5rem;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/*skills*/
.about-container {
  display: flex;
  gap: 3rem;
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}
.about-container .about-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.about-container .about-items .about-item {
  border: 1px solid var(--color-grey-5);
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
  box-shadow: 1px 2px 15px rgba(0, 0, 0, 0.1);
}
.about-container .about-items .about-item:hover {
  cursor: default;
  transform: translateY(-5px);
  border: 1px solid var(--color-secondary);
  box-shadow: 1px 4px 15px rgba(0, 0, 0, 0.32);
}
.about-container .about-items .about-item .abt-text {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.about-container .about-items .about-item .abt-text .svg-icon {
  display: flex;
  justify-content: center;
  padding: 0; /* Entfernt zusätzliche Abstände */
  margin: 0; /* Entfernt zusätzliche Abstände */
}
.about-container .about-items .about-item .abt-text .svg-icon .svg-img-icon {
  height: 90px;
  margin: 1rem;
  color: var(--color-secondary); /* Farbe setzen */
}
.about-container .about-items .about-item .abt-text i {
  font-size: 5rem;
  color: var(--color-secondary);
  padding-bottom: 1rem;
  align-self: center;
}
.about-container .about-items .about-item .abt-text .large-text {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-secondary);
}
.about-container .about-items .about-item .abt-text .small-text {
  padding-left: 3rem;
  position: relative;
  text-transform: uppercase;
  font-size: 1.2rem;
  color: var(--color-grey-1);
  letter-spacing: 2px;
}
.about-container .about-items .about-item .abt-text .small-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 2rem;
  height: 2px;
  background-color: var(--color-grey-5);
}
.about-container .about-description p {
  line-height: 2rem;
  padding: 1rem;
  color: var(--color-grey-1);
}
.about-container .about-description h4 {
  font-size: 2rem;
  text-transform: uppercase;
}

.stat-title {
  text-transform: uppercase;
  font-size: 1.4rem;
  text-align: center;
  padding: 5rem 0 2rem 0;
  position: relative;
}
.stat-title::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 85%;
  width: 40%;
  height: 1px;
  background-color: var(--color-grey-5);
  transform: translateX(-50%);
}

.skills .btn-con, .timeline .btn-con {
  display: flex;
  justify-content: center; /* Horizontale Zentrierung */
  margin-top: 2rem; /* Optional: Abstand zum vorherigen Inhalt */
}

.contact-content-con {
  display: flex;
  padding-top: 3.5rem;
}
.contact-content-con .left-contact {
  flex: 2;
}
.contact-content-con .left-contact h4 {
  margin-top: 1rem;
  font-size: 2rem;
  text-transform: uppercase;
}
.contact-content-con .left-contact p {
  margin: 1rem 0;
  line-height: 2rem;
}
.contact-content-con .left-contact .contact-info .contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-content-con .left-contact .contact-info .contact-item p {
  margin: 0.3rem 0 !important;
  padding: 0 !important;
}
.contact-content-con .left-contact .contact-info .contact-item .icon {
  display: grid;
  grid-template-columns: 40px 1fr;
}
.contact-content-con .left-contact .contact-info .contact-item .icon i {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
}
.contact-content-con .left-contact .contact-icon {
  display: flex;
  margin-top: 2rem;
}
.contact-content-con .left-contact .contact-icon a {
  display: flex;
  align-items: center;
  color: var(--color-white);
  background-color: var(--color-grey-5);
  cursor: pointer;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 0.4rem;
  transition: all 0.4s ease-in-out;
  box-shadow: var(--box-shadow-1); /* Schlagschatten */
}
.contact-content-con .left-contact .contact-icon a:hover {
  background-color: var(--color-secondary);
  transform: translateY(-3px); /* Leichtes Anheben */
}
.contact-content-con .left-contact .contact-icon a:hover i {
  color: var(--color-primary);
}
.contact-content-con .left-contact .contact-icon a i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.contact-content-con .right-contact {
  flex: 3;
  margin-left: 3rem;
}
.contact-content-con .right-contact .input-control {
  margin: 1.5rem 0;
}
.contact-content-con .right-contact .input-control input, .contact-content-con .right-contact .input-control textarea {
  border-radius: 30px;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  padding: 0.8rem 1.1rem;
  outline: none;
  border: none;
  background-color: var(--color-grey-5);
  width: 100%;
  color: var(--color-white);
  resize: none;
}
.contact-content-con .right-contact .i-c-2 {
  display: flex;
}
.contact-content-con .right-contact .i-c-2 :last-child {
  margin-left: 1.5rem;
}
.contact-content-con .right-contact .submit-btn {
  display: flex;
  justify-content: flex-start;
}

/* Kontaktformular - Senden Button */
.send-form-btn {
  border-radius: 30px; /* Abgerundete Ecken */
  color: var(--color-white); /* Textfarbe */
  font-weight: 600; /* Schriftgewicht */
  background-color: var(--color-grey-5); /* Hintergrundfarbe */
  border: none; /* Kein Rand */
  padding: 0.8rem 1.5rem; /* Innenabstand */
  font-size: 1rem; /* Schriftgröße */
  cursor: pointer; /* Mauszeiger */
  transition: all 0.4s ease-in-out; /* Übergangs-Effekte */
  text-transform: uppercase; /* Großbuchstaben */
  box-shadow: var(--box-shadow-1); /* Schlagschatten */
}

/* Hover-Effekt */
.send-form-btn:hover {
  background-color: var(--color-secondary); /* Hintergrundfarbe bei Hover */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Vergrößerter Schlagschatten */
  transform: translateY(-3px); /* Leichtes Anheben */
  color: var(--color-black); /* Textfarbe */
}

/* Independend Contents */
.btn-con {
  display: flex;
  align-self: flex-start;
}

.main-btn {
  border-radius: 30px;
  color: inherit;
  font-weight: 600;
  position: relative;
  border: 1px solid var(--color-secondary);
  display: flex;
  align-self: flex-start;
  align-items: center;
  overflow: hidden;
  transition: all 0.4s ease-out; /* Transition für den Standardzustand */
}
.main-btn .btn-text {
  padding: 0 2rem;
}
.main-btn .btn-icon {
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 1rem;
}
.main-btn .btn-icon i {
  color: var(--icon-color);
}
.main-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  transition: transform 0.4s ease-out; /* Transition für das Pseudo-Element */
  z-index: -1;
}
.main-btn:hover::before {
  transform: translateX(0);
}

.second-button {
  margin-top: 2rem;
}

.main-title {
  text-align: center;
}
.main-title h2 {
  position: relative;
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 700;
}
.main-title h2 span {
  color: var(--color-secondary);
}
.main-title h2 .bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  color: var(--color-grey-5);
  transition: all 0.4s ease-in-out;
  z-index: -1;
  transform: translate(-50%, -50%);
  font-weight: 800;
  font-size: 6.3rem;
}

@media screen and (max-width: 880px) {
  header {
    padding: 0;
  }
  header .header-content .right-header {
    padding: 1rem;
  }
  section {
    padding: 1rem !important;
  }
  .theme-btn {
    width: 50px;
    height: 50px;
  }
  .header-content {
    grid-template-columns: 1fr;
    padding-bottom: 6rem;
  }
  .left-header .h-shape {
    display: none;
  }
  .left-header .browser-image {
    margin: 0 !important;
  }
  .left-header .browser-image .Sphere .tagcloud {
    color: var(--color-secondary) !important;
  }
  .header-content .left-header .image {
    margin: 0 auto;
    width: 90%;
  }
  .right-header {
    grid-row: 1;
    width: 90%;
    margin: 0 auto;
  }
  .right-header h1 {
    margin: 0 1.2rem;
  }
  .timeline-container {
    margin-left: 1rem;
    margin-bottom: 6rem;
  }
  .popup-info {
    margin-right: 2rem;
  }
  .close {
    font-size: 5rem;
  }
  .contact-content-con {
    padding-top: 1rem;
    padding-bottom: 6rem;
  }
  .contact-content-con .right-contact {
    margin-left: 0;
    margin-top: 1.5rem;
  }
  .main-title h2 {
    font-size: 2rem;
  }
  .main-title h2 span {
    font-size: 2.5rem;
  }
  .main-title h2 .bg-text {
    font-size: 3.5rem;
  }
  .controls {
    top: auto;
    bottom: 0;
    flex-direction: row;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-color: var(--color-grey-5);
  }
  .controls .control-con {
    justify-content: center;
    margin: 0;
  }
  .controls .control {
    margin: 0.7rem 0.3rem;
    width: 40px;
    height: 40px;
  }
  .controls .control::before {
    visibility: hidden;
  }
  .controls .control:hover {
    background-color: var(--color-secondary);
  }
}
@media screen and (max-width: 1300px) {
  section {
    padding: 3rem 18rem 3rem 10rem;
  }
  .contact-content-con {
    flex-direction: column;
  }
  .contact-content-con .left-contact h4 {
    display: none;
  }
  .contact-content-con .left-contact .contact-info .contact-item {
    display: flex;
    flex-direction: column;
    padding: 0.3rem;
  }
  .contact-content-con .left-contact .contact-info .contact-item .icon {
    align-self: flex-start;
  }
  .contact-content-con .left-contact .contact-info .contact-item p {
    align-self: flex-end;
  }
}
@media screen and (max-width: 1200px) {
  section {
    padding: 3rem 18rem 3rem 6rem;
  }
}
@media screen and (max-width: 1100px) {
  .event-location {
    display: none;
  }
  .contact-content-con .right-contact .i-c-2 {
    flex-direction: column;
  }
  .contact-content-con .right-contact .i-c-2 :last-child {
    margin-left: 0;
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 1000px) {
  .about-container {
    flex-direction: column;
  }
  .about-container .about-items {
    padding-top: 2.5rem;
  }
  .about-container .about-description {
    padding: 1rem;
  }
  .about-container:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 600px) {
  .about-container .about-items {
    grid-template-columns: 1fr;
  }
  .event-label {
    white-space: wrap;
    font-size: 1rem;
  }
  .cut-cp {
    display: none;
  }
}/*# sourceMappingURL=styles.css.map */