/* Allgemeine Stile */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #edf3ec;
    color: #233d2e;
    line-height: 1.5;
}

h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: #233d2e;
}

a:hover {
    color: #467a5a;
}

/* Header */
.main-header {
    background-color: #edf3ec;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #ccc;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.nav-left {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-left li {
    font-size: 1rem;
}

.menu-toggle {
    display: none; /* Standardmäßig versteckt */
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #233d2e;
}

.logo {
    font-size: 1.2rem;
    font-weight: bold;
}

.register {
    display: flex;
    align-items: center;
}

.btn-register {
    background-color: #233d2e;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-register:hover {
    background-color: #467a5a;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url("../img/aleksandar-kyng-dhkdfFxGHfU-unsplash.jpg") no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-primary {
    background-color: #233d2e;
    color: white;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #467a5a;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    font-weight: bold;
}

.btn-secondary:hover {
    background-color: white;
    color: #233d2e;
    transform: scale(1.05);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    text-align: center;
    color: white;
    animation: fadeIn 2s infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.scroll-arrow {
    width: 15px;
    height: 15px;
    border: 2px solid white;
    border-left: none;
    border-top: none;
    transform: rotate(45deg);
    margin: 0 auto;
    animation: bounce 1.5s infinite;
}

@keyframes fadeIn {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(45deg) translateY(10px);
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}


/* Über Uns Section */
.about-us {
    position: relative;
    padding: 60px 20px;
    background: white; /* Weißer Hintergrund für den unteren Teil */
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px; /* Höhe des oberen Farbhintergrunds */
    background: #edf3ec; /* Farbton passend zur Website */
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 70%); /* Übergang nach der Hälfte des Bildes */
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #233d2e;
    margin-bottom: 20px;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 80%; /* Breite des Bildes */
    max-width: 600px; /* Maximalbreite */
    margin: 20px auto; /* Zentriert */
    border-radius: 8px; /* Abgerundete Ecken */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sanfter Schatten */
}

.about-image {
    width: 100%;
    height: auto; /* Seitenverhältnis bleibt erhalten */
    display: block;
}

.about-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Service Section mit gewünschter Hintergrundfarbe */
.services {
    background-color: #36554A; /* Dunkles Grün */
    color: white; /* Weißer Text */
    padding: 60px 20px;
    text-align: center;
}

.services-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left; /* Text linksbündig für bessere Lesbarkeit */
}

.services h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
    text-align: center; /* Titel bleibt zentriert */
}

.services h3 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
    color: #edf3ec; /* Heller Text für Subheading */
}

.services p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: white;
}

.services ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.services li {
    font-size: 1rem;
    margin-bottom: 15px;
    color: white;
    position: relative;
    line-height: 1.6;
}
/* Preisliste */
.price-list {
    margin-top: 40px;
    background-color: #edf3ec; /* Heller Hintergrund für Kontrast */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sanfter Schatten */
}

.price-list h3 {
    font-size: 1.8rem;
    color: #233d2e;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse; /* Keine Lücken zwischen den Zellen */
}

.pricing-table thead th {
    background-color: #36554A;
    color: white;
    font-size: 1.2rem;
    padding: 10px;
    text-align: left;
}

.pricing-table tbody td {
    padding: 10px;
    font-size: 1rem;
    color: #233d2e;
    border-bottom: 1px solid #ddd;
}

.pricing-table tbody tr:hover {
    background-color: #f9f9f9; /* Hover-Effekt für bessere UX */
}

.pricing-table tbody tr:last-child td {
    border-bottom: none; /* Kein Border bei der letzten Zeile */
}

.pricing-table td:first-child {
    font-weight: bold;
}


/* Punkte vor jedem Listeneintrag */
.services li::before {
    content: "•"; /* Punkt vor jedem Listeneintrag */
    color: #edf3ec; /* Heller Punkt */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* FAQ Section */
.faq {
    background-color: #edf3ec; /* Heller Hintergrund, passend zum bestehenden Design */
    padding: 60px 20px;
    text-align: center;
}

.faq h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #233d2e;
    margin-bottom: 30px;
}

/* FAQ Section */
.faq {
    background-color: #edf3ec; /* Heller Hintergrund, passend zum bestehenden Design */
    padding: 60px 20px;
    text-align: center;
}

.faq h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #233d2e;
    margin-bottom: 30px;
}

/* FAQ-Items */
.faq-item {
    margin-bottom: 20px;
    text-align: left;
    max-width: 800px;
    margin: 20px auto;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #233d2e;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #467a5a; /* Grüner Farbton */
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 15px 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    display: none; /* Standardmäßig ausgeblendet */
    background-color: #f9f9f9;
}

.faq-item.open .faq-answer {
    display: block; /* Antwort einblenden */
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg); /* Symbol von "+" zu "x" ändern */
    color: #d9534f; /* Rot für geschlossenes Symbol */
}

/* Responsives Design */
@media (max-width: 768px) {
    /* Überschrift kleiner */
    .faq h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    /* Fragen und Antworten schmaler und kompakter */
    .faq-item {
        max-width: 100%;
        margin: 15px auto;
    }

    .faq-question {
        font-size: 0.95rem; /* Kleinere Schrift für Fragen */
        padding: 10px 15px;
    }

    .faq-answer {
        font-size: 0.85rem; /* Kleinere Schrift für Antworten */
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    /* Überschrift noch kompakter */
    .faq h2 {
        font-size: 1.6rem;
    }

    /* Fragen und Antworten gut lesbar auf schmalen Geräten */
    .faq-question {
        font-size: 0.9rem;
        padding: 10px;
    }

    .faq-answer {
        font-size: 0.8rem;
        padding: 10px;
    }

    .faq-toggle {
        font-size: 1.3rem; /* Kleinere Plus-/Minus-Icons */
    }
}

.reviews-section {
    background-color: white; /* Hintergrund der gesamten Sektion in Weiß */
    padding: 60px 20px;
    text-align: center;
}

.reviews-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #233d2e;
    margin-bottom: 40px;
    word-wrap: break-word; /* Sicherstellen, dass Wörter umgebrochen werden */
    text-align: center; /* Zentrierte Überschrift */
    max-width: 90%; /* Maximale Breite für kleinere Bildschirme */
    margin: 0 auto 40px; /* Zentrierung durch auto-Margin */
}

