/* Grundlegende Navigationsleiste */
.navbar {
    display: flex;
    position: sticky;
    justify-content: space-between;
    top: 0px;
    width: auto;
    align-items: center;
    background-color: rgb(255, 215, 0.8);
    padding: 25px 330px 25px 50px;
    z-index: 1000;
    border: 0px solid red;
}

/* Checkbox unsichtbar machen */
.menu-toggle {
    display: none;
}

/* Hamburger-Icon */
.hamburger-icon {
    display: none;
    /* Erst auf dem Handy sichtbar */
    cursor: pointer;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    height: 4px;
    width: 100%;
    background-color: rgb(0, 0, 0);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animation: Hamburger zu X */
.menu-toggle:checked+.hamburger-icon span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle:checked+.hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle:checked+.hamburger-icon span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Navigations-Links (Standard horizontal) */
.nav-links {
    display: flex;
    list-style: none;
    margin-left: 28%;
    gap: 10px;
    border: 0px solid red;
    font-size: clamp(0.9rem, 1vw, 1.1rem);
}

.nav-links a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 10px;
}

.nav-links a:hover {
    color: #aaa;
    transition: color 0.3s ease-in-out;
}

/* Dropdown-Menü */
.dropdown-menu {
    display: none;
    /* Ausgeblendet im Normalzustand */
    position: absolute;
    background-color: rgb(255, 215, 0, 0.8);
    list-style: none;
    border-radius: 8px;
    padding: 10px;
    margin-top: 5px;
    margin-left: -25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.dropdown:hover .dropdown-menu {
    display: block;
    /* Aufklappen bei Hover */
}

/* Responsive Anpassung für Handys */
@media (max-width: 1000px) {
    .hamburger-icon {
        display: flex;
        /* Icon auf Handy anzeigen */
    }

    .nav-links {
        display: none;
        font-size: 0.8rem;
        font-weight: bold;
        /* Links zunächst verstecken */
        flex-direction: column;
        width: 22%;
        position: absolute;
        top: 86px;
        left: 0;
        background-color: rgb(255, 215, 0, 0.8);
        text-align: left;
    }

    /* Menü einblenden, wenn Checkbox aktiv */
    .menu-toggle:checked~.nav-links {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
    }

    .navbar {
        width: auto;
    }
}

/*  Footer Navi  */

.footer-links {
    display: flex;
    list-style: none;
    color: black;
    text-align: center;
    font-size: 1.1rem;
    padding: 2px;
    border-bottom: 1px solid black;
    border-top: 0px solid black;
}

.footer-1 li {
    display: flex;
    list-style: none;
    color: black;
    text-align: center;
    font-size: 1.0rem;
    padding: 10px;
    border-bottom: 1px solid black;
    border-top: 1px solid black;
}

.footer li a:hover {
    color: #aaa;
    transition: color 0.3s ease-in-out;
}

.footer-links a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 10px;
}

.footer-links a:hover {
    color: #aaa;
    transition: color 0.3s ease-in-out;
}




a {
    text-decoration: none;
    background: none;
    color: inherit;
    border: none;
}

.shop {
    text-decoration: underline;
}