﻿:root {
    --navHeight: 40px;
    --slideHeight: 760px;
    color: #222222;
    background-color: #222222;
    --main-color: #DEDEDE;
    --main-color-dark: #222222;
    --main-color-middle: #333;
    --link-color: #007BFF;
    --angle: -5deg;
    --angleB: 5deg;
    font-family: system-ui;
    /* font-family: Jost; */
}

html {
    scroll-padding-top: 40px; /* Abstand von 40px oberhalb des Ziels */
}

body {
    font-family: Jost;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: var(--main-color-dark);
}


button {
    font-family: inherit;
}

.angled-box {
    width: 100%;
    margin: auto;
    position: relative;
    padding: 100px 0px 100px 0px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.angled-box-container {
    /*transform: skewY(var(--angleB));*/
}


.grecaptcha-badge{
    z-index: 100;
}


.box-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    gap: 1rem;
}

.box-item.logo {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap-reverse;
    gap: 1rem;
}

    .box-item.logo h4 {
        font-family: Jost;
        font-size: 28px;
        font-weight: 600;
        text-align: center;
        max-width: 600px;
    }

.box-item-image.slider {
    height: 600px;
    width: 100%;
    margin: 0px auto;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

.box-item-image.logo {
    max-width: 400px;
    height: 275px;
}

    .box-item-image.logo img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

.box-item-image.slider img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.box-item-image img{
}

.box-item-txt {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    font-family: Jost;
    font-size: 20px;
    text-align: left;
}


.box-request {
    text-decoration: underline;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
}


    .box-request:hover {
        filter: drop-shadow(0px 0px 9px rgba(0, 0, 0, 0.5))
    }


.section-wrapper {
    flex-direction: column;
    display: flex;
    gap: 2rem;
    padding: 2rem;
    align-items: center;
}

.content-wrapper {
    max-width: 800px;
    background: linear-gradient(135deg, #DEDEDE, #F4F4F4, #DEDEDE);
    padding: 2rem;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.content-wrapper h1, h2 {
   padding: 0;
   margin: 0;
}




.menu-btn {
    background: none;
    border: none;
    display: flex;
    cursor: pointer;
    align-items: center;
    padding: 0;
    margin: 0;
}


.menu-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Fullscreen Navigation */
.fullscreen-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    opacity: 0;
}

    /* Sichtbar machen */
    .fullscreen-nav.active {
        transform: translateX(0);
        opacity: 1;
    }

/* Close Button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    color: white;
    cursor: pointer;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        text-decoration: none;
        font-size: 24px;
        color: white;
        transition: color 0.3s ease;
    }

        .nav-links a:hover {
            color: #007BFF;
        }














        
        
        
/* Slider */



.slider-btn.prev {
    left: 10px;
}

    .slider-btn.next {
        right: 10px;
    }




.slider-btn {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: var(--main-color); /* Hintergrundfarbe des Buttons */
    border: 1px solid white;
    border-radius: 50%; /* Runde Form */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.2);
    opacity: 0.5;
}
    .slider-btn span {
        position: absolute;
        display: block;
        width: 8px; /* Länge der Pfeillinie */
        height: 2px; /* Dicke der Pfeillinie */
        background-color: white; /* Farbe der Pfeillinie */
        transform-origin: center;
    }


    .slider-btn.prev span:first-child {
        transform: rotate(135deg);
        top: 20px;
    }

    .slider-btn.prev span:last-child {
        transform: rotate(225deg);
        bottom: 21px;
    }

    .slider-btn.next span:first-child {
        transform: rotate(45deg);
        top: 20px;
    }

    .slider-btn.next span:last-child {
        transform: rotate(-45deg);
        bottom: 21px;
    }

    .slider-btn:hover {
       /* background-color: var(--main-color-dark);*/
        opacity: 1;
        box-shadow: 0 0px 6px rgba(0, 0, 0, 0.3); /* Stärkerer Schatten beim Hover */
    }


@media (pointer: coarse) { /* Für Touch-Geräte */
    .dots {
        opacity: 1 !important; /* Immer sichtbar auf Touch */
    }
    .slider-btn {
        opacity: 1 !important;
        box-shadow: 0 0px 6px rgba(0, 0, 0, 0.3) !important; /* Stärkerer Schatten beim Hover */
    }


}

.dots {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
}

.dot {
    width: 16px;
    height: 16px;
    background: white;
    border: 1px solid white;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: inset 0px 0px 4px rgba(0,0,0,0.25);
}

.dots:hover {
    opacity: 1;
}

.dot:hover {
    background: var(--main-color);
}

.dot.active {
    background: var(--main-color);
}



.slider-btn.small-next {
    top: 10%;
}

.slider-btn.small-prev {
    top: 90%;
}



















.small-box-wrapper {
    position: relative;
    transform: skewY(-5deg);
    overflow: hidden;
    z-index: 5;
    height: 640px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
}

.small-box-image {
    height: 100%;
    width: 100%;
    transform: skewY(5deg);
    position: relative;
    display: flex;
}

    .small-box-image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

.small-box-item {
    display: none; 
    width: 100%;
    height: 100%;
}

/* Scroll To Top */

/* Button-Stil */
.scroll-top-btn {
    position: fixed;
    bottom: 82px; /* Abstand vom unteren Rand */
    right: 20px; /* Abstand vom rechten Rand */
    width: 50px;
    height: 50px;
    background-color: var(--main-color-dark);
    color: var(--main-color);
    border: none;
    border-radius: 50%; /* Runde Form */
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    opacity: 0; /* Standardmäßig ausgeblendet */
    visibility: hidden; /* Unsichtbar */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
    display: flex;
    place-content: center;
    place-items: center;
}

    .scroll-top-btn:hover {
        background-color: var(--main-color-middle); /* Dunklerer Hintergrund beim Hover */
    }

    .scroll-top-btn img {
        width: 25px;
        height: 25px;
        object-fit: contain;
    }

    /* Button anzeigen, wenn aktiv */
    .scroll-top-btn.active {
        opacity: 1;
        visibility: visible;
    }









.request-message {
    height: 350px !important;
}

.request-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 650px;
    margin: auto;
    padding: 2rem;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}


