@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@700&family=Roboto:wght@400;700&display=swap');

/* ==============================================
   Globale Stile
   ============================================== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #e8e4e0;
    overflow-x: hidden;
}

/* ==============================================
   Top-Bar fixieren
   ============================================== */
.container-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    padding: 0.5rem 1rem;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.container-topbar .mod-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.container-topbar .mod-menu .nav-item a {
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

.container-topbar .mod-menu .nav-item a:hover,
.container-topbar .mod-menu .nav-item.current a {
    background-color: #555;
    border-radius: 4px;
}

/* ==============================================
   Header / Banner (volle Breite)
   ============================================== */
header.header.container-header.full-width {
    position: relative;
    width: 100vw !important;
    max-width: 100vw !important;
    left: 50%;
    margin-left: -50vw;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 55px;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
}

/* Hintergrundbild */
header.header.container-header.full-width::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/images/banners/Banner2_FHD.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Brandname */
header.header.container-header.full-width .brand-name a {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

header.header.container-header.full-width .brand-tagline {
    display: none;
}

/* ==============================================
   Footer
   ============================================== */
footer.footer {
    background-color: #333333;
    color: #f1f1f1;
    padding: 2rem 1rem;
    margin-top: 2rem;
    text-align: center;
}

footer.footer a {
    color: #fff;
}

footer.footer a:hover {
    color: #ddd;
}

footer.footer .mod-title {
    color: #fff;
    font-family: 'Roboto Slab', serif;
    margin-bottom: 1rem;
}

/* ==============================================
   JoomShopping Produktattribute
   ============================================== */
.jshop_prod_attributes select.inputbox {
    width: 100%;
    max-width: 300px;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* ==============================================
   Mobile-Optimierungen
   ============================================== */
@media (max-width: 768px) {
    header.header.container-header.full-width {
        min-height: 300px;
        padding: 1rem;
    }

    header.header.container-header.full-width .brand-name a {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
        text-align: center;
        line-height: 1.2;
    }

    .container-topbar .mod-menu {
        flex-direction: column;
        gap: 0.25rem;
    }

    .container-topbar .mod-menu .nav-item a {
        font-size: 1rem;
        padding: 0.4rem 0.6rem;
    }
}
