/* ===== HEADER ===== */
.wh-custom-header,
.wh-custom-header * {
  box-sizing: border-box;
}

.wh-custom-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #050505;
  font-family: 'Montserrat', sans-serif;
}

.wh-header-inner {
  width: 100%;
  height: 70px;
  padding: 0 46px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  background: #050505;
  border-bottom: 1px solid rgba(239, 43, 45, .38);
  box-shadow: 0 16px 45px rgba(0, 0, 0, .34);
  position: relative;
  overflow: visible;
}

/* Nav left */
.wh-header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.wh-header-nav a {
  position: relative;
  color: rgba(255, 255, 255, .86);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
  transition: .25s ease;
  white-space: nowrap;
}

.wh-header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 0;
  height: 2px;
  background: #ef2b2d;
  transition: .25s ease;
}

.wh-header-nav a:hover { color: #fff; }
.wh-header-nav a:hover::after,
.wh-header-nav a.active::after { width: 100%; }
.wh-header-nav a.active { color: #fff; }

/* Logo center */
.wh-header-logo {
  position: relative;
  z-index: 5;
  width: 210px;
  height: 112px;
  margin-bottom: -72px;
  transform: translateY(22px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wh-header-logo img {
  width: 205px;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 18px 30px rgba(0, 0, 0, .56))
    drop-shadow(0 5px 12px rgba(239, 43, 45, .12));
}

/* Right side */
.wh-header-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

/* Call button */
.wh-header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  background: #c0211f;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: .25s ease;
  white-space: nowrap;
}

.wh-header-call:hover { background: #a81b19; transform: translateY(-1px); }

.wh-header-call-icon {
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; line-height: 1;
}

.wh-header-call-number {
  font-size: 14px; line-height: 1;
  font-weight: 900; letter-spacing: .04em; color: #fff;
}

/* Opening hours */
.wh-header-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .95);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.wh-header-hours-icon {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(239, 43, 45, .5);
  display: flex; align-items: center; justify-content: center;
  color: #ef2b2d; font-size: 15px; flex-shrink: 0;
}

.wh-header-hours-text small {
  display: block;
  color: rgba(255, 255, 255, .55);
  font-size: 10px; line-height: 1;
  margin-bottom: 5px;
  text-transform: uppercase; letter-spacing: .12em;
}

.wh-header-hours-text strong {
  display: block;
  color: #fff; font-size: 14px; line-height: 1; font-weight: 800;
  letter-spacing: .02em;
}

/* ===== DROPDOWN ===== */
.wh-nav-dropdown {
  position: relative;
}

.wh-nav-dropdown-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, .86);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
  transition: color .25s ease;
  white-space: nowrap;
}

.wh-nav-dropdown-btn:hover,
.wh-nav-dropdown-btn[aria-expanded="true"],
.wh-nav-dropdown-btn.active { color: #fff; }

.wh-nav-dropdown-arrow {
  width: 10px;
  height: 10px;
  transition: transform .2s ease;
  flex-shrink: 0;
}

.wh-nav-dropdown-btn[aria-expanded="true"] .wh-nav-dropdown-arrow {
  transform: rotate(180deg);
}

.wh-nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #0e0e0e;
  border: 1px solid rgba(239, 43, 45, .22);
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 24px 56px rgba(0, 0, 0, .65);
  z-index: 200;
}

.wh-nav-dropdown-menu.open { display: block; }

.wh-nav-dropdown-menu a {
  display: block;
  padding: 11px 20px;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .18s, background .18s;
  white-space: nowrap;
  position: static;
}

.wh-nav-dropdown-menu a::after { display: none; }

.wh-nav-dropdown-menu a:hover {
  color: #fff;
  background: rgba(239, 43, 45, .08);
}

/* Mobile Leistungen accordion */
.wh-mobile-nav-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .82);
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s, background .2s;
}

.wh-mobile-nav-toggle:hover { color: #fff; background: rgba(255, 255, 255, .03); }

.wh-mobile-nav-toggle-arrow {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform .2s ease;
}

.wh-mobile-nav-toggle[aria-expanded="true"] .wh-mobile-nav-toggle-arrow {
  transform: rotate(180deg);
}

.wh-mobile-nav-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.wh-mobile-nav-submenu.open {
  max-height: 600px;
}

.wh-mobile-nav-submenu a {
  display: block;
  padding: 14px 24px 14px 36px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

/* Burger */
.wh-mobile-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: #fff; font-size: 22px;
  cursor: pointer;
  justify-self: start;
}

/* Mobile nav */
.wh-mobile-nav {
  display: none;
  flex-direction: column;
  background: #080808;
  border-bottom: 1px solid rgba(239, 43, 45, .28);
  padding: 8px 0 16px;
}

.wh-mobile-nav.open { display: flex; }

.wh-mobile-nav a {
  padding: 14px 24px;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: color .2s, background .2s;
}

.wh-mobile-nav a:hover { color: #fff; background: rgba(255, 255, 255, .03); }

.wh-mobile-nav-call {
  margin: 12px 24px 0;
  border: none !important;
  border-radius: 12px;
  background: linear-gradient(180deg, #ef2b2d 0%, #b31217 100%) !important;
  color: #fff !important;
  text-align: center !important;
  padding: 14px 24px !important;
  letter-spacing: .08em !important;
}

/* ===== TABLET (768px – 1100px) ===== */
@media (max-width: 1100px) {
  .wh-header-inner {
    height: 64px;
    padding: 0 24px;
  }

  .wh-header-logo {
    width: 160px;
    height: 86px;
    margin-bottom: -56px;
    transform: translateY(16px);
  }

  .wh-header-logo img { width: 155px; }

  .wh-header-nav { gap: 22px; }
  .wh-header-nav a { font-size: 11px; }

  .wh-header-hours { display: none; }

  .wh-header-call { padding: 9px 14px; }
  .wh-header-call-number { font-size: 12px; }
}

/* ===== MOBIL (< 768px) ===== */
@media (max-width: 768px) {
  .wh-header-inner {
    height: 58px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Logo: klein, normal im Header */
  .wh-header-logo {
    width: auto;
    height: auto;
    margin-bottom: 0;
    transform: none;
  }

  .wh-header-logo img {
    width: 52px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
  }

  /* Nav + Öffnungszeiten + Telefon weg */
  .wh-header-nav { display: none; }
  .wh-header-hours { display: none; }
  .wh-header-right { display: none; }

  /* Burger rechts */
  .wh-mobile-toggle { display: flex; }
}
