body {
    background-color: #d6dee3;
    background-position: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

header .logo img {
    height: 50px;
    margin-left: 20px;
}

#logo2 {
    height: 60px;
    width: auto;
    left: 0;
    margin-right: 20px;
    margin-left: auto;
}

#logodev {
    height: 60px;
    width: auto;
    top: 20px;
    left: 20px;
    position: fixed;

    z-index: 10000;
}

/*----------------------------------------------------------------*/
.navfull {
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    z-index: 10000;
    top: 0;
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    letter-spacing: 2px;
}

.navfull nav {
    display: flex;
    align-items: center;
}

.navfull .full-nav {
    color: #152c52;
    font-size: 1em;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 5px;
    margin: 5px;
}

.navfull .full-nav:hover {
    background-color: #ffaf2f;
    color: black;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-container {
    position: relative;
}

.nav-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #006699;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 1.5em;
    cursor: pointer;
    z-index: 1000;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: white;
    color: #152c52;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.nav-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-menu ul li {
    margin: 20px 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #006699;
    font-size: 1.2em;
}

.close-nav {
    background: none;
    border: none;
    font-size: 2em;
    color: #006699;
    cursor: pointer;
    align-self: flex-end;
    padding: 10px;
    margin: 10px;
}

.nav-menu.open {
    transform: translateX(0);
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    color: #006699;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
}

ul li a {
    color: #006699;
    text-decoration: none;
    font-weight: bold;
}




.container {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.containervorschlag {
    background-color: white;
    display: block;
    align-items: center;
    text-align: center;
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Header */
.main-header {
    background-color: #285268;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header .logo img {
    height: 50px;
}

.main-header .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.main-header .main-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: url('lagerfeuer.png') center center/cover no-repeat;
    padding: 200px 0;
    text-align: center;
    color: white;
    z-index: 1;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
}

.hero .btn-primary {
    background-color: #004d40;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: #ffaf2f;
    color: black;
}

#formvorschlag {
    display: block;
}

label {
    display: block;
    /* stellt sicher, dass das Label auf einer neuen Zeile steht */
    margin-bottom: 8px;
    /* Abstand zwischen Label und Input */
    font-weight: bold;
    /* Fettgedruckt für bessere Sichtbarkeit */
}

input[type="text"],
textarea {
    padding: 10px;
    margin-bottom: 20px;
    /* Abstand zwischen den Feldern */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
    /* optional: macht das Feld responsiv */
    box-sizing: border-box;
    /* optional: sorgt dafür, dass Padding und Border in der Breite enthalten sind */
}


.einreichenbutton {
    background-color: #004d40;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.einreichenbutton:hover {
    background-color: #ffaf2f;
    color: black;
}

.btn-secondary {
    background-color: #004d40;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

btn-secondary:hover {
    background-color: #ffaf2f;
    color: black;
}

/* Footer */
.main-footer {
    background-color: #285268;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.main-footer a {
    color: white;
    text-decoration: none;
}

footer {
    background-color: #285268;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 20px 0;
}

.footer-content p {
    margin: 5px 0;
}

.footer-content a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: bold;
}

.footer-content a:hover {
    text-decoration: underline;
}

h1,
h2,
h3 {
    color: #285268;
}

strong {
    color: #006699;
}

.slideshow-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.slideshow-text p {
    font-size: 1rem;
    color: #333;
}

.containerhightlight {
    display: flex;
}

.texthighlight {
    display: block;
    width: 50%;
    left: 0;
    text-align: left;
    padding-left: 100px;
}

.highlightbild {
    display: flex;
    width: 45%;
    right: 0;
    justify-content: center;
    height: auto;
}



/* Slideshow Styling */
.slideshow {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    z-index: 10000;
    margin-top: -5%;
}

.slideshow-text {
    position: absolute;
    width: 90%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #285268;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    margin-top: 20px;
    /* Abstand oben */
    margin-bottom: 20px;
    /* Abstand unten */
}

.slideshow-text.active {
    display: block;
}


/* Anzeigebox Styling */
.anzeigebox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    /* Gleicher Abstand zwischen den Boxen */
    width: 95%;
    margin: 20px auto;
}

.boxen {
    flex: 1 1 calc(50% - 20px);
    /* Zwei Boxen nebeneinander mit Abstand */
    max-width: calc(50% - 20px);
    padding: 20px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
    /* Abstand zwischen den Reihen */
    box-sizing: border-box;
}

