@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: white;
    font-family: helvetica, sans-serif;
    font-weight: 300;
}

/* General Design */

* {
    --green: #0A3819;
    --green-dark: #06210F;
    --green-light: #177C39;
    --brown: #58350D;
}

h1 {
    font-family: "poppins", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    font-size: 60px;
}

h2 {
    font-family: "poppins", sans-serif;
    font-weight: 600;
    font-size: 40px;
    text-transform: uppercase;
    color: white
}

h3 {
    font-family: "poppins", sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    color: white
}

.text {
    font-weight: 320;
    font-size: 20px;
    color: white
}

.light {
    font-weight: 320;
    font-size: 18px;
    color: rgba(119, 119, 119, 0.811) !important;
}

.text-small {
    font-weight: 310;
    font-size: 15px;
    line-height: 20px;
    color: rgb(66, 66, 66) !important;

}

button {
    height: 45px;
    border-radius: 30px;
    padding: 5px 25px;
    font-size: 18px;
    font-weight: 550;
    text-transform: uppercase;
    background: transparent;
    transition: linear .2s;
    border: 2.5px solid white;
    color: white;
}

button:hover {
    background-color: var(--green-light);
    border-color: var(--green-light);
}

.center {
    text-align: center;
    color: black;
    padding: 0 20px;
}

/* header */

header {
    height: 50px;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1;
    left: 0;
    right: 0;
    /* box-shadow:; */
    overflow-x: hidden;
    opacity: 0;
    animation: fadeInAnimation 2s forwards;
    transition: background-color 0.3s ease;
    background-color: var(--green);
}


@keyframes fadeInAnimation {
    to {
        opacity: 1;
    }
}

.header-logo {
    width: 200px;
    margin-left: 5%;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    /* font-family: serif; */
    text-transform: uppercase;
    font-weight: 300;
    font-style: normal;
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 5px;
    transition: background 0.3s, color 0.3s;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Dropdown Menü */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: white;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 25px;
    z-index: 1;
    right: 10px;
    top: 7px;
    position: absolute;
    position: fixed
}

.dropdown-content {
    display: none;
    position: fixed;
    right: 0;
    top: 50px;
    background-color: var(--green-light);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: var(--green-dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid var(--green);
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown .show {
    display: block;
}

/* Header ende */

/* <---------- Sections Beginn----------> */

/* Hero Section */

#start {
    min-height: 100vh;
    background-image: url(pictures/MacBook\ Air\ -\ 5.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin-top: -24px;
}

.heading1,
.heading2 {}

@media only screen and (max-width: 768px) {
    #start {
        background-attachment: scroll;
        background-size: cover;
        /* Adjust background size */
    }
}

.heading1,
.heading2,
.text-load,
#scrollButtonHero {
    opacity: 0;
    animation: fadeInRight 1s forwards;
}

.heading2 {
    animation-delay: 0.5s;
    /* Verzögerung für heading2 */
}

.text-load {
    animation-delay: 1s;
    animation: fadeIn 1s forwards;
}

/* Keyframes für die Fade-In-Animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Übergang für das Scroll-Fade-Out */
.scroll-fade {
    transition: opacity 0.5s ease;
}

.hero-container {
    margin-left: 10%;
    max-width: 1200px;
    text-align: left !important;
    padding-top: 260px;
    padding-bottom: 20px;
}

/* Services Section */

#leistungen {
    background-color: white;
    padding: 80px 0px;
}

.leistungen {
    max-width: 1400px;
    margin: 40px auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.leistung {
    min-width: 350px;
    width: 350px;
    height: 180px;
    background-color: rgba(243, 243, 243, 0.812);
    padding: 20px;
    border: 1px solid rgb(206, 206, 206);
    margin: 20px 0;
    opacity: 1;
    transform: translateY(50px);
    transition: transform .5s ease-in-out;
}

.leistung:hover {
    border: 1px solid rgb(109, 109, 109);
    box-shadow: 10px 10px 15px 5px rgba(0, 0, 0, 0.5);
}

.icon-rap {
    margin-left: 120px;
    margin-top: -50px;
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    font-size: 25px;
    color: white;
}

/* Slideshow Section */


#slide-show {
    background-color: rgb(243, 243, 243);
    padding-top: 80px;
    padding: 15px;
    padding-top: 50px;
}

