/* ===========================
   GLOBAL
=========================== */

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background: #fff;
}

h1, h2, h3 {
    font-weight: 700;
    letter-spacing: 1px;
}

.section {
    padding: 80px 10%;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: gold;
    color: black;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #e0b200;
}

/* ===========================
   NAVIGATION
=========================== */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
}

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

nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.burger {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    color: white;
}

/* ===========================
   HERO
=========================== */

.hero {
    height: 100vh;
    background: center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.hero-text {
    text-align: center;
    color: white;
    margin-bottom: 80px;
}

.hero-text h1 {
    font-size: 3.5rem;
    letter-spacing: 2px;
}

/* ===========================
   LEISTUNGEN
=========================== */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    padding: 30px;
    background: #f5f5f5;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===========================
   GALERIE (Vorher/Nachher)
=========================== */

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

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

.before-after img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid gold;
}

/* ===========================
   GOOGLE REVIEWS
=========================== */

#google-reviews {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.review {
    background: #f5f5f5;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 5px solid gold;
}

/* ===========================
   BUCHUNGSFORMULAR
=========================== */

.booking-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-form input,
.booking-form select {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

/* ===========================
   FOOTER
=========================== */

footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: white;
}

/* ===========================
   MOBILE VERSION
=========================== */

@media (max-width: 768px) {

    nav ul {
        display: none;
        flex-direction: column;
        background: rgba(0,0,0,0.9);
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 20px;
        border-radius: 8px;
        width: 200px;
    }

    nav ul.show {
        display: flex;
    }

    .burger {
        display: block;
    }

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

    .grid {
        grid-template-columns: 1fr;
    }

    .gallery {
        flex-direction: column;
        align-items: center;
    }

    .before-after img {
        width: 90%;
        height: 220px;
    }
}
