/* Allgemeine Einstellungen */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none; /* Entfernt die Unterstreichung */
    color: inherit; /* Stellt sicher, dass die Farbe des Textes ererbt wird */
}

/* Container für zentrierten Inhalt */
.container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

/* Header und Navigation */
header {
    background-color: #252525;
    color: white;
    padding: 20px 0;
}

header img {
    max-width: 450px;
    height: auto;
    transform: rotate(0deg); /* Dreht das Logo um 90 Grad */
}

/* Zurück zur Hauptseite Button */
header .btn {
    background: linear-gradient(135deg, #ffffff, #6a6a6a); /* Sanfter Verlauf */
    color: rgb(0, 0, 0);
    padding: 15px 30px;
    border-radius: 50px; /* Abgerundete Ecken */
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

header .btn:hover {
    background: linear-gradient(135deg, #ff3b3f, #b11226); /* Umgekehrter Verlauf bei Hover */
    transform: scale(1.1); /* Button vergrößern */
    box-shadow: 0px 4px 15px rgba(255, 50, 50, 0.6); /* Schatten-Effekt */
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: right;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #b11226;
    text-decoration: underline; /* Unterstreicht den Text bei Hover */
    text-decoration-color: #b11226; /* Gibt der Unterstreichung die Akzentfarbe */
}

/* Hero Section */
.hero {
    background-color: #1e1e1e;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

.hero .btn {
    background: #b11226;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.hero .btn:hover {
    background: #ff3b3f;
}

/* Dienstleistungsbereich */
.services {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.service-list {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.service-item {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.service-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 16px;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: #333; /* Hintergrundfarbe wird schwarz bei Hover */
    color: white; /* Textfarbe auf weiß ändern */
}



/* Footer */
footer {
    background-color: #252525;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 16px;
}

footer a {
    color: #56b2f3;
    text-decoration: none;
    border-bottom: 1px solid #56b2f3; /* Dünnere Linie */
    transition: border-color 0.3s ease;
}

footer a:hover {
    color: #56b2f3;
    border-color: transparent; /* Keine sichtbare Linie bei Hover */
}

/* Responsives Design */
@media (max-width: 768px) {
    .service-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .team-member {
        width: 45%;
        margin-bottom: 20px;
    }

}

/* Gutachten Seite */
.gutachten {
    background-color: #ffffff; /* Weißer Hintergrund */
    padding: 60px 20px;
    text-align: center;
    color: #333; /* Dunkle Schriftfarbe */
    border: 2px solid #333; /* Dunkle Umrandung für die gesamte Sektion */
    border-radius: 10px; /* Abgerundete Ecken */
}

.gutachten h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.gutachten p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.gutachten-details {
    background-color: #f4f4f4; /* Heller Hintergrund für die Details */
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    border: 2px solid #333; /* Dunkle Umrandung für die Details */
}

.gutachten-details h3 {
    font-size: 30px;
    color: #56b2f3;
    font-weight: bold;
    margin-bottom: 25px;
    position: relative;
}

.gutachten-details h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #56b2f3;
}

.gutachten-details ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-left: 20px;
}

.gutachten-details li {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.gutachten-details li::before {
    content: "✓";
    color: #56b2f3;
    position: absolute;
    left: 0;
    font-size: 18px;
    top: 0;
}

.contact-info {
    padding: 20px;
    background-color: #252525;
    color: white;
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: 40px;
    border: 25px solid #252525; /* Dunkle Umrandung für den Kontaktbereich */
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 20px;
}

.contact-info .btn {
    background: #56b2f3;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

.contact-info .btn:hover {
    background: #56b2f3;
}

/* Prozess Sektion */
.prozess {
    background-color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

.prozess h3 {
    font-size: 28px; /* Kleinere Schriftgröße */
    color: #333;
    margin-bottom: 20px;
}

.prozess p {
    font-size: 18px;
    color: #333; /* Textfarbe auf Dunkelgrau ändern für bessere Lesbarkeit */
    margin-bottom: 40px;
    line-height: 1.6;
}

.prozess-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
}

/* Prozess-Schritt-Karten */
.prozess-step {
    background-color: #ffffff; /* Weißer Hintergrund für die Prozesskarten */
    padding: 20px;
    width: 22%; /* Kleinere Breite für die Karten */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
    color: #333; /* Dunkle Textfarbe für bessere Lesbarkeit */
}

.prozess-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: #56b2f3; /* Dunklerer Hintergrund bei Hover */
    color: white; /* Weißer Text bei Hover */
}

.step-number {
    background-color: #56b2f3; /* Rote Hintergrundfarbe für die Schritt-Nummer */
    color: white;
    border-radius: 50%;
    width: 40px; /* Kleinere Nummern */
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-size: 20px;
}

.step-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Anpassungen für mobile Geräte */
/* Anpassungen für mobile Geräte */
@media (max-width: 800px) {
    .prozess-steps {
        display: flex;
        flex-direction: column; /* Karten untereinander anzeigen */
        align-items: center; /* Zentrierte Karten */
        justify-content: center; /* Karten horizontal zentrieren */
        text-align: center; /* Text innerhalb der Karten zentrieren */
        width: 100%; /* Sicherstellen, dass der Container die volle Breite einnimmt */
    }

    .team-member {
        width: 45%;
        margin-bottom: 20px;
    }

    .prozess-step {
        width: 100%; /* Die Karten nehmen die volle Breite */
        margin-bottom: 30px;
        text-align: center; /* Text innerhalb der Karten zentrieren */
        margin-left: -20px; /* Schiebt die Karten nach links */

    }

    .prozess-steps {
        flex-direction: column; /* Karten untereinander anzeigen */
        align-items: center; /* Zentrierte Karten */
        justify-content: center; /* Karten horizontal zentrieren */
        text-align: center; /* Text innerhalb der Karten zentrieren */
    }

    .prozess-step .step-number {
        width: 50px; /* Größere Schritt-Nummern auf mobilen Geräten */
        height: 50px;
        font-size: 24px;
    }
}

/* Responsives Design */
@media (max-width: 768px) {
    .bewertung-abschnitt {
        width: 100%; /* Die Abschnitte nehmen die volle Breite */
        margin-bottom: 20px;
    }

    .bewertung-item {
        width: 100%; /* Die Bewertungen nehmen die volle Breite */
        margin-bottom: 20px;
    }

    .bewertung-anfrage {
        padding: 20px;
    }
}
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

/* Galerie Slider */
.galerie {
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

.galerie h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.galerie-slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slides-wrapper {
    display: flex;
    transition: transform 0.6s ease; /* Slide-Effekt */
}

.galerie-slider .slide {
    min-width: 100%;
    flex-shrink: 0;
}

.galerie-slider .slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .galerie-slider {
        max-width: 90%;
    }
    .galerie h3 {
        font-size: 22px;
    }
}

/* ===== Team Bereich ===== */
.team {
    background: #fff;
    padding: 60px 20px;
}

.team h3 {
    text-align: center;
    font-size: 32px;
    margin: 0 0 30px;
    color: #111;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    justify-items: center;
    align-items: center;
    justify-content: center;
}

.team-member {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 14px;
    padding: 22px 18px 24px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    border-color: #dcdcdc;
}

.team-member img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 6px auto 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 4px solid #fff;
}

.team-member h4 {
    font-size: 20px;
    margin: 6px 0 4px;
    color: #111;
    letter-spacing: 0.2px;
}

.team-member p {
    margin: 0;
    font-size: 15px;
    color: #555;
}

/* Akzentlinie unter der Überschrift */
.team h3::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    background: #56b2f3; /* Firmenblau */
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Responsive Anpassungen */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}
@media (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-member {
        padding: 18px 16px 20px;
    }
}

/* ===== Zusätzliche Smartphone-Optimierung ===== */
@media (max-width: 480px) {
    header {
        padding: 12px 0;
        text-align: center;
    }
    header img {
        max-width: 250px;
    }
    nav ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    nav ul li {
        display: block;
        margin: 0;
    }
    .hero h2 {
        font-size: 26px;
    }
    .hero p {
        font-size: 16px;
    }
    .services h2,
    .gutachten h2,
    .team h3 {
        font-size: 26px;
    }
    .service-item {
        width: 100%;
    }
    .prozess-step {
        width: 100%;
    }
    .team-member {
        width: 100%;
        max-width: 320px;
    }
    .contact-info {
        font-size: 16px;
        padding: 16px;
    }
}

/* ===== Vorher/Nachher Vergleich ===== */
.vorher-nachher {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
}
.vorher-nachher h3 {
    font-size: 32px;
    margin: 0 0 12px;
    color: #111;
}
.vorher-nachher p { 
    margin: 0 0 16px; 
    color: #555; 
    font-size: 16px; 
}
.vorher-nachher .ba-wrap {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.vorher-nachher .ba-wrap > img,
.vorher-nachher .ba-wrap .ba-after img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vorher-nachher .ba-after {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
    border-right: 2px solid #fff;
    box-shadow: 1px 0 0 rgba(0,0,0,0.2);
}
.vorher-nachher .ba-slider {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    width: min(92%, 520px);
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: rgba(255,255,255,0.6);
    border-radius: 999px;
    outline: none;
}
.vorher-nachher .ba-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #56b2f3;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.25);
    cursor: pointer;
}
.vorher-nachher .ba-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #56b2f3;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.25);
    cursor: pointer;
}

/* ===== Standort / Google Maps ===== */
.standort {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}
.standort h3 {
    font-size: 32px;
    margin: 0 0 12px;
    color: #111;
}
.standort p {
    margin: 0 0 16px;
    color: #555;
    font-size: 16px;
}
.map-embed {
    position: relative;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 12px;
    overflow: hidden;
    margin: 1rem 0 1.25rem;
    background: #e9eef3;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.standort .btn {
    display: inline-block;
    background: #56b2f3;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease;
}
.standort .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(86,178,243,0.35);
}

/* ===== Responsive Tweaks für kleine Screens ===== */
@media (max-width: 640px) {
    .vorher-nachher h3, .standort h3 { font-size: 26px; }
    .vorher-nachher p, .standort p { font-size: 15px; }
    .vorher-nachher .ba-slider { width: 92%; bottom: 10px; }
}