* {
    box-sizing: border-box;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 1.8s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text2 {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.337);
    backdrop-filter: blur(10px);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

/* Fading animation */
.mySlides.fade {
    animation: fadeEffect 1.5s forwards;
}

@keyframes fadeEffect {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

/* About Section */

#about {
    padding: 80px 0;
    background-image: url(./pictures/GRID.png);
    background-size: cover;
    background-repeat: no-repeat;
    backdrop-filter: blur(2px);
}

.about-container {
    max-width: 1200px;
    /* background-color: black; */
    margin: 40px auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    /* border: 1px solid #0A3819; */
    background-color: rgba(255, 255, 255, 0.193);
    backdrop-filter: blur(2px);
}

.about-left {
    width: 60%;

    backdrop-filter: blur(2px);
    padding: 20px;
    /* border: 1px solid rgb(206, 206, 206); */
    border-right: none;
}

@media (max-width: 780px) {
    .about-left {
        width: 100%;
        padding: 0px 20px;
    }
}

.about-left h3 {
    color: black;
    margin-left: 32px;
    margin-bottom: 20px;
    font-size: 28px;
}

.about-left li {
    color: black;
    margin-bottom: 18px;
    font-weight: 340;
    font-size: 17px;
    color: rgba(0, 0, 0, 0.698);
    background-color: rgba(243, 243, 243, 0.812);

}

.log-li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0;
    /* border-radius: 20px; */
    color: black;
    background-color: rgba(243, 243, 243, 0.812);
    padding: 20px;
    border: 1px solid rgb(206, 206, 206);
    transition: transform .5s ease-in-out;
}

.log-li:hover {
    border: 1px solid var(--green);
    box-shadow: 10px 10px 15px 5px rgba(0, 0, 0, 0.217);

}

.bk {
    width: 500px;
}

/* Contact Section */

#contact {
    padding: 80px 0;
    background-color: rgb(243, 243, 243);
}

.contact-container {
    max-width: 1200px;
    /* background-color: black; */
    margin: 40px auto;
    margin-bottom: -80px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding-bottom: 100px;
}

.contact-left {}

.contact-left h3 {
    color: black;
    font-size: 28px;
}

.contact-left a {
    color: black
}

.contact-right {
    background-image: url(pictures/9359073.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.logo-contact {
    width: 320px;
    padding-top: 20px;
}

/* Footer */

footer {
    background-color: var(--green);
    color: white;
    padding: 20px 0;
    padding-bottom: 0;
    width: 100%;
    position: absolute;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    padding: 20px;
    min-width: 250px;
}

.footer-section h2 {
    font-weight: 400;
    text-transform: uppercase;
    font-family: helvetica, sans-serif;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.footer-section p {
    margin: 0 0 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
}

.footer-section ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 10px;
    background-color: var(--green-dark);
    color: white;
    font-weight: 300;
}

.footer-bottom p {
    margin: 0;
}

.footer-section .fas {
    margin-right: 10px;
}

.socials {
    padding: 0px 10px;
    font-size: 40px;
}

.socials:hover,
.link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.link {
    text-decoration: none;
    color: white;
    padding: 5px 10px;
}

.fa-bars {
    padding-right: 20px;
    size: 40x
}

.picture-footer {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
}

/* Responsiveness */

@media (max-width: 430px) {}

@media (max-width: 540px) {

    /* Responsiveness Dropdown Menü */

    .header-logo {
        width: 40%;
        margin-left: 30%
    }

    nav {
        display: none;
    }
}

@media (min-width: 768px) {

    /* Dropdown Menü ausblenden */

    .dropbtn {
        display: none;
    }
}

/* Preloder */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    z-index: 9999;
}

#preloader .spinner {
    width: 400px;
    animation: bounce 2s ease-in-out infinite;
}

.center img {
    margin-bottom: 10px;
}

@keyframes bounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}



.progress-bar {
    width: 100%;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 10px;
    width: 0;
    background-color: #4e90a9;
}

#impressum {
    max-width: 1000px;
    margin: 0px auto;
    padding-top: 50px
}

/* Reveal ANimations */
.hidden {
    opacity: 0;
    filter: blur(3px);
    transform: scale(.9);
    transition: all 1s;
}

.reveal {
    opacity: 1;
    filter: blur(0);
    transform: scale(1)
}