/**
 * Theme Navigation Styles
 * 
 * This file contains the base styles for the theme’s navigation (IMP Menu).
 * It includes structure, layout, and animation logic for the main menu.
 * 
 * If additional navigation types or animation variants are added (e.g., 
 * sliding, fading, overlay), they should be moved into dedicated sub-files
 * (e.g., theme_nav-overlay.css, theme_nav-slide.css).
 * 
 * This ensures the base file remains manageable and the structure modular.
 */

a.impmenu-toggle {
  z-index: 99999;
  margin-left: var(--nav-icon-padding-X);
  background: transparent;
  font-weight: 500;
  /* top: auto; */
  left: 0;
  letter-spacing: 0.17em;
  pointer-events: all;
  border-radius: 0 0 2em 0;
  position: fixed;
  transition: all 0.5s cubic-bezier(0.65, 0.05, 0.36, 1) 0s;
  top: var(--nav-icon-padding-Y);
}

.impmenu-active .impmenu-toggle {
  margin-left: 15px;
}

#nav-wrapper {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  transform: scale(0);
  pointer-events: none;
  transition: all 0.7s cubic-bezier(0.46, 0.03, 0.52, 0.96) 0s;
  z-index: 9999;
  clip-path: circle(0% at 50% 50%);
}

#nav-wrapper.impmenu-active {
  transform: scale(1);
  clip-path: circle(70.7% at 50% 50%);
}

#main-nav {
  z-index: 9999;
  transition: all 0.5s ease 0s;
  --menu-items-padding: 70px;
  padding: 0;
  transition: all 0.5s ease 0s !important;
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  pointer-events: all;
}

#menu-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

#menu-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav#main-nav li.menu-item a {
  text-decoration: none;
  position: relative;
}

.menu-col.col-menu-1 {
  width: 100%;
  display: flex;
  height: 100%;
  align-items: center;
  max-width: 100%;
  max-height: 100%;
  position: relative;
  background-color: var(--ast-global-color-1);
}

.menu-hauptmenu-container {
  height: 100%;
}

@media (min-width: 1025px) {
  #menu-hauptmenu {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

#menu-hauptmenu > .menu-item > a {
  font-family: var(--headlinefont);
  font-size: var(--h2-font-size);
  font-weight: 500;
  color: var(--ast-global-color-0);
  display: flex;
  line-height: 1.67;
}

#menu-hauptmenu > .menu-item.imp-sub-active > .menu-link {
  color: var(--ast-global-color-0) !important;
}

.imp-nav-target {
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 9;
  align-items: center;
}

.dropdown-menu-toggle.ast-header-navigation-arrow {
  display: none;
}

#menu-wrapper ul.sub-menu {
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
}

#menu-wrapper ul.sub-menu .menu-item {
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96) 0s;
}

#menu-wrapper .imp-sub-active ul.sub-menu .menu-item {
  max-height: 4rem;
  transition-delay: 0.85s;
}

.ast-icon.icon-arrow {
  display: none;
}

nav#main-nav .sub-menu li.menu-item.current-menu-item > a {
  color: #fff !important;
  z-index: 9;
}

#menu-wrapper ul.sub-menu {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 9;
}

.menu-item.sub-back-btn {
  margin-top: 4.2vh;
}

.menu-item.sub-back-btn span {
  display: flex;
  align-items: center;
}

.menu-item.sub-back-btn span::before {
  content: "";
  display: block;
  height: 1.1em;
  width: calc(1.1em / 2);
  background-image: url(/wp-content/themes/astra-impuls-child/img/nav-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 0.6em;
  margin-top: 0em;
  transition: all 0.5s ease 0s;
  rotate: 180deg;
}

/**animation burger menu*/

#nav-icon3 {
  border: 2px solid var(--ast-global-color-0);
  border-radius: 55px;
  width: var(--nav-icon-width);
  height: var(--nav-icon-height);
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: var(--burger-line-height);
  width: 100%;
  background: var(--ast-global-color-0);
  border-radius: 13em;
  opacity: 1;
  left: 25%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
  top: 35%;
  width: 45%;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: calc(50% - (var(--burger-line-height) / 2));
  right: unset;
  width: 17px;
  background-color: var(--ast-global-color-0);
}

#nav-icon3 span:nth-child(4) {
  bottom: 35%;
  width: 45%;
}

#nav-wrapper.impmenu-active ~ .impmenu-toggle #nav-icon3 span:nth-child(1) {
  top: 50%;
  width: 0%;
  left: 50%;
  transform: translateY(50%);
}

#nav-wrapper.impmenu-active ~ .impmenu-toggle #nav-icon3 span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 25px;
}

#nav-wrapper.impmenu-active ~ .impmenu-toggle #nav-icon3 span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 25px;
}

#nav-wrapper.impmenu-active ~ .impmenu-toggle #nav-icon3 span:nth-child(4) {
  bottom: 50%;
  transform: translateY(-50%);
  width: 0%;
  left: 50%;
}

@media (max-width: 990px) {
  #nav-icon3 span:nth-child(4) {
    width: 49%;
  }

  #nav-icon3 span:nth-child(2),
  #nav-icon3 span:nth-child(3) {
    right: unset;
    width: 14px;
  }

  #nav-icon3 span:nth-child(1) {
    width: 50%;
  }

  #nav-icon3 span {
    left: 20%;
  }
}

@media (max-width: 768px) {
  #theme-logo {
    margin: 22px 23px 22px auto;
  }
  a.impmenu-toggle {
    /* margin-left: 13px;*/
    top: 14px;
  }
}

@media (min-width: 1024px) and (max-height: 750px) {
  #header-icons {
    position: unset;
  }
  #header-icons .widget_text:first-child {
    position: absolute;
    bottom: 5.79vw;
  }

  #header-icons .widget_text:last-child {
    position: absolute;
    top: var(--nav-icon-padding-Y);
    right: var(--nav-icon-padding-X);
  }
  #menu-wrapper ul.sub-menu {
    align-items: center;
    transform: translateY(-25%) !important;
  }

  #menu-wrapper #menu-hauptmenu ul.sub-menu {
    transform: translateY(-25%) !important;
  }

  #menu-wrapper #menu-hauptmenu li:last-child ul.sub-menu {
    transform: translateY(-30%) !important;
  }
}

@media (min-width: 1024px) and (max-height: 580px) {
  #menu-hauptmenu > .menu-item > a {
    line-height: 1.4;
  }
  #header-icons .widget_text:first-child {
    bottom: 3vw;
  }
}
