/* header.css */
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1090;
  padding: 2rem 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto; /* falls Inhalt lang wird */
  margin-top: 55px; 
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #111;
  border-bottom: 1px solid #333;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box;
}
.menu-label {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  margin-left: 0.4rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  user-select: none;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hamburger {
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.header-logo {
  height: 36px;
}

.header-brand {
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  margin-left: 0.2rem;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-call,
.header-mail {
  display: flex;
  align-items: center;
}

.instagram-icon,
.facebook-icon,
.whatsapp-icon {
  filter: none;
  width: 35px;
  height: 35px;
}
.phone-icon,
.mail-icon {
  width: 28px;
  height: 28px;
  filter: invert(1);
}

.clickable-logo {
  cursor: pointer;
}

@media (max-width: 480px) {
  .site-header {
    padding: 0.7rem 1rem;
  }
  .header-logo {
    height: 44px;
  }
  .instagram-icon,
  .facebook-icon,
  .whatsapp-icon,
  .phone-icon,
  .mail-icon {
    width: 32px;
    height: 32px;
  }
  .menu-label {
    font-size: 12.1rem;
  }  
  .header-brand {
    font-size: 2rem;
  }
}
