@charset "UTF-8";
rosa #ffd6d2 h1,
h2, h3, h4 {
  text-transform: lowercase;
}
rosa #ffd6d2 h1 .highlight,
h2 .highlight, h3 .highlight, h4 .highlight {
  color: #fff;
}

/* iPhone (max-width: 480px) 
@media (max-width: 480px) {
  header {
    h1 {
      font-size: 1.2rem;
    }
    p {
      font-size: 0.9rem;
    }
    a {
      font-size: 0.8rem;
    }
  }

  .section {
    padding: 2rem 1rem;

    h2 {
      font-size: 1.3rem;
    }
  }

  .cards,
  .gallery {
    grid-template-columns: 1fr;
  }

  .brands,
  .stats {
    flex-direction: column;
    align-items: center;
  }

  .stats {
    gap: 1rem;
  }

  .form-section {
    form {
      padding: 0 0.5rem;
    }
  }
}

/* iPad (481px - 1024px) 
@media (min-width: 481px) and (max-width: 1024px) {
  header {
    h1 {
      font-size: 1.8rem;
    }
    p {
      font-size: 1rem;
    }
    a {
      font-size: 0.9rem;
    }
  }

  .section {
    padding: 3rem 1rem;

    h2 {
      font-size: 1.6rem;
    }
  }

  .cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .form-section {
    form {
      padding: 0 1rem;
    }
  }
}
*/
/* ---------------------------------------
   Variables (optional, but recommended)
---------------------------------------- */
/* ---------------------------------------
   Reset / Base
---------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: inline-block;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  background-color: var(--white);
  color: var(--green);
  font-family: "Helveticaneuecyr Roman", sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 18px;
  display: block;
  overflow: visible;
  position: relative;
}

.green {
  color: #dcff49;
}

/* ---------------------------------------
   Animations
---------------------------------------- */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ---------------------------------------
   Header / Hero
---------------------------------------- */
header {
  position: relative;
  height: 100vh;
  color: #fff;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-attachment: fixed;
  z-index: 1;
}
header video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}
@media (max-width: 480px) {
  header video {
    display: none;
  }
}
header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
header .content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}
header h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #f5bfbf;
  text-transform: uppercase;
  line-height: 60px;
}
@media (max-width: 480px) {
  header h1 {
    font-size: 30px;
    line-height: 32px;
    text-align: center;
  }
}
header h1 span.whiteFont {
  color: #fff;
}
header p {
  font-size: 1.5rem;
  line-height: 30px;
  margin-bottom: 1.5rem;
  font-weight: 900;
  max-width: 50%;
}
@media (max-width: 480px) {
  header p {
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    max-width: 100%;
  }
}
header .btn {
  background: #dcff49;
  color: #0a1a1a;
  outline: 1px solid #dcff49;
}
@media (max-width: 480px) {
  header .btn {
    display: block;
    text-align: center;
  }
}

.gelb {
  color: #dcff49;
}

.highlight {
  color: #f5bfbf;
}

/* ---------------------------------------
   Sections (Global)
---------------------------------------- */
.section {
  position: relative;
  padding: 4rem 2rem;
  transition: background-color 0.8s ease;
}
.section h2 {
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 1rem;
  transition: color 0.6s ease, opacity 0.6s ease;
}
@media (max-width: 992px) {
  .section h2 {
    font-size: 30px;
    line-height: 30px;
  }
}
.section.dark {
  background: #0a1a1a;
  color: #fff;
}
.section.pink {
  background: #b88686;
}
.section.pink.active {
  background-color: #0a1a1a;
}
.section.white {
  background: #fff;
}
.section.grey {
  background: #e9e9e9;
}
.section.is--sticky-top {
  z-index: 1;
  background-color: #ffd6d2;
  flex-flow: row;
  justify-content: flex-start;
  align-self: auto;
  align-items: stretch;
  width: 100%;
  height: 100vh;
  display: block;
  position: sticky;
  top: auto;
  bottom: 0;
  overflow: visible;
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

/* ---------------------------------------
   Specific Section: Blending-Art-Strategy
---------------------------------------- */
#Blending-Art-Strategy {
  padding-top: 0;
  padding-bottom: 0;
  z-index: 1;
}