.reviews-slider {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.review {
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #233d2e;
    margin-bottom: 10px;
}

.review-detail {
    font-size: 1rem;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.review-name {
    font-size: 0.9rem;
    color: #467a5a;
    margin-bottom: 20px;
}

.review-stars {
    color: #ffc107; /* Goldene Sterne */
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.reviews-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.reviews-controls button {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #467a5a;
    transition: color 0.3s ease;
}

.reviews-controls button:hover {
    color: #233d2e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-section h2 {
        font-size: 2rem; /* Kleinere Schriftgröße für mittelgroße Bildschirme */
        max-width: 95%; /* Noch mehr Platz auf kleinen Bildschirmen */
    }

    .reviews-slider {
        max-width: 90%;
    }

    .review-text {
        font-size: 1.2rem;
    }

    .review-detail {
        font-size: 0.9rem;
    }

    .review-stars {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .reviews-section h2 {
        font-size: 1.8rem; /* Noch kleinere Schriftgröße für sehr kleine Bildschirme */
    }

    .review-text {
        font-size: 1rem;
    }

    .review-detail {
        font-size: 0.8rem;
    }

    .review-stars {
        font-size: 1rem;
    }

    .reviews-controls button {
        font-size: 1.5rem;
    }
}

/* Kontakt Section */
.contact {
    background-color: #edf3ec; /* Gleicher Farbton wie vorher verwendet */
    padding: 60px 20px;
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #233d2e; /* Dunkler Farbton für den Titel */
}

.contact p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555; /* Dezenter Farbton für den Text */
}

.contact-icons {
    display: flex;
    justify-content: center; /* Zentriert Icons */
    gap: 20px; /* Abstand zwischen den Icons */
    flex-wrap: wrap; /* Sicherstellen, dass Icons umbrechen können */
}

.contact-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
}

.contact-icon img {
    width: 100%;
    height: auto;
    transition: transform 0.3s, opacity 0.3s;
}

.contact-icon:hover img {
    transform: scale(1.1); /* Vergrößerung bei Hover */
    opacity: 0.8; /* Leichte Transparenz bei Hover */
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    /* Navbar */
    .menu-toggle {
        display: block; /* Zeige Hamburger-Menü */
    }

    .nav-left {
        display: none; /* Standardmäßig versteckt */
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: #edf3ec;
        width: 200px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 10px;
    }

    .nav-left.show {
        display: flex; /* Zeige Menü bei Aktivierung */
    }

    .nav-left li {
        text-align: center;
        margin: 10px 0;
    }

    /* Kontaktbereich */
    .contact-icons {
        flex-direction: row; /* Icons bleiben nebeneinander */
        justify-content: center; /* Zentriert Icons */
        gap: 15px;
    }

    .contact-icon {
        width: 40px; /* Kleinere Icons */
    }
}

@media (max-width: 480px) {
    .contact-icons {
        flex-direction: row; /* Icons bleiben nebeneinander */
        justify-content: center;
    }

    .contact-icon {
        width: 30px; /* Noch kleinere Icons */
    }
}
@media (max-width: 768px) {
    .slogan {
        font-size: calc(7vw + 1rem); /* Größere Schrift für kleine Bildschirme */
        line-height: 1.1; /* Reduzierter Zeilenabstand */
    }

    .slogan-wrapper {
        max-width: 100%; /* Füllt den Bildschirm aus */
    }
}

@media (max-width: 480px) {
    .slogan {
        font-size: calc(8vw + 1rem); /* Noch größere Schriftgröße */
        line-height: 1.1;
    }
}
@media (max-width: 768px) {
    .pricing-table thead {
        display: none; /* Kopfzeile ausblenden */
    }

    .pricing-table tr {
        display: block;
        margin-bottom: 20px;
    }

    .pricing-table td {
        display: flex;
        justify-content: space-between;
        padding: 10px 5px;
        font-size: 0.9rem;
        border: none; /* Kein Rahmen zwischen Zellen */
        background: #edf3ec;
        border-bottom: 1px solid #ccc;
    }

    .pricing-table td:first-child {
        font-weight: bold;
    }

    .pricing-table tr:last-child td {
        border-bottom: none;
    }
}
/* Footer Styling */
/* Footer Bottom */
.footer-bottom {
    background-color: #edf3ec; /* Weißer Hintergrund */
    color: #233d2e; /* Dunkler Text */
    padding: 20px;
    text-align: center;
    border-top: 1px solid #ccc; /* Dezenter grauer Rand oben */
}

.footer-bottom-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #233d2e; /* Dunkler Text */
}

.footer-bottom ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-bottom a {
    text-decoration: none;
    color: #233d2e;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #467a5a; /* Hellerer Grünton bei Hover */
}

/* Responsiveness */
@media (max-width: 768px) {
    .footer-bottom ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* Hinweis-Text für MLStringService Sticker */
.info-text {
    display: none;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #233d2e;
    background-color: #f4f4f4;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.toggle-info {
    background: none;
    border: none;
    color: #36554A;
    cursor: pointer;
    font-size: 1rem;
    margin-left: 5px;
}

.toggle-info:hover {
    text-decoration: underline;
}


