html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Poppins", sans-serif;
    color: #fff;
    display: block;

}

content {
    position: relative;
    color: white;
    text-align: center;
    padding: 20px;
}

main {
    background: #111;
    min-height: 100vh;
}

h1,
h2,
h3 {
    color: #e60000;
    margin-bottom: 10px;
}

.navbar {
    background: #000000;
    display: flex;
    align-items: center;
    padding: 12px 25px;
    border-bottom: 1px solid #7b0909;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo img {
    z-index: 1001;
    width: 100px
}

navbar .logo a {
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #e60000;
    font-weight: 600;
    display: block;
}

.nav-links a:hover {
    color: #c08b8b;
}

.navbar .search-bar {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.navbar input {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    outline: none;
    width: 200px;
    transition: 0.2s;
}

.navbar input:focus {
    border-color: #c40000;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    font-size: 26px;
    cursor: pointer;
}



@media (max-width: 768px) {
    .nav-links {
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        background: #000;
        width: 100%;
        padding: 0;
        text-align: center;
        border-bottom: 1px solid #7b0909;
        transition: max-height 0.5s ease, padding 0.5s ease;
    }

    .nav-links.open {
        max-height: 500px;
        padding: 20px 0;
    }

    .nav-links a {
        margin: 15px 0;
        display: block;
        color: #e60000;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s;
    }

    .nav-links a:hover {
        color: #c08b8b;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 26px;
        transition: transform 0.3s;
    }

    .menu-toggle:hover {
        transform: rotate(90deg);
    }

    .card {
        width: absolute;
    }
}

.hero {
    text-align: center;
    color: #fff;
    padding-top: 50px;
}

.hero h1 {
    padding-bottom: 50px;
    font-size: 50px;
}

.hero button {
    margin-top: 20px;
    padding: 12px 25px;
    background: #e60000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.hero button:hover {
    background: #a00000;
}


.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 260px));
    justify-content: center;
    gap: 25px;
    padding: 25px;
}

.cards .card {
    background: white;
}

.card {
    padding: 15px;
    border-radius: 0px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.25s ease;
}

.card:hover {
    transform: scale(1.03);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.price {
    color: #e60000;
    font-weight: 600;
    margin-top: 10px;
}

#fullCatalog {
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
}

.all-products-title {
    text-align: center;
    color: #e60000;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.6rem;
}


.product-page {
    text-align: center;
    padding: 40px 20px;
}

.product-img {
    max-width: 300px;
    border-radius: 12px;
}

.product-details {
    margin-top: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.product-details p {
    margin: 8px 0;
    color: #000;
}

.product-details hr {
    border: none;
    height: 1px;
    background: #e60000;
    margin: 10px 0;
    opacity: 0.5;
}

footer {
    text-align: center;
    padding: 5px;
    background: #000000;
    border-top: 1px solid #7b0909;
    position: relative;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #c40000;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #c08b8b;
}


.katalog-button {
    display: block;
    margin: 20px auto 0;
    padding: 14px 32px;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(90deg, #b30000, #ff1a1a);
    color: white;
    text-decoration: none;
    border-radius: 40px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    transition: 0.25s ease;
    letter-spacing: 1px;
    width: fit-content;
    margin-top: 40px;
}

.katalog-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.6);
}



@media (max-width: 600px) {
    .katalog-button {
        font-size: 1rem;
        padding: 12px 26px;
    }
}

.info {
    text-align: center;
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
}

.info h2 {
    color: #e60000;
    font-size: 2rem;
    margin-bottom: 10px;
}

.info p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}


.language-dropdown {
    position: relative;
    display: inline-block;
    margin-left: auto;
}

.dropbtn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropbtn img {
    vertical-align: middle;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 120px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 4px;
    overflow: hidden;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    color: black;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #e60000;
    color: white;
}

.language-dropdown:hover .dropdown-content {
    display: block;
}

.search-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.search-container input {
    width: 90%;
    max-width: 500px;
    padding: 12px 15px;
    border: 2px solid #e60000;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.search-container input:focus {
    border-color: #ff1a1a;
    box-shadow: 0 0 8px rgba(230, 0, 0, 0.6);
}

.instagram-btn {
    position: fixed;
    right: 25px;
    bottom: 120px;
    width: auto;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s ease;
    z-index: 2000;
}

.instagram-btn img {
    width: 80px;
    height: 80px;
}

.insta-text {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.instagram-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .instagram-btn {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 200px auto;
        display: flex;
    }

    .insta-text {
        font-size: 0.9rem;
        text-align: center;
    }
}

.main-with-video {
    position: relative;
    overflow: hidden;
    background: transparent;
    padding-bottom: 120px;
}

.video-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: blur(14px) brightness(0.6);
    pointer-events: none;
}


.main-with-video::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

.agb-info {
    margin-right: 650px;
}

@media (max-width: 768px) {

    .info {
        text-align: left;
        margin: 20px auto;
        padding: 16px;
        max-width: 100%;
    }

    .info h1,
    .info h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        text-align: center;
    }

    .info h3 {
        font-size: 1.2rem;
        margin-top: 25px;
    }

    .info p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 14px;
        opacity: 0.95;
    }


    .agb-info {
        margin-right: 0 !important;
        font-size: 0.9rem;
    }
}

.rest1 {
    text-align: center;
    background: transparent;
    padding: 0;
    margin: 0;
}

.rest2 {
    text-align: center;
    margin-top: 25px;
}

.rest3 {
    max-width: 250px;
}

.kategorien-main {
    padding-top: 40px;
    margin: 0;
}