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

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

/* ============================================
   TOP NAVIGATION (Gold + Bagpoint)
============================================ */

.top-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #222;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
}

.top-nav .logo {
    font-size: 1.4rem;
    font-weight: bold;
}

.hamburger {
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
}

#nav-menu {
    display: flex;
    gap: 25px;
}

#nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

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

/* ============================================
   HERO SLIDER (Startseite + Bagpoint)
============================================ */

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

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 1.6rem;
    text-shadow: 0 0 20px rgba(0,0,0,0.7);
    z-index: 10;
}

/* ============================================
   GOLD & BAGPOINT – CONTAINER
============================================ */

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

.container h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: #333;
}

/* ============================================
   GOLD – AUSWAHL BOXEN
============================================ */

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

.box {
    display: block;
    width: 260px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    font-size: 1.2rem;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ============================================
   BAGPOINT – KATEGORIE BOXEN
============================================ */

.bagpoint-categories {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    flex-wrap: wrap;
}

.bagpoint-box {
    display: block;
    width: 260px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bagpoint-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.bp-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.bp-sub {
    font-size: 1rem;
    color: #666;
}

/* ============================================
   BAGPOINT – GALERIE
============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    padding: 30px;
}

.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    display: block;
}

.gallery-title {
    padding: 12px;
    font-size: 1rem;
    text-align: center;
    color: #333;
}

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

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background: #222;
    color: white;
    font-size: 0.9rem;
}