.input-txt {
    height: 38px;
    border-radius: 5px;
    outline: none;
    border: 1px solid white;
    padding: 0.5rem;
    font-family: Jost;
    font-size: 16px;
}

.request-button {
    height: 38px;
    border-radius: 5px;
    background: var(--main-color-dark);
    color: white;
    border: 1px solid white;
    font-size: 18px;
    cursor: pointer;
}

/* Checkbox Wrapper */
.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    font-family: Arial, sans-serif;
    color: var(--main-color-dark);
}

    /* Versteckte Checkbox */
    .checkbox-wrapper input[type="checkbox"] {
        display: none;
    }

/* Gestaltete Checkbox */
.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--main-color-dark);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Checkbox aktiv */
.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom {
    background-color: var(--main-color-dark);
    border-color: transparent;
}

    .checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom::after {
        content: "";
        position: absolute;
        left: 5px;
        top: 2px;
        width: 6px;
        height: 10px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

/* Label-Stil */
.checkbox-label {
    color: var(--main-color-dark);
}

    .checkbox-label a {
        color: var(--link-color);
        text-decoration: none;
    }

        .checkbox-label a:hover {
            text-decoration: underline;
        }












a {
    color: inherit;
    text-decoration: inherit;
}



.nav-container {
}

nav {
    background: var(--main-color-dark);
    color: var(--main-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    top: 0px;
    position: fixed;
    z-index: 999;
    height: 50px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.nav-item {
    pointer-events: all;
}

    .nav-item:hover a {
        color: white;
        text-decoration: underline;
    }


.nav-hide {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    flex: 1;
}


.nav-wrapper {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    max-width: 1920px;
    flex: 1;
}


.no-scroll {
    overflow: hidden;
    scroll-snap-type: x mandatory;
    touch-action: none;
}

main {
    background: var(--main-color);
    position: relative;
    padding-bottom: 10rem;
    margin-top: 50px;
}

h2{
    padding: 0;
    margin: 0;
}

#content {
    background: #f4f4f4;
    border-radius: 5px;
}


/* Logo Container*/
.logo-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4rem;
    padding: 2rem;
    justify-content: center;
    margin: auto;
    max-width: 1700px;
}

    .logo-container img {
        object-fit: contain;
        width: 150px;
        height: 150px;
    }



.alert {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid transparent;
    border-radius: 5px;
}

    .alert.success {
        color: #155724;
        background-color: #d4edda;
        border-color: #c3e6cb;
    }

    .alert.error {
        color: #721c24;
        background-color: #f8d7da;
        border-color: #f5c6cb;
    }

.scroll-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 6rem 0;
}

