.elementor-62 .elementor-element.elementor-element-18c9a8f5{z-index:0;}.elementor-62 .elementor-element.elementor-element-4607e6d7{margin-top:0px;margin-bottom:0px;z-index:2;}/* Start custom CSS for html, class: .elementor-element-18c9a8f5 *//* ============================
   Full CSS — No transition, no zoom effect
   ============================ */

/* wrapper sits behind all content */
.site-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;             /* behind everything */
  overflow: hidden;
  pointer-events: none;    /* keep interactions working above BG */
  -webkit-backface-visibility: hidden;
}

/* picture/img behave like a background cover */
.site-bg picture,
.site-bg img.site-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transform-origin: center center;
  will-change: initial;  /* Disable any unnecessary optimizations */
  -webkit-transform-style: preserve-3d;
}

/* ---------- Base: Remove transform and transition completely ---------- */
.site-bg img.site-bg-img {
  transform: none !important;  /* Disable any transformation */
  transition: none !important; /* Remove any transition effects */

  filter: brightness(1.03);
  backface-visibility: hidden;
}

/* ========== Mobile / tablet cropping tweaks ========== */
/* No zoom or transform on mobile */
@media (max-width: 1024px) {
  .site-bg img.site-bg-img {
    transform: none !important;
  }
}
@media (max-width: 767px) {
  .site-bg img.site-bg-img {
    transform: none !important;
  }
}

/* ========== Accessibility: respect prefers-reduced-motion ========== */
@media (prefers-reduced-motion: reduce) {
  .site-bg img.site-bg-img {
    transition: none !important;
    transform: none !important;
  }
}

/* Ensure content sits above background */
.site-inner, .site, .main, #page, .elementor {
  position: relative;
  z-index: 0;
}

/* Optional debug helper (uncomment while testing) */
.site-bg { outline: 1px dashed rgba(0,0,0,0.08); }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5000f58e *//* ===== Header layout (new) ===== */
.site-header {
  width: 100%;
  position: relative;
  z-index: 50; /* keep header above other elements */
  background: transparent; /* keep whatever bg you already use */
}

/* container to center and constrain the header content */
.header-inner {
  max-width: 1280px;           /* adjust to your site container width */
  margin: 0 auto;
  padding: 0.75rem 1rem;       /* header padding */
  display: flex;
  align-items: center;
  justify-content: space-between;  /* logo left, menu right on desktop */
  gap: 1rem;
}

/* logo wrapper */
.site-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* left on desktop */
  flex-shrink: 0;
}

/* logo image sizing: responsive recommended sizes */
.site-logo img {
  display: block;
  width: auto;
  height: 170px;            /* DESKTOP default height */
  max-width: 100%;
  object-fit: contain;
  image-rendering: crisp-edges;
  border-radius: 0;        /* keep original look (no rounding) */
}

/* preserve original neon-menu rules; these are just layout helpers */
/* (Your existing neon-menu CSS remains unchanged and will continue to apply.) */

/* ===== Responsive: Tablet and mobile ===== */
/* Tablet (<= 1024px) - center logo, menu still on same row if space allows */
@media (max-width: 1024px) {
  .header-inner {
    flex-direction: column;
    align-items: center;      /* place logo and nav centered vertically */
    justify-content: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
  }

  .site-logo {
    justify-content: center;  /* centre logo horizontally */
  }

  /* increase logo size a bit on tablet for visibility */
  .site-logo img {
    height: 110px;            /* TABLET suggested height */
  }

  /* ensure neon menu centers (your neon-menu already sets this at <=768, but this ensures centering earlier) */
  .neon-menu {
    justify-content: center;
  }
}

/* Mobile (<= 480px) - logo centered on top, menu stacks as column (your menu CSS already stacks at <=480) */
@media (max-width: 480px) {
  .header-inner {
    padding: 0.5rem 0.8rem;
  }

  .site-logo img {
    height: 90px;             /* MOBILE suggested height */
  }

  /* make sure the nav sits centered under logo */
  #primary-nav {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* your neon-menu already switches to column and centers items at <=480px; nothing else needed */
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-4607e6d7 *//* Animate custom angle property (unchanged) */
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* === Compact neon capsule menu — transparent charcoal base, slightly more curved === */
/* NOTE: changed desktop alignment to right; tablet and below center; mobile stacks centered */
.neon-menu {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;   /* RIGHT on desktop */
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Base button: transparent with subtle charcoal wash, slightly curved corners */
.neon-menu a {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0.7rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1;
  color: #FFD54A;                                /* neon gold text */
  background: rgba(17,24,39,0.045);              /* subtle charcoal wash (transparent) */
  text-decoration: none !important;              /* remove underline forced */
  border: 1px solid transparent;
  border-radius: 0.6rem;                         /* slightly more curved corners */
  border-image: conic-gradient(from var(--angle), transparent, #FFD54A) 1;
  animation: spinBorder 3s linear infinite;
  box-shadow:
    0 0 4px #FFD54A,
    0 0 8px #FFD54A;
  transition: box-shadow 0.25s ease, color 0.15s ease, transform 0.12s ease, background 0.15s ease;
  z-index: 0;
}

/* Ensure other states keep no underline and consistent color */
.neon-menu a:visited,
.neon-menu a:active,
.neon-menu a:focus {
  text-decoration: none !important;
  color: #FFD54A;
}

/* Hover: white background (keeps neon glow) — border uses subtle charcoal rather than pure black */
.neon-menu a:hover {
  color: #FFD54A;                                 /* neon gold text on hover */
  background: #FFFFFF;                            /* white bg on hover as before */
  border: 1px solid rgba(17,24,39,0.06);          /* subtle charcoal border on hover */
  box-shadow:
    0 0 10px #FFD54A,
    0 0 20px #FFD54A,
    0 0 30px #FFD54A;
  transform: translateY(-2px);
  text-decoration: none !important;
}

/* Keyboard focus visible (accessibility) — charcoal tinted ring */
.neon-menu a:focus-visible {
  outline: 3px solid rgba(17,24,39,0.12);
  outline-offset: 3px;
  border-radius: 0.55rem;
  text-decoration: none !important;
}

/* Spin keyframes (unchanged) */
@keyframes spinBorder {
  to { --angle: 360deg; }
}

/* Responsive behavior:
   - <=768px: center the menu (keeps wrap behavior; rows centered)
   - <=480px: stack vertically and center items */
@media (max-width: 768px) {
  .neon-menu {
    gap: 0.5rem;
    justify-content: center;  /* CENTER on tablet and smaller */
  }
  .neon-menu a {
    padding: 0.32rem 0.6rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .neon-menu {
    flex-direction: column;    /* stack when narrow */
    align-items: center;       /* center the column */
    gap: 0.45rem;
    justify-content: center;
  }
  .neon-menu a {
    text-align: center;
    width: auto;               /* keep natural width centered */
    padding: 0.28rem 0.5rem;
    font-size: 0.78rem;
  }
}/* End custom CSS */