/* BRANDHUB MENÜ */
.header{
	display:none;
}

.side-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 220px;
      height: 100vh;
      background-color: #fff;
      transform: translateX(-190px); /* Nur 220px raus, 30px Handle bleibt sichtbar */
      transition: transform 0.3s ease;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      padding-left: 30px; /* Platz für Menüinhalt */
    }

    .side-menu.open {
      transform: translateX(0);
    }

    /* Das seitliche Handle */
    .menu-handle {
      position: absolute;
      top: 0;
      right: -30px; /* hängt am Rand des Menüs */
      width: 60px;
      height: 100%;
      background-color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 1001;
      box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
    }

    .menu-icon {
      width: 40px;
      height: 40px;
    }

    .menu-header {
      padding: 40px 20px 10px;
    }

    .menu-header img {
      max-width: 130px;
    display: block;
    }

    .menu-links {
      padding: 0 20px;
      margin-top: 50px;
    }

.menu-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #222;
  padding: 15px 0;
  font-weight: 400;
}

.menu-links a:hover {
  color: #298fc2 !important;
 font-weight: 600;

}

/* Icon-Span */
.menu-links .icon-lock {
  display: inline-block;
  width: 16px;
  height: 16px;
	margin-bottom:-2px;
  background-image: url('/wp-content/uploads/2025/07/lock-simple.svg');
  background-repeat: no-repeat;
  background-size: contain;
  transition: background-image 0.2s ease;
}

/* Hover-Wechsel */
.menu-links a.locked:hover .icon-lock {
  background-image: url('/wp-content/uploads/2025/07/lock-simple-fill.svg');
}


    .menu-footer {
      padding: 20px;
      margin-top: auto;
    }

    .menu-footer a {
      display: flex;
      align-items: center;
      color: #333;
      text-decoration: none;
      margin-bottom: 10px;
    }
      
    .menu-footer a:hover {
        color:#298fc2 !important;
        font-weight: 600;
    }      

    .menu-footer a::before {
      content: "";
      background-size: 16px 16px;
      background-repeat: no-repeat;
      background-position: center;
      margin-right: 10px;
      width: 20px;
      height: 20px;
    }

    .menu-footer a.home::before {
      background-image: url('/wp-content/uploads/2025/07/house-fill.svg');
    }

    .menu-footer a.hub::before {
      background-image: url('/wp-content/uploads/2025/07/fingerprint-fill.svg');
    }



@media only screen and (max-width:1000px) {
.header {
    border-bottom: 0px solid #eee !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
	display:block;
}
	.header-inner {
    padding: 25px 80px 13px 20px;
    max-width: 1000px;
    margin: 0 auto;
    display: flex  !important;
    justify-content: space-between;
    align-items: center;
}
	.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 30px;
}
/* Menü sichtbar */
.side-menu.open {
    transform: translateX(0);
}
	.menu-header{
		display:none;
	}
/* Icons */
.icon {
    width: 30px;
    height: 30px;
    display: none;
}
.icon-hamburger {
    display: block;
    position: fixed;
    right: 20px;
    top: 20px;
    cursor: pointer;
    z-index: 1100;
}

.logo img {
	height: 35px;
}
.logo {
	margin-bottom: -5px;
    margin-top: -5px;
}
	.menu-links a {
    font-size:1.0rem;
		font-weight:700;
    padding: 10px 0;
	}
	.menu-footer {
    margin-top: 2vh;
}
.menu-handle {
    position: absolute !important;
    top: 1rem !important;
    right: -98vw !important;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2000 !important;
    box-shadow: 0px 0 0px rgba(0, 0, 0, 0.1);
}
.side-menu.open	.menu-handle {
    right: 2vw !important;
	}
	#brandhub-main-content{
		padding-top:70px !important;
	}	
	
.menu-footer a {
    font-weight: 700;
}	
	
	
	
}   /*### MOBIL ENDE 1000 */


