@font-face {
    font-family: 'ArialMT';
    src: url('../fonts/ARIALMTMEDIUM.TTF') format('tff'),
         url('../fonts/ARIALMTEXTRABOLD.TTF') format('ttf');
    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;
    font-size: 90%;
  }

h2 {
    font-size: 2vw;
}

a {
    text-decoration: none;
    color: black;
}

.home-clip-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #081b29;
    z-index: 1;
    clip-path: polygon(0 88%, 100% 83%, 100% 100%, 0 100%);
}

.datenschutz-clip-div {
    width: 100%;
    background-color: #081b29;
    z-index: -1;
    clip-path: polygon(0 88%, 100% 83%, 100% 100%, 0 100%);
}

.services-clip-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #082918;
    z-index: 1;
    clip-path: polygon(0 88%, 100% 83%, 100% 100%, 0 100%);
}

.references-clip-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #081b29;
    z-index: 1;
    clip-path: polygon(0 88%, 100% 83%, 100% 100%, 0 100%);
}

.aboutme-clip-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #082918;
    z-index: 0;
    clip-path: polygon(0 88%, 100% 83%, 100% 100%, 0 100%);
}

.contact-clip-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #081b29;
    z-index: 1;
    clip-path: polygon(0 88%, 100% 83%, 100% 100%, 0 100%);
}

 .navbar-1 {
    position: relative;
    height: 40px;
    background-color: #081b29;
    
 }

 .navbar-2 {
    position: relative;
    height: 40px;
    background-color: #082918;
    
 }

 .navbar-3 {
    position: relative;
    height: 40px;
    background-color: #081b29;
    
 }

 .navbar-4 {
    position: relative;
    height: 40px;
    background-color: #082918;
    
 }

 .navbar-5 {
    position: relative;
    height: 40px;
    background-color: #081b29;
    
 }

 .navbar-menu a {
    font-weight: 400;
 }

 .home-content-button { 
    position: absolute;
    left: 50%;
    top: 90%;
    z-index:10;
    animation-name: infiniteupdown;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    transition: all .3s;
}

.home-content-button img {
    max-width: 90%;
    height: auto;
}


.services-content-button { 
    position: absolute;
    left: 50%;
    top: 90%;
    z-index:10;
    animation-name: infiniteupdown;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    transition: all .3s;
}

.references-content-button { 
    position: absolute;
    top: 90%;
    left: 50%;
    z-index:10;
    animation-name: infiniteupdown;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    transition: all .3s;
}

.aboutme-content-button { 
    position: absolute;
    left: 50%;
    top: 90%;
    z-index: 1;
    animation-name: infiniteupdown;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    transition: all .3s;
}

.contact-content-button { 
    position: absolute;
    left: 50%;
    top: 90%;
    z-index:10;
    animation-name: infiniteupdown;
    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);
    }
    }

 .navbar-menu {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 1em;
    
 }

 .navbar-links {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.3em;
 }

 .navbar-linksActive {
    text-decoration: none;
    color: #F5F5DC;
    font-weight: bold;
    font-size: 1.3em;
 }

 .navbar-social {
    height: 100%;
    display: flex;
    padding-left: 1em;
    align-items: center;

 }

.navbar-socialImages {
    width: 2em;
    padding-left: 0.5em;
    
}

#home {
    height:100vh;
    background-color: white;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.datenschutzfooter {
    width: 100%;
    background-color: #081b29;
    clip-path: polygon(0 88%, 100% 83%, 100% 100%, 0 100%);
}

.home-content {
    height: 100%;
    position: relative;
    z-index: 0;
}

.main-headline {
    font-family: 'ArialMT';
    font-weight: bold;
    font-size: 50px;
    line-height: 0px;
    margin-top: 3%;
}

.home-content-picture {
    display: flex;
    justify-content: center;
}

.home-content-text {
    display: flex;
    justify-content: center;
    line-height: 0px;
}

.home-content-text p {
    font-size: 2.5em;
}

.logo {
    max-width: 30%; /* Verhindert, dass das Logo zu groß wird */
    height: auto;
}



#services {
    height:100vh;
    background-color: white;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
}

