body {
    margin: 0;
    font-family: "Lato", sans-serif;
    background: #F5F1E8;
    color: #1E2A38;
}

/* HEADER */
header {
    background: #1E2A38;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.4rem;
    font-weight: 700;
}

nav a {
    color: #C9A86A;
    margin-left: 15px;
    text-decoration: none;
    font-weight: 700;
}

nav a:hover {
    color: white;
}

/* BUTTONS */
.btn {
    background: #C9A86A;
    color: #1E2A38;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px;
    display: inline-block;
    font-weight: 700;
}

.btn:hover {
    background: #E5C98A;
}

.btn-light {
    background: white;
    color: #1E2A38;
}

.btn-light:hover {
    background: #C9A86A;
    color: #1E2A38;
}

.btn-google {
    background: #C9A86A;
    color: #1E2A38;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
}

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

/* HERO SLIDER */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: #1E2A38;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slider-text {
    position: absolute;
    z-index: 10;
}

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

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

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

.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;
}

/* Fade Animation */
.fade {
    animation-name: fadeEffect;
    animation-duration: 1.5s;
}

@keyframes fadeEffect {
    from { opacity: 0.3; }
    to { opacity: 1; }
}

/* KATEGORIEN */
.kategorien {
    display: flex;
    justify-content: space-around;
    padding: 40px 0;
}

.kachel {
    background: white;
    padding: 40px;
    width: 25%;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-top: 5px solid #C9A86A;
}

.kachel a {
    text-decoration: none;
    color: #1E2A38;
    font-size: 1.2rem;
    font-weight: 700;
}

.kachel:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

/* GOOGLE REVIEWS */
.google-box {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-top: 5px solid #C9A86A;
}

.google-box h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.google-reviews {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.g-review {
    background: #F5F1E8;
    padding: 20px;
    width: 280px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-top: 4px solid #C9A86A;
}

.g-stars {
    color: #C9A86A;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.g-text {
    font-style: italic;
    margin-bottom: 10px;
}

.g-author {
    font-weight: bold;
    color: #1E2A38;
}

/* ÜBER UNS */
.ueber-uns {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-top: 5px solid #C9A86A;
}

/* FOOTER */
footer {
    background: #1E2A38;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

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

    header {
        flex-direction: column;
        text-align: center;
    }

    nav a {
        display: inline-block;
        margin: 10px;
    }

    .hero-slider {
        height: 350px;
    }

    .slider-text h1 {
        font-size: 2rem;
    }

    .slider-text p {
        font-size: 1rem;
    }

    .kategorien {
        flex-direction: column;
        gap: 20px;
    }

    .kachel {
        width: 80%;
        margin: 0 auto;
    }
}
