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

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #111;
    line-height: 1.6;
}

a {
    color: #b8860b;
    text-decoration: none;
}

.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 15px;
}


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

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    color: #d4af37;
    padding: 12px 15px;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

.hamburger {
    font-size: 28px;
    cursor: pointer;
    display: block;
    color: #d4af37;
}

#nav-menu {
    display: none;
    background: #222;
}

#nav-menu.open {
    display: block;
}

#nav-menu a {
    display: block;
    padding: 12px 15px;
    color: #d4af37;
    border-bottom: 1px solid #333;
}

#nav-menu a:hover,
#nav-menu a.active {
    background: #333;
}


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

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    #nav-menu {
        display: flex !important;
        background: none;
    }

    #nav-menu a {
        border: none;
        padding: 0 15px;
    }

    #nav-menu a:hover,
    #nav-menu a.active {
        background: none;
        color: #fff;
    }
}


/* =========================================================
   HERO SLIDER – FUNKTIONIERENDER FADESLIDER
   ========================================================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.6);
    color: #d4af37;
    padding: 12px 18px;
    font-size: 22px;
    border-radius: 6px;
    z-index: 10;
}


/* =========================================================
   AUSWAHL-BOXEN
   ========================================================= */

.auswahl {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.box {
    background: #fff;
    border: 2px solid #d4af37;
    padding: 20px;
    width: 260px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
    color: #111;
}

.box:hover {
    background: #d4af37;
    color: #111;
    transform: translateY(-4px);
}


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

.footer {
    background: #111;
    color: #d4af37;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