.services-content {
    height: 95%;
    position: relative;
    z-index: 2;
}

.references-content {
    height: 80%;
    position: relative;
    z-index: 2;

}

.aboutme-content {
    height: 100%;
    width: 100%;
    position: relative;
}

.contact-content {
    width: 100vw;
    height: 100%;
    z-index: 2;
}

.services-content-cards {
    display: flex;
    padding-top: 3%;
    align-items: center;
}

.services-headline h2 {
    text-align: center;
    line-height: 0px;
}

.cards {
    position: relative;
    margin: auto;
    width: 20%;
    min-width: 100px;
    min-height: 50px;
    max-width: 400px;
    aspect-ratio: 4 / 5;
    background-color: white;
    border-radius: 50px;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.3);
}

.cards:hover {
    transform: scale(1.1);
}

.card-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card_image {
    width: 80%;
    height: 200px;
    object-fit: cover;
}

.card-text {
    display: flex;
    height: 150px;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 1em;
    font-weight: 450;
}

.card-text p {
    text-align: center;
    color: black;
}

.card-buttons {
    position: absolute;
    bottom: 0%;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
}

.card_button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 200px;
    height: 50px;
    border-radius: 12px;
    background-color: #082918;
    color: white;
    font-weight: 400;
}

#references {
    height:100vh;
    background-color: white;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
}

.cursor {
  display: inline-block;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.references-box {
    width: 45vw;
    height: 55vh;
    min-height: 400px;
    min-width: 450px;
    background-color: white;
    border-radius: 50px;
    box-shadow: 8px 8px 16px rgba(0,0,0,0.3);

}

.video {
    width: 100%;
    height: 100%;
    min-height: 400px;
    min-width: 450px;
}

.references-box-images {
    display: flex;
    position: relative;
}


#reference-2,
#reference-3,
#reference-4,
#reference-5,
#reference-6,
#reference-7,
#reference-8,
#reference-9
{
    display: none;
}

.reference-text {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    
}

#reference-pointer {
    display: flex;
    justify-content: center;
}

#reference-pointer-2,
#reference-pointer-3,
#reference-pointer-4,
#reference-pointer-5,
#reference-pointer-6,
#reference-pointer-7,
#reference-pointer-8,
#reference-pointer-9 {
    height: 15px;
    width: 15px;
    background-color: white;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.2);
    border-radius: 50px;
}

#reference-pointer-1 {
    height: 15px;
    width: 15px;
    background-color: black;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.2);
    border-radius: 50px;
}

.references-box-slider {
    display: flex;
    align-items: center;
    height: 450px;
}

.left_slider {
    transform: rotate(90deg);
    cursor: pointer;
}


.right_slider {
    transform: rotate(-90deg);
    cursor: pointer;
}

.references-headline {
    text-align: center;
    width: 100vw;
    line-height: 0.5em;
}

.references-wrapper {
    display: flex;
    justify-content: center;
}


#aboutme {
    height:100vh;
    background-color: white;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
}

.aboutme-content-header {
    text-align: center;
    width: 100%;
    line-height: 0.5em;
}

.aboutme-content-header h2 {
    padding-bottom: 5px;
}

.aboutme-content-info {
    width: 100%;
    padding-top: 3%;
    text-align: center;
    font-weight: 400;
    line-height: 0.5em;
}

.aboutme-content-signature {
    margin-top: 10%;
    width: 100%;
    text-align: center;
}

.aboutme-content-signature img {
    width: 20%;
}

.founder-picture {
    position: absolute;
    bottom: 18%;
    left: 70%;
    z-index: 0;
}

.founder_picture {
    width: 50%;
}

#contact {
    height:100vh;
    width: 100vw;
    background-color: white;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
}