.bildhighlights {
    width: 75%;
    border-radius: 10px;
}

.texthighlights {
    text-align: left;
}

.help-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff9800;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.help-button:hover {
    background: #e68900;
}

/* Pop-up Fenster */
.help-popup {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: white;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    display: none;
    width: 250px;
    z-index: 100000000;
}

.help-popup a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
    transition: background 0.2s;
}

.help-popup a:hover {
    background: #f1f1f1;
}

.help-popup .close-btn {
    text-align: right;
    cursor: pointer;
    font-size: 18px;
    color: #555;
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .close-nav {
        display: none;
    }

    #devheadline {
        display: none;
    }

    #logodev {
        display: none;
    }
}

@media (max-width: 1023px) {
    .navfull {
        display: none;
    }

    #devheadline {
        display: flex;
        margin-top: 30px;
        text-align: center;
        justify-content: center;
        align-items: center;
        font-size: 30px;
        color: #285268;
    }

    .product-main {
        display: block;
    }

    .product-details {
        display: block;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .slideshow-text {
        display: block;
        flex-direction: column;
        text-align: center;
    }

    .slideshow {
        height: 700px;
    }

    .containerhightlight {
        display: block;
        text-align: center;
    }

    .texthighlight,
    .highlightbild {
        width: 90%;
        padding-left: 0;
        margin-top: 20px;
    }

    /* Anzeigeboxen Anpassungen */
    .anzeigebox {
        display: flex;
        flex-direction: column;
        /* Boxen untereinander */
        gap: 20px;
        /* Abstand zwischen den Boxen */
    }

    .boxen {
        flex: 1 1 100%;
        /* Boxen füllen die gesamte Breite */
        max-width: 100%;
    }



    .slideshow-text {
        padding: 15px;
        /* Weniger Innenabstand */
    }

    .containerhightlight {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Zentriert die Inhalte */
        gap: 20px;
        /* Abstand zwischen Text und Bild */
        width: 100%;
        /* Volle Breite */
    }

    .texthighlight {
        width: 90%;
        /* Begrenze die Breite */
        max-width: 600px;
        /* Optionale Begrenzung für große Bildschirme */
        padding-left: 0;
        /* Entferne linksseitiges Padding */
        text-align: center;
        /* Zentriere den Text */
        margin: 0 auto;
        /* Horizontale Zentrierung */
    }

    .highlightbild {
        width: 90%;
        /* Gleiche Breite wie der Text */
        max-width: 600px;
        /* Begrenzung der Breite */
        margin: 0 auto;
        /* Horizontale Zentrierung */
    }

    .containervorschlag {
        margin-top: -10px;
    }

}

@media (max-width: 480px) {
    html body {
        max-width: 480px;
        overflow-x: hidden;
    }

    .slideshow-text {
        display: block;
        flex-direction: column;
        text-align: center;
    }

    .slideshow {
        height: 700px;
    }

    .containerhightlight {
        display: block;
        text-align: center;
    }

    .texthighlight,
    .highlightbild {
        width: 90%;
        padding-left: 0;
        margin-top: 20px;
    }

    /* Anzeigeboxen Anpassungen */
    .anzeigebox {
        display: flex;
        flex-direction: column;
        /* Boxen untereinander */
        gap: 20px;
        /* Abstand zwischen den Boxen */
    }

    .boxen {
        flex: 1 1 100%;
        /* Boxen füllen die gesamte Breite */
        max-width: 100%;
    }



    .slideshow-text {
        padding: 15px;
        /* Weniger Innenabstand */
    }

    .containerhightlight {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Zentriert die Inhalte */
        gap: 20px;
        /* Abstand zwischen Text und Bild */
        width: 100%;
        /* Volle Breite */
    }

    .texthighlight {
        width: 90%;
        /* Begrenze die Breite */
        max-width: 600px;
        /* Optionale Begrenzung für große Bildschirme */
        padding-left: 0;
        /* Entferne linksseitiges Padding */
        text-align: center;
        /* Zentriere den Text */
        margin: 0 auto;
        /* Horizontale Zentrierung */
    }

    .highlightbild {
        width: 90%;
        /* Gleiche Breite wie der Text */
        max-width: 600px;
        /* Begrenzung der Breite */
        margin: 0 auto;
        /* Horizontale Zentrierung */
    }

    .containervorschlag {
        margin-top: -10px;
    }

}