@font-face {
    font-family: 'ArialMT';
    src: url('../fonts/ARIALMTMEDIUM.TTF') format('truetype'),
         url('../fonts/ARIALMTEXTRABOLD.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
    font-family: 'ArialMT', Arial, sans-serif;
    font-weight: bold;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
}

h1 {
    margin: 0;
    padding: 0;
    font-size: 4em;
}

a {
    text-decoration: none;
    color: white;
    font-weight: 100;
}

.socialImages {
    width: 2%;
    min-width: 20px;
}

#home {
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

#aboutMe {
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
}

#contact {
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    
}

.navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #081b29;
    padding: 0 20px;
    height: 5%;
}



.navbar-left {
  padding-top: 3px;
}

.navbar-middle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.leftSlider {
    cursor: pointer;
}

.rightSlider {
    cursor: pointer;
}

.navbar-middle a {
    padding: 10px;
    font-size: 1.2em;
}

.navbar-middle a:hover {
    font-weight: bold;
}

.linkActive {
    color: #F5F5DC;
}

.mainContent {
    height: 75%;
    width: 100%;
}



.title {
    padding-top: 3%;
    display: flex;
    justify-content: center;
    font-size: 80%;
    line-height: 0px;
}

.subtitle {
    padding-top: 1%;
    display: flex;
    justify-content: center;
    font-size: 60%;
}

.media {
    display: flex;
    justify-content: center;
    height: 60%;
}

.leftSlider {
    transform: rotate(+90deg);
}

.mediaMiddle {
    aspect-ratio: 17 / 10;       
    max-width: 850px;                
    min-width: 250px;
    box-shadow: 8px 8px 16px rgba(0,0,0,0.3);
    border-radius: 20px;
    background-color: white;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.mediaMiddle::after, .mediaMiddle::before {
        content: '';
        position: absolute;
        height: 100%;
        width: 100%;
        background-image: conic-gradient(from var(--angle), transparent 10%, #F5F5DC,#082918,#081b29);
        top: 50%;
        left: 50%;
        translate: -50% -50%;
        z-index: -3;
        padding: 3px;
        border-radius: 20px;
        animation: 7s spin linear infinite;
    }

.mediaMiddle::before {
        filter: blur(1.5rem);
        opacity: 0.5;
    }

    @property --angle {
        syntax: "<angle>";
        initial-value: 0deg;
        inherits: false;
    }

    @keyframes spin {
        from {
            --angle: 0deg;
        }
        to {
            --angle: 360deg;
        }
    }



.mediaLeft {
    display: flex;
    align-items: center;       
}

.cursor {
  display: inline-block;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.mediaRight {
    display: flex;
    align-items: center;
}

.rightSlider {
    transform: rotate(-90deg);
}

.leftSlider:hover,
.rightSlider:hover {
    scale: 1.2;
}


#video1 {
    width: 100%;
    height: 90%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.video {
    width: 95%;
}

.videoMobile {
  display: none;
}

#referencePointer {
    display: flex;
    justify-content: center;
    height: 10%;
    width: 100%;
    align-items: center;
}

#referencePointer2,
#referencePointer3,
#referencePointer4,
#referencePointer5,
#referencePointer6,
#referencePointer7,
#referencePointer8,
#referencePointer9 {
    height: 15px;
    width: 15px;
    background-color: white;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.2);
    border-radius: 50px;
}

#video2,
#video3,
#video4,
#video5,
#video6,
#video7,
#video8,
#video9 {
    display: none;
    width: 100%;
    height: 90%;
    justify-content: center;
    flex-wrap: wrap;
}


#referencePointer1 {
    height: 15px;
    width: 15px;
    background-color: black;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.2);
    border-radius: 50px;
}

.footer {
    position: relative;
    display: flex;
    justify-content: flex-end;
    background-color: #081b29;;
    height: 20%;
    width: 100%;
    clip-path: polygon(0 21%, 100% 11%, 100% 100%, 0% 100%);
}


.footerButton {
    position: absolute;
    width: 2%;
    min-width: 30px;
    bottom: 8%;
    left: 50%;
    animation-name: infiniteupdown;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    transition: all .3s;
}

.footerButtonUp {
    position: absolute;
    width: 2%;
    min-width: 30px;
    bottom: 30%;
    left: 50%;
    animation-name: infiniteupdownUp;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    transition: all .3s;
}