.contact_formular input,
.contact_formular textarea {
    width: 60%;
    padding: 15px;
    margin: 5px 0; /* Abstand zwischen den Feldern */
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact-infos {
    display: flex;
    justify-content: center;
    width: 100%;

}



.contact-formular {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;

}

.contact_formular {
    text-align: center;
}

.contact-social-icons {
    text-align: center;
    width: 100%;

}


.contact-social-icons p {
    font-weight: 400;
    line-height: 0.5em;
}

.contact-socials {
    width: 30px;
}

.contact-content-button_nextsidebutton {
    transform: rotate(180deg);
}

.submit-button {
    background-color: white;
}

.submit-button:hover {
    background-color: #F5F5DC;
}

.footer {
    position: absolute;
    width: 100vw;
    bottom: 0%;
    z-index: 1000;
}

.footer-links {
    display: block;
    position: absolute;
    left: 90%;
    bottom: 80%;
    width: 100vw;
}

.footer-links a{
    display: block;
    text-decoration: none;
    color: white;
    font-weight: 400;
}

.footer-claim {
    display: flex;
    justify-content: center;
    line-height: 0px;
    color: white;
    font-weight: 400;
}

.impressum-headline {
    text-align: center;
}

.impressum-info {
    text-align: center;
}

.impressum-info p {
    font-weight: 400;
}

.impressum-lineheight {
    line-height:0.5em;
}

.datenschutz-headline {
    text-align: center;
    width: 100%;
}

.datenschutz-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100vw;
}

.datenschutz-info {
    display: flex;
    width: 50vw;
    font-weight: 400;
    justify-content: center;
    align-items: center;
}

.print-content {
    height: 100vh;
}

.print-headline {
    position: relative;
    display: flex;
    justify-content: center; /* Zentriert den H2 in der Mitte */
    align-items: center;      /* Vertikale Zentrierung */
    height: 100px;            /* Oder gewünschte Höhe */
}

.print-headline > div:first-child {
    position: absolute;
    left: 0;
    margin-left: 20px; /* Abstand zum Rand */
    width: 150px;
    height: 50px;
    border-radius: 12px;
    background-color: #081b29;
    font-weight: 400;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}



.print-headline a {
    text-decoration: none;
    color: white;
    font-size: 1.5em;
    

}


.print-headline-2 {
    text-align: center;
    line-height: 0.5em;
}

.print-text {
    width: 50vw;

    font-weight: 400;
}

.align-container {
    display: flex;
    justify-content: center;
    
}

.print-leistungen {
    font-weight: 400;
    width: 50vw;

}

.navbar-menu a:hover {
    font-weight: bold;
}

.print-image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    width: 500px;
}


.print-image-box_images video {
    width: 300px;
}

.print-box-slider {
    display: flex;
    height: 250px;
    align-items: center;
    justify-content: center;

}



.print-image-box-right-slider {
    transform: rotate(-90deg);
}

.print-image-box-left-slider {
    transform: rotate(+90deg);
}

.contact_formular input,
.contact_formular textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
}

.contact_formular input::placeholder,
.contact_formular textarea::placeholder {
  font-family: inherit;
  color: #aaa;
}

  
  /* Für Smartphones (bis 767px) */
  @media (max-width: 767px) {


    body h2{
        font-size: 70%;
    }

    body p{
        font-size: 70%;
    }

    .home-content-picture {
        display: flex;
        justify-content: center;
        width: 500px;
    }

    .logo {
        width: 600px;
    }

    .home-content-text p {
        font-size: 90%;
    }

    .main-headline {
      font-size: 1.5em; 
      line-height: 0px; 
              margin: 0;
        padding: 0;
    }

    .references-box {
        width: 65vw;
        height: 30vh;
        min-height: 100px;
        min-width: 200px;
        background-color: white;
        border-radius: 50px;
        box-shadow: 8px 8px 16px rgba(0,0,0,0.3);
    }

    .home-content{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin: 0;
        padding: 0;
        height: 100vh;
    }

    .home-content-picture {
        height: 100px;
    }

    .home-content-text {
        line-height: 0px;
        margin: 0;
        padding: 0;
    }

    .video {
    width: 100%;
    height: 100%;
    min-height: 100px;
    min-width: 200px;
    margin-bottom: 10%;
    }

    .references-box-slider {
        height: 200px;
    }



    .navbar-menu {
        display: none;
    }

    .home-content-button,
    .services-content-button,
    .references-content-button,
    .aboutme-content-button,
    .contact-content-button {
        display: none;
    }
  }