/* ---------------------------------------
   Slide Background / Sticky Hero
---------------------------------------- */
.slide-bg-desktop {
  width: 100%;
  height: 100%;
}
@media (max-width: 480px) {
  .slide-bg-desktop {
    display: none;
  }
}

.slide-bg-tablet {
  width: 100%;
  height: 100%;
}
@media (max-width: 480px) {
  .slide-bg-tablet {
    display: none;
  }
}
@media (min-width: 992px) {
  .slide-bg-tablet {
    display: none;
  }
}

.slide-bg-mob {
  width: 100%;
  height: 100%;
  display: none;
}
@media (max-width: 480px) {
  .slide-bg-mob {
    display: block;
  }
}

.slide-bg {
  background-color: var(--blushing-silk);
  flex: none;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding-left: 0;
  padding-right: 0;
  display: block;
  overflow: visible;
}

.slide-move-bg {
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  inset: 0% auto 0% 0%;
  overflow: hidden;
}

.slide-bg-animation {
  flex: none;
  width: 100vw;
  height: 100%;
  overflow: visible;
}

.image-cover {
  vertical-align: baseline;
  object-fit: cover;
  object-position: 0% 50%;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.sticky-slide-wrapper {
  flex-flow: column;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.sticky-animation-hero {
  height: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.sticky-wrapper {
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: auto;
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden;
}

/* ---------------------------------------
   Split Lines / Mask
---------------------------------------- */
.split-lines {
  color: #000;
  font-family: "Helveticaneuecyr Roman", sans-serif;
  font-size: 2.34em;
  font-weight: 400;
  line-height: 1.1;
}

.line-mask {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fdfdfd;
  opacity: 0.75;
  height: 100%;
  width: 100%;
  z-index: 2;
}

/* ---------------------------------------
   Empty Section + Stacking Cards (Spezial)
---------------------------------------- */
.empty-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #181c09;
  padding: 150px 0;
  text-align: center;
}
.empty-section.margTopFull {
  margin-top: 100vh;
}
@media (min-width: 1200px) {
  .empty-section.margTopFull {
    margin-top: 120vh;
  }
}
.empty-section h1 {
  display: block;
  font-size: 30px;
  line-height: 32px;
  margin-bottom: 20px;
}
.empty-section .text {
  max-width: 800px;
  margin-bottom: 20px;
  text-align: center;
}
.empty-section .btn {
  color: #fff;
}

#lebenslauf {
  display: flex;
  width: 100%;
}
@media (max-width: 1059px) {
  #lebenslauf {
    display: none;
  }
}
#lebenslauf .bildArea {
  flex: 1;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  padding: 50px;
  background-image: url("../images/logan.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateZ(0);
  border: 60px solid #fff;
}
#lebenslauf .bildArea p {
  margin: 0;
  display: block;
  width: 100%;
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  text-transform: lowercase;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  text-wrap: balance;
  color: #ffd6d2;
}
@media (min-width: 1200px) {
  #lebenslauf .bildArea p {
    font-size: 65px;
    line-height: 65px;
  }
}
@media (min-width: 1400px) {
  #lebenslauf .bildArea p {
    font-size: 75px;
    line-height: 75px;
  }
}
@media (min-width: 1600px) {
  #lebenslauf .bildArea p {
    font-size: 120px;
    line-height: 120px;
  }
}

.card-container {
  background: url("../images/card-bg.jpg");
  background-position: top left;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 20px 50px;
}

