.elementor-46 .elementor-element.elementor-element-174d4f6{--display:flex;}.elementor-46 .elementor-element.elementor-element-c8983b9{--display:flex;}.elementor-46 .elementor-element.elementor-element-1f5c90f{--spacer-size:8px;top:49px;}body:not(.rtl) .elementor-46 .elementor-element.elementor-element-1f5c90f{left:-88px;}body.rtl .elementor-46 .elementor-element.elementor-element-1f5c90f{right:-88px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-912f245 */.eidolon-header {
  width: 100%;
  max-width: 1100px;
  height: 100px;
  margin: 0 auto;
  background-color: #0c0c0c;
  border-radius: 100px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 16px;
  z-index: 999; /* stays above other elements */
  margin-top: 16px; /* optional: space from top when page loads */
  /* Frosted glass effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.08); /* subtle highlight edge */
}

.header-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px 0 0px; 
}

.left-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 60px;
  width: auto;
  max-width: 120px;     /* Prevents stretching on wider screens */
  object-fit: contain;
  display: block;
}

.branding {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-family: 'Righteous', cursive;
  font-size: 26px;
  color: white;
  margin: 0;
  line-height: 1;
}

.subtitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  color: white;
  margin: 0;
  margin-top: 4px;
  line-height: 1.2;
}

.menu {
  display: flex;
  gap: 32px;
}

.menu a {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 17px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #AEAEE5;
}

.bottom-line {
  position: absolute;
  bottom: 0;
  left: 100px;
  right: 100px;
  height: 8px;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    #AEAEE5 8%,
    rgba(174, 174, 229, 0) 100%
  );
  border-radius: 6px;
}

/* Tablet responsive */
@media (max-width: 1024px) {
  .eidolon-header {
    height: 90px;
  }

  .header-inner {
    padding: 0 24px 0 16px;
  }

  .brand-name {
    font-size: 22px;
  }

  .subtitle {
    font-size: 12px;
  }

  .menu a {
    font-size: 15px;
    gap: 24px;
  }

  .bottom-line {
    left: 80px;
    right: 80px;
  }
}

/* Mobile responsive */
@media (max-width: 767px) {
  .eidolon-header {
    flex-direction: column;
    height: auto;
    padding: 20px;
    border-radius: 60px;
  }

  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0;
  }

  .menu {
    flex-direction: column;
    gap: 10px;
  }

  .bottom-line {
    left: 50px;
    right: 50px;
  }
}/* End custom CSS */