@keyframes infiniteupdown {

    0%,
    100% {
      transform: translateY(0);
    }
    
    50% {
      transform: translateY(10px);
    }
    }

    @keyframes infiniteupdownUp {

    0%,
    100% {
      transform: rotate(+180deg) translateY(0);
    }
    
    50% {
      transform: rotate(+180deg) translateY(10px);
    }
    }

.alternativeColor {
    background-color: #082918;
}

.referenceText {
    width: 100%;
    text-align: center;
    color: black;
    font-size: 90%;
}

.mainContentAboutMe {
    height: 75%;
    width: 100%;
}

.myVision {
    padding-top: 1%;
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 150%;
    line-height: 0px;
}

.myVisionSubtitle {
    line-height: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.mainText {
    padding-top: 3%;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
}

.mainText p{
    width: 50%;
    font-weight: 100;
}


.founderPicture {
    position: absolute;
    left: 70%;
    bottom: 15%;
    width: 10%;
    min-width: 110px;
    z-index: -1;
}

.signature {
    width: 100%;
    text-align: center;
    padding-top: 3%;
}

#Ebene_1 path {
  stroke-dasharray: 0; 
  stroke-dashoffset: 0; 
}



@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.g-recaptcha {
  display: flex;
  justify-content: center;
  padding-bottom: 2%;
}

#Ebene_1 {
    width: 15%;
    min-width: 150px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footerClaim {
    position: absolute;
    bottom: 0;
    color: white;
    font-weight: 5;
    left: 50%;
    transform: translateX(-50%);

}

.footerLinks {
    height: 50%;
    display: block;
    padding-top: 5%;
    padding-right: 2%;
}

.footerLinks a{
    color: white;
    display: block;
    font-weight: 5;
}

.contactMe{
    padding-top: 1%;
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 150%;
    line-height: 0px;
}

.contactForm {
    max-width: 900px; 
    margin: 0 auto;   
    display: block;
    padding: 1rem;
    background-color: white; 
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


.contactForm input[type="text"] {
    width: 49%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    transition: 0.3s border, 0.3s box-shadow;
}


.contactForm input[type="email"],
.contactForm textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    transition: 0.3s border, 0.3s box-shadow;
}


.contactForm input[type="text"]:focus,
.contactForm input[type="email"]:focus,
.contactForm textarea:focus {
    border-color: #081b29;
    box-shadow: 0 0 5px rgba(8,27,41,0.3);
    outline: none;
}

.contactForm .submit-button {
    background-color: #081b29;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s background-color, 0.3s transform;
    width: 100%;
}


.contactForm .submit-button:hover {
    background-color: #0a2b45;
    transform: translateY(-2px);
}


.contactForm textarea {
    min-height: 100px;
    resize: vertical;
}

.socialButtons {
    text-align: center;
    padding-top: 2%;
}

@media (max-width: 600px) {
 

  .navbar {
    font-size: 60%;
  }

  .title {
    padding-top: 10%;
  }

  .subtitle {
    padding-top: 3%;
    padding-bottom: 15%;
  }

  .mainContentAboutMe {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .myVision {
    padding-bottom: 0px;
  }

  .mainText {
    padding-top: 0px;
    line-height: 1.1em;
    text-align: justify;
  }

  .video {
    display: none;
  }

  .videoMobile {
    display: block;
    width: 95%;
    border-radius: 20px 20px 0px 0px;
  }
  

  .myVisionSubtitle {
    line-height: 20px;
    text-align: center;
    width: 80%;
  }

  .mediaMiddle {
    width: 250px;
    height: 400px;
  }
  

  .mainText p{
    width: 90%;
  }

  .mainContent {
    padding: 10px;
  }

  .footerButtonUp {
    display: none;
  }

  .footerLinks {
    padding-top: 10%;
    padding-right: 10%;
  }

  .contactForm{
    max-width: 300px;
    margin-left: 5%;
  }

  .socialButtons{
    display: none;
  }

  .footerButton {
    display: none;
  }

  .signature {
    padding: 0px;
  }

  .footerClaim {
    font-size: 0.5em;
  }

  .footerLinks {
    font-size: 0.8em;
  }
}





