body, html {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #fff;
    margin: 0;
}

/* Farbgestaltung */
.orange-bg {
    background-color: #FFA500; /* Orange */
    color: #fff;
    padding: 20px;
}

.orange-text {
    color: #FFA500;
}

/* Container für Inhalte */
.container {
    margin: 20px;
    padding: 0px;
}

.container h1 {
    font-size: 2em;
}

.container p {
    text-align: justify;
    font-weight: normal;
    font-size: 1.2em;
}

/* Header und Navigation */
header {
    text-align: center;
    padding: 20px;
    position: relative;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #FFA500;
}

nav a {
    text-decoration: none;
    color: #FFA500;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Layout für das Angebot */
.services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service {
    flex: 1 1 45%;
    padding: 20px;
    border: 1px solid #FFA500;
    border-radius: 8px;
    margin: 20px;
    text-align: center;
}

.service img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Kontaktbereich */
.contact {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #FFA500;
    border-radius: 8px;
    text-align: center;
}

/* Anfragenformular */
.form-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.form-container input, .form-container textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
}

.form-container textarea {
    resize: vertical;
}

.form-container button {
    padding: 15px;
    background-color: #FFA500;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.2em;
}

.form-container button:hover {
    background-color: #e69500;
}

/* Karte */
.map-container iframe {
    width: 100%;
    height: 350px;
    max-width: 600px;
    border: 1px solid #FFA500;
}

/* Footer */
footer {
    background-color: #303030;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: auto;
    width: 100%;
}

footer p {
    margin: 5px 0;
}

/* FAQ-Bereich */
.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    background-color: #FFA500;
    color: #fff;
    padding: 15px;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1em;
    cursor: pointer;
    outline: none;
    border-radius: 5px;
}

.faq-question:hover {
    background-color: #e69500;
}

.faq-answer {
    display: none;
    padding: 10px 15px;
    background-color: #f9f9f9;
    border-left: 4px solid #FFA500;
    border-radius: 0 0 5px 5px;
}

.faq-answer.active {
    display: block;
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .services {
        flex-direction: column;
    }
}

/* Button in der rechten unteren Ecke */
#contact-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #FFA500;
    color: #000;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0px 15px rgb(0, 0, 0);
    transition: transform 0.2s;
    animation: bounce 2s infinite;
}

#contact-button:hover {
    background-color: #e69500;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}




.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-text {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    font-size: 1.5em;
    max-width: 85%;
    padding: -0px 20px;
    background: rgb(0, 0, 0);
    border-radius: 4px;
}

/* Nur die aktive Slide anzeigen */




.slideshow-container {
    position: relative;
    width: 100%;
    height: 400px; /* Höhe der Slideshow */
    overflow: hidden;
    border-radius: 5px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* Unsichtbar zu Beginn */
    pointer-events: none; /* Deaktiviert Mausaktionen */
    transition: opacity 1s ease-in-out; /* Fade-Effekt */
}

.slide.show {
    opacity: 1; /* Sichtbar, wenn aktiv */
    pointer-events: auto; /* Aktiviert Mausaktionen */
}