/**
 * 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;
  left: var(--nav-icon-padding-X);
  top: var(--nav-icon-padding-Y);
  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;
}

/* .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;
  background-color: var(--ast-global-color-4);
}

#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;
}

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

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

#menu-hauptmenu > .menu-item > a {
  font-family: var(--headlinefont);
  font-size: clamp(1.222rem, 1.032rem + 0.84vw, 1.944rem);
  font-weight: 400;
  color: var(--ast-global-color-1) !important;
  letter-spacing: 0.08em;
  display: flex;
  line-height: normal;
  padding: 0.6em max(min(106px, 9vw), 40px) 0.6em max(min(86px, 9vw), 40px);
  letter-spacing: 0;
}

#menu-hauptmenu > .menu-item.imp-sub-active > .menu-link {
  color: var(--ast-global-color-2) !important;
  background-color: var(--ast-global-color-4);
  border-radius: 40px 0 0 40px;
  transition: none;
}

.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;
}

#menu-hauptmenu .sub-menu a {
  color: var(--ast-global-color-2);
  letter-spacing: 0.08em;
  line-height: 2.68;
  font-size: clamp(0.9rem, 0.774rem + 0.44vw, 1.3rem);
  font-weight: 600;
}

#menu-hauptmenu .sub-menu a {
  color: var(--ast-global-color-2);
  letter-spacing: 0.08em;
  line-height: 2.68;
  font-size: clamp(0.9rem, 0.774rem + 0.44vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0;
}

.menu-item.current-menu-item:not(.menu-item-has-children) > a > span {
  color: inherit;
  text-decoration: underline;
}

#menu-hauptmenu .sub-menu li.current-menu-item a {
  color: var(--ast-global-color-2) !important;
  text-decoration: underline;
}

#menu-hauptmenu .sub-menu li.current-menu-item a .imp-nav-target-txt {
  color: inherit;
  text-decoration: inherit;
}

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

/**animation burger menu*/

#nav-icon3 {
  width: var(--nav-icon-width);
  height: var(--nav-icon-height);
  background-color: var(--ast-global-color-0);
  border-radius: 100%;
  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: 43.38%;
  background: var(--ast-global-color-2);
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  border-radius: 65px;
}

#nav-icon3 span:nth-child(1) {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: calc(50% - (var(--burger-line-height) / 2));
  left: clamp(9px, 1.5vw, 15px);
  max-width: 27%;
  transform: translateX(50%);
}

#nav-icon3 span:nth-child(4) {
  bottom: 24px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

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

.impmenu-active #nav-icon3 span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: var(--ast-global-color-2) !important;
}

.impmenu-active #nav-icon3 span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: var(--ast-global-color-2) !important;
}

.impmenu-active #nav-icon3 span:nth-child(2),
.impmenu-active #nav-icon3 span:nth-child(3) {
  max-width: 26px;
  left: 30%;
}

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

@media (min-width: 1920px) {
  /*----------------- ELEMENT -------------*/

  /*----------------- END ELEMENT ---------*/
}

@media (min-width: 1024px) and (max-width: 1600px) {
  /*----------------- ELEMENT -------------*/

  /*----------------- END ELEMENT ---------*/
}

@media (max-width: 1500px) {
  /*----------------- ELEMENT -------------*/

  /*----------------- END ELEMENT ---------*/
}

@media (max-width: 1200px) {
  /*----------------- ELEMENT -------------*/

  /*----------------- END ELEMENT ---------*/
}

@media (max-width: 990px) {
  /*----------------- ELEMENT -------------*/

  /*----------------- END ELEMENT ---------*/
}

@media (max-width: 768px) {
}

@media (min-width: 990px) {
  #nav-icon3 span {
    height: 3px;
  }
}

@media (min-width: 800px) and (max-width: 1050px) {
  /*
  #nav-icon3 span:nth-child(4) {
    bottom: 20px;
  }

  #nav-icon3 span:nth-child(1) {
    top: 20px;
  }
    */
}

@media (max-width: 576px) {
  #nav-icon3 span {
    height: 2.5px;
  }
}

@media (min-width: 900px) and (max-width: 1200px) {
  #nav-icon3 span:nth-child(4) {
    bottom: 18px;
  }

  #nav-icon3 span:nth-child(1) {
    top: 18px;
  }
}
@media (max-width: 320px) {
  /*----------------- ELEMENT -------------*/

  /*----------------- END ELEMENT ---------*/
}
