:root {
    --void-nav-height: 60px;
    --void-color-primary: #132531;
    --void-color-accent: #d32029;
    --void-color-light: #ffffff;
    --void-color-dark: #16222d;
    --void-color-darker: #0f171e;
    --void-transition: 0.3s ease;
}

/* ==========================================================================
   1. HEADER BEREICH (Logo + Quick Menü + Burger Icon)
   ========================================================================== */

.void-header-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--void-nav-height);
    width: 100%;
    box-sizing: border-box;
    background-color: var(--void-color-light);
}

.void-logo-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.void-logo-container img {
    height: var(--void-nav-height) !important; 
    max-height: var(--void-nav-height) !important;
    width: auto !important; 
    max-width: 100%;
    display: block;
	padding:5px;
}

.void-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
}

.void-quick-menu,
.void-quick-menu-list,
.void-quick-menu-list li {
    height: 100%;
    display: flex;
}

.void-quick-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.void-quick-menu-list li a {
    display: flex;
    align-items: center;
    padding: 0 20px;
    text-decoration: none;
    color: var(--void-color-primary);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 100%;
    box-sizing: border-box;
    transition: background-color var(--void-transition), color var(--void-transition);
}

.void-quick-menu-list li a:hover {
    background-color: var(--void-color-primary);
    color: var(--void-color-light);
}

.void-burger-icon {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    z-index: 99;
    transition: transform var(--void-transition);
}

.void-burger-icon:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   2. OFF-CANVAS MENÜ (Slide-In)
   ========================================================================== */

.void-offcanvas-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 99998;
}

.void-offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

.void-offcanvas-menu {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    max-width: 100%;
    height: 100dvh;
    background-color: var(--void-color-dark);
    z-index: 99999;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
}

.void-offcanvas-menu.active {
    right: 0;
}

.void-offcanvas-header {
    background-color: var(--void-color-light);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.void-close-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.void-close-text {
    color: var(--void-color-primary);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}

.void-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--void-transition);
}

.void-close-btn:hover {
    transform: rotate(90deg);
}

/* ==========================================================================
   3. BURGER MENÜ INHALT & LISTEN STYLING
   ========================================================================== */

.void-offcanvas-content {
    flex-grow: 1;
    overflow-y: auto;
}

.void-burger-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.void-burger-menu-list li {
    position: relative;
}

.void-burger-menu-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--void-color-light);
    text-decoration: none;
    padding: 15px 20px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color var(--void-transition);
}

.void-burger-menu-list li a:hover,
.void-burger-menu-list li.current-menu-item > a {
    background-color: var(--void-color-accent);
}

/* ==========================================================================
   4. SUBMENU & PFEILE (Dropdown Logik)
   ========================================================================== */

#void-offcanvas-menu .void-burger-menu-list .menu-item-has-children > a:after,
#void-offcanvas-menu .void-burger-menu-list .menu-item-has-children > a:before {
    display: none !important;
}

.void-submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 15px;
    font-size: 10px;
    transition: transform var(--void-transition);
    margin-right: -10px;
}

.void-burger-menu-list .menu-item-has-children.open > a .void-submenu-toggle {
    transform: rotate(180deg);
}

.void-burger-menu-list .sub-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: var(--void-color-darker);
}

.void-burger-menu-list .menu-item-has-children.open > .sub-menu {
    display: block;
}

.void-burger-menu-list .sub-menu li a {
    padding: 15px 30px 15px 45px;
    font-size: 13px;
    border-bottom: none;
}

/* ==========================================================================
   5. RESPONSIVE DESIGN (Mobile)
   ========================================================================== */

@media (max-width: 1024px) {
    .void-quick-menu {
        display: none;
    }
    
    .void-header-nav-container {
        padding: 0 20px;
    }
}