.card-wrapper {
  height: 70vh;
  padding-top: 15vh;
  position: relative;
  width: 50vw;
  margin: auto;
}
.card-wrapper:last-of-type {
  height: 85vh;
  padding-bottom: 15vh;
}
.card-wrapper:last-of-type .stack-card {
  height: 55vh;
}

/* IMPORTANT:
   Renamed to .stack-card to avoid collision with generic .card below */
.card {
  width: 100%;
  height: 55vh;
  margin: 0 auto;
  background: #fff;
  border-radius: 50px;
  padding: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.card.bildungsweg {
  background: url("../images/bildungsweg.jpg");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}
.card.berufserfahrung {
  background: url("../images/berufserfahrung.jpg");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}
.card.skills {
  background: url("../images/skills.jpg");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}
.card.skills2 {
  background: url("../images/skills2.jpg");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}
.card.ausland {
  background: url("../images/ausland.jpg");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}
.card h2 {
  display: block;
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  color: #dcff49;
  margin-bottom: 20px;
  font-family: "Helveticaneuecyr Roman", sans-serif;
}
@media (min-width: 1800px) {
  .card h2 {
    font-size: 50px;
    line-height: 50px;
  }
}
.card .facts {
  color: #fff;
  font-size: 30px;
  line-height: 32px;
  font-weight: 700;
  text-transform: uppercase;
}
.card .facts .small {
  opacity: 0.5;
}
.card p, .card ul {
  color: #fff;
  font-weight: 100;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}
.card p .light, .card ul .light {
  color: #b7abab;
  display: block;
  font-size: 13px;
}
.card ul li {
  position: relative;
  list-style-type: none;
  padding: 0 0 8px 30px;
  transition: 0.3s ease-in-out;
  font-size: 16px;
}
.card ul li:hover {
  font-size: 18px;
}
.card ul li:hover:before {
  opacity: 0.5;
}
.card ul li:before {
  content: "↬";
  font-size: 20px;
  position: absolute;
  left: 0;
  color: #0a1a1a;
  transition: 0.3s ease-in-out;
  opacity: 1;
}

/* ##### GALLERY FOTOS INSTA */
.headline {
  display: block;
  font-weight: 900;
  text-transform: lowercase;
  letter-spacing: -8px;
  margin-bottom: 25px;
  margin-top: 50px;
  color: #acacac;
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) {
  .headline {
    font-size: 80px;
    line-height: 0;
  }
}

.lol {
  width: 100%;
  position: relative;
}
.lol .left, .lol .middle, .lol .right {
  width: 100%;
  display: block;
  color: #fff;
  box-sizing: border-box;
  left: 0;
  padding: 30px;
  text-align: center;
  overflow: hidden;
  -moz-transition: 0.3s ease-in-out all;
  -o-transition: 0.3s ease-in-out all;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media (min-width: 480px) {
  .lol .left .content, .lol .middle .content, .lol .right .content {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media (min-width: 480px) {
  .lol .left, .lol .middle, .lol .right {
    width: 50%;
    font-size: 0.9em;
    padding: 10px;
    left: 0;
    float: left;
    position: absolute;
  }
}
@media (min-width: 768px) {
  .lol .left, .lol .middle, .lol .right {
    width: 33.33333%;
    left: 33.33%;
    padding: 10px;
  }
}
@media (min-width: 992px) {
  .lol .left, .lol .middle, .lol .right {
    padding: 30px;
    font-size: 1em;
  }
}
.lol.animate .left {
  left: 0;
}
@media (min-width: 480px) {
  .lol.animate .left {
    left: 50%;
  }
}
@media (min-width: 768px) {
  .lol.animate .left {
    left: 0;
  }
}
.lol.animate .right {
  left: 0;
}
@media (min-width: 480px) {
  .lol.animate .right {
    left: 50%;
  }
}
@media (min-width: 768px) {
  .lol.animate .right {
    left: 66.66%;
  }
}
.lol .title {
  background: #b88686;
}
.lol .title h2 {
  margin-top: 0;
  color: #ffd6d2;
}
.lol .title p {
  font-size: 16px;
  line-height: 1.55em;
  margin-bottom: 0.75em;
}
.lol .title .btn {
  color: #0a1a1a;
  background: #dcff49;
  display: inline-block;
  margin-top: 15px;
  -moz-transition: 0.3s ease-in-out all;
  -o-transition: 0.3s ease-in-out all;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
.lol .title .btn:hover {
  background: transparent;
  color: #ffd6d2;
}
.lol .tiles {
  padding: 0;
  background: #fff;
  clear: both;
  display: none;
  float: none;
}
.lol .tiles img {
  width: 50%;
  float: left;
  height: auto;
  opacity: 0.7;
  -moz-transition: 0.3s ease-in-out all;
  -o-transition: 0.3s ease-in-out all;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
}
.lol .tiles img:hover {
  opacity: 1;
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
}
@media (min-width: 768px) {
  .lol .tiles {
    display: block;
  }
}
.lol .middle {
  background: slategray;
  z-index: 2;
  padding: 0;
}
.lol .middle img {
  width: 100%;
  height: auto;
  display: block;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
/* ---------------------------------------
   Brands / Gallery / Stats
---------------------------------------- */
.qualifikationen {
  display: flex;
  justify-content: normal;
  flex-wrap: wrap;
  margin-top: 4rem;
}
.qualifikationen .quali {
  display: block;
  padding: 20px 70px;
  font-weight: 900;
  background: #dcff49;
  color: #0a1a1a;
  margin-right: 20px;
  font-size: 24px;
  margin-bottom: 10px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.gallery img {
  width: 100%;
  border-radius: 10px;
  transform: scale(1.05);
  transition: transform 0.6s ease;
}
.gallery img:hover {
  transform: scale(1);
}

.stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin: 2rem 0 4rem;
}
.stats div {
  transition: transform 0.6s;
}
.stats div p {
  display: inline-block;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 900;
}
.stats div:hover {
  transform: scale(1.1);
}

/* ---------------------------------------
   Generic Cards Grid (separat von stacking)
---------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Generic card (not the stacking card) 
.card {
  padding: 2rem;
  border-radius: 10px;
  background: #f4f4f4;
  transition: transform 0.6s ease, background 0.4s;

  &.dark {
    background: $dark;
    color: $white;
  }

  &:hover {
    transform: translateY(-10px);
  }
}*/
/* ---------------------------------------
   Forms
---------------------------------------- */
.form-section form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-section input,
.form-section textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
.form-section button {
  padding: 1rem;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.form-section button:hover {
  background: #0a1a1a;
}

/* ---------------------------------------
   Footer
---------------------------------------- */
footer {
  background: #0a1a1a;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

/* ---------------------------------------
   Utilities
---------------------------------------- */
.margTopFull {
  margin-top: 100vh;
}

.btn {
  display: inline-block;
  padding: 20px 40px;
  background: #dcff49;
  color: #0a1a1a;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 30px;
  outline: 1px solid #dcff49;
  transition: 0.3s ease-in-out;
}
.btn:hover {
  background: transparent;
  color: #fff;
}

/* ---------------------------------------
   Responsive
---------------------------------------- */
/* Custom Cursor */
@media (pointer: fine) {
  html, body {
    cursor: none;
  }
  .cursor-dot, .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    will-change: transform;
  }
  .cursor-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #fff;
    mix-blend-mode: difference; /* cool on light/dark */
  }
  .cursor-ring {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    mix-blend-mode: difference;
    opacity: 0.9;
  }
  /* Hover state */
  .cursor-ring.is-hover {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 1;
  }
  .cursor-dot.is-hover {
    transform: translate(-50%, -50%) scale(0.6);
  }
  /* Click state */
  .cursor-ring.is-down {
    transform: translate(-50%, -50%) scale(0.9);
  }
}

/*# sourceMappingURL=styles.css.map */
