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

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    color: #000;
}

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

/* =========================================
   TOP NAVIGATION + HAMBURGER
========================================= */

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.top-nav nav {
    display: flex;
    gap: 15px;
}

.top-nav nav a {
    font-size: 0.95rem;
}

.top-nav nav a:hover {
    text-decoration: underline;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .top-nav nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        padding: 10px 0;
        border-top: 1px solid #e0e0e0;
    }

    .top-nav nav.open {
        display: flex;
    }

    .top-nav nav a {
        padding: 10px 20px;
        font-size: 1.1rem;
    }
}

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

.hero-slider {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-text {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.slider-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.slider-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: gold;
    color: black;
    border-radius: 8px;
    margin: 5px;
    font-weight: bold;
}

.btn-light {
    background: white;
    color: black;
}

.btn:hover {
    background: #d4af37;
}

/* =========================================
   KATEGORIEN
========================================= */

.kategorien {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
}

.kachel {
    background: gold;
    padding: 30px 40px;
    border-radius: 10px;
    font-size: 1.4rem;
    text-align: center;
    transition: 0.3s;
}

.kachel:hover {
    background: #d4af37;
}

@media (max-width: 768px) {
    .kategorien {
        flex-direction: column;
    }

    .kachel {
        width: 100%;
    }
}

/* =========================================
   GOOGLE BEWERTUNGEN
========================================= */

.google-box {
    background: #fff;
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
}

.google-box h2 {
    text-align: center;
    margin-bottom: 20px;
}

.google-reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.g-review {
    background: #f2f2f2;
    padding: 20px;
    border-radius: 10px;
}

.g-stars {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 5px;
}

.btn-google {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 12px;
    background: gold;
    border-radius: 8px;
    font-weight: bold;
}

.btn-google:hover {
    background: #d4af37;
}

/* =========================================
   ÜBER UNS
========================================= */

.ueber-uns {
    text-align: center;
    padding: 40px 20px;
}

.ueber-uns h2 {
    margin-bottom: 10px;
}

.ueber-uns p {
    margin-bottom: 20px;
}

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

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}
