#burger-icon {
    cursor: pointer;
    color: #ffffff;
    transition: color 0.3s ease; /* Weiche Übergangsanimation */
    font-size: 20px;
}

/* Highlighting beim Überfahren mit der Maus (Hover) */
#burger-icon:hover {
    color: #A8181A;
}

#burger-menu {
    position: fixed;
    top: 0;
    right: calc(-100% - 16px);
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    color: rgba(255, 255, 255, 1);
    z-index: 1000;
    transition: right 0.3s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

#burger-menu.open {
    right: 0;
}

#burger-menu div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 32px 11px 52px;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    z-index: 100;
}

#burger-menu #burger-menu-close span {
    font-size: 20px;
    color: #ffffff;
    transition: color 0.3s ease;
}

#burger-menu #burger-menu-close:hover span {
    color: #A8181A;
}

#burger-menu ul {
    list-style-type: none;
    padding: 96px 32px 32px 52px;
}

#burger-menu li:not(:last-of-type) {
    margin-bottom: 32px;
}

#burger-menu ul li a,
#burger-menu ul li a:active {
    font-size: 18px;
    font-family: 'Adobe Garamond Pro Regular', sans-serif;
    color: #ffffff;
    text-decoration: none; /* Entfernt den Unterstrich */
    transition: color 0.3s ease; /* Weiche Übergangsanimation */
}

/* Highlighting beim Überfahren mit der Maus (Hover) */
#burger-menu ul li a:hover {
    color: #A8181A;
}