/* Inhalt, der sich bewegt */
.scroll-content {
    display: flex;
    align-items: center;
    gap: 2rem; /* Abstand zwischen den Bildern */
    animation: scroll-left 150s linear infinite;
    width: fit-content;
}

    .scroll-content img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

.scroll-item {
    padding: 1rem;
    min-width: 250px;
    height: 250px;
    border-radius: 20px;
    box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, #DEDEDE, #F4F4F4, #DEDEDE);
}

@media (max-width: 800px) { /* Passe die Breite nach Bedarf an */
    .scroll-content {
        animation: scroll-left 100s linear infinite;
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-60%);
    }
}

/* Cookie-Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 1em;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    display: none; /* Standardmäßig ausgeblendet */
    z-index: 1000;
}

    .cookie-banner p {
        margin: 0 0 0.5em;
        font-size: 14px;
    }

    .cookie-banner a {
        color: #007BFF;
        text-decoration: underline;
    }

        .cookie-banner a:hover {
            color: #0056b3;
        }

.cookie-btn {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 0.5em 1em;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .cookie-btn:hover {
        background-color: #0056b3;
    }




.main-slide{
    height: 750px !important;
}


.logo-item {
    position: relative;
    display: flex;
}

    .logo-item a {
        height: 100%;
    }

        .logo-item:hover img {
            filter: drop-shadow(0px 0px 6px rgba(0,0,0,0.5));
        }

/* Media Query*/
@media (max-width: 800px) { /* Passe die Breite nach Bedarf an */
    .nav-hide {
        display: none; /* Nav verstecken */
    }

    .logo-container img {
        width: 100px;
        height: 100px;
    }

    .request-message {
        height: 250px !important;
    }

    .box-item-image.logo {
        max-width: 300px;
        }
}    


/* FOOTER  */
/* Grundlegender Stil für den Footer */
footer {
    background: var(--main-color-middle);
    color: #fff;
    text-align: center;
    width: 100%;
    font-size: 0.9em;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1.5em;
    padding: 2em 1em;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 0.5em 0;
}

    .footer-section h3 {
        color: #fff;
        margin-bottom: 0.5em;
        font-size: 1.2em;
    }

    .footer-section p,
    .footer-section a {
        color: #ccc;
        text-decoration: none;
    }

        .footer-section a:hover {
            color: #fff;
            text-decoration: underline;
        }

    .footer-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer-section ul li {
            margin: 0.5em 0;
        }

            .footer-section ul li a {
                color: #ccc;
            }

.footer-bottom {
    margin-top: 2em;
    border-top: 1px solid #444;
    font-size: 0.8em;
    color: #aaa;
    padding: 2em 1em;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}

    .social-links a {
        color: #ccc;
        text-decoration: none;
    }

        .social-links a:hover {
            color: #fff;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
}




/* Slides */
.slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
    position: relative;
}

.slide {
    width: 100%;
    display: none;
    text-align: center;
    height: calc(100vh - var(--navHeight));
    position: relative;
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .slide-text-wrapper {
        position: absolute;
        left: 1rem;
        bottom: 1rem;
    }
    .slide-text-wrapper p {
        font-size: 1rem;
    }

.small-slider {
    position: relative;
    display: flex;
}
/* Dots */

