/* ===========================
   GLOBAL
=========================== */
body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    background: #111;
    color: #fff;
}

.section {
    padding: 60px 20px;
    text-align: center;
}

h2 {
    font-size: 32px;
    color: gold;
    margin-bottom: 30px;
    font-family: "Playfair Display", serif;
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    background: gold;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #e0b200;
}

/* ===========================
   NAVIGATION
=========================== */
nav {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

nav .logo {
    font-size: 28px;
    font-family: "Playfair Display", serif;
    color: gold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

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

.burger {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* ===========================
   HERO SLIDER
=========================== */
.hero-slider {
    position: relative;
    height: 60vh;
    overflow: hidden;
    background: #000;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: gold;
    border: none;
    font-size: 40px;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(0,0,0,0.7);
}

.hero-prev { left: 20px; }
.hero-next { right: 20px; }

.hero-dots {
    position: absolute;
    bottom: 25px;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.hero-dot.active {
    background: gold;
    transform: scale(1.2);
}

/* ===========================
   LEISTUNGEN
=========================== */
.grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #1b1b1b;
    padding: 20px;
    border-radius: 10px;
    width: 220px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

/* ===========================
   GALERIE
=========================== */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.before-after {
    display: flex;
    gap: 10px;
}

.before-after img {
    width: 250px;
    border-radius: 10px;
}

/* ===========================
   BEWERTUNGEN – SLIDER
=========================== */
.bewertungen-section {
    text-align: center;
    margin-top: 60px;
}

.bewertungen-headline {
    font-size: 32px;
    color: gold;
    margin-bottom: 40px;
    font-family: "Playfair Display", serif;
}

.review-slider {
    display: flex;
    gap: 30px;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.review-card {
    min-width: 300px;
    background: #1b1b1b;
    color: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    text-align: center;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-logo {
    height: 40px;
    margin-bottom: 15px;
}

.review-stars {
    font-size: 24px;
    color: gold;
    margin-bottom: 10px;
}

.review-text {
    font-size: 15px;
    color: #ddd;
    margin-bottom: 15px;
}

.review-author {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
}

.review-btn {
    display: inline-block;
    padding: 10px 18px;
    background: gold;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}

.review-btn:hover {
    background: #e0b200;
}

.review-dots {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.review-dot {
    width: 12px;
    height: 12px;
    background: #555;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.review-dot.active {
    background: gold;
    transform: scale(1.2);
}

/* ===========================
   FOOTER
=========================== */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {

    nav ul {
        display: none;
        flex-direction: column;
        background: #000;
        padding: 20px;
        position: absolute;
        right: 20px;
        top: 60px;
        border-radius: 10px;
    }

    nav ul.show {
        display: flex;
    }

    .burger {
        display: block;
        color: gold;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .before-after img {
        width: 160px;
    }

    .review-card {
        min-width: 260px;
    }
}
