/* ============================================================
   LEMNICOIN — LUXURY EFFECTS CSS
   Elegant cyan glows • Cartier micro-interactions • 3D surfaces
   ============================================================ */

/* -----------------------------------------
   BUTTON GLOW EFFECTS (cyan-electric)
------------------------------------------ */

.lux-btn {
  background-color: #00D4FF;
  color: #010510;
  border: none;
  padding: 12px 26px;
  border-radius: 6px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
  box-shadow:
    0 0 12px rgba(0, 212, 255, 0.45),
    0 0 24px rgba(0, 212, 255, 0.25);
}

.lux-btn:hover {
  color: #FFFFFF;
  background-color: #0066FF;
  box-shadow:
    0 0 18px rgba(0, 212, 255, 0.75),
    0 0 36px rgba(0, 102, 255, 0.35);
  transform: translateY(-2px);
}

.lux-btn:active {
  transform: translateY(1px);
  box-shadow:
    0 0 10px rgba(0, 212, 255, 0.4),
    0 0 22px rgba(0, 102, 255, 0.3);
}

/* -----------------------------------------
   NEON LINE DIVIDERS (1px elegant cyan)
------------------------------------------ */

.neon-divider {
  width: 100%;
  height: 1px;
  background-color: #00D4FF;
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.35);
  margin: 20px 0;
}

/* -----------------------------------------
   3D LIGHTING MODEL FOR CARDS
------------------------------------------ */

.luxury-card {
  background-color: #0A0D14;
  padding: 30px;
  border-radius: 12px;
  color: #FFFFFF;
  position: relative;
  border: 1px solid rgba(0, 212, 255, 0.01);
  box-shadow:
    inset 0 0 12px rgba(255, 255, 255, 0.02),
    0 8px 22px rgba(0, 0, 0, 0.55),
    0 0 14px rgba(0, 212, 255, 0.08);
  transition: all 0.35s ease;
}

.luxury-card:hover {
  box-shadow:
    inset 0 0 14px rgba(255, 255, 255, 0.03),
    0 12px 32px rgba(0, 0, 0, 0.75),
    0 0 20px rgba(0, 212, 255, 0.16);
}

/* -----------------------------------------
   PARALLAX LIGHT SURFACE
------------------------------------------ */

.parallax-light {
  position: relative;
  overflow: hidden;
}

.parallax-light::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(
     circle at var(--mx, 50%) var(--my, 50%),
     rgba(0, 212, 255, 0.10),
     transparent 40%
  );
  pointer-events: none;
  transition: background 0.1s ease;
}

/* -----------------------------------------
   CURSOR REACTIVITY HELPERS
------------------------------------------ */

html {
  --mx: 50%;
  --my: 50%;
}
/* ==========================================================
   NAVBAR LUXURY FIXES (Centering, Visibility, Background)
   ========================================================== */

header.header {
    background-color: #010510 !important;
    padding-top: 12px;
    padding-bottom: 12px;
}

.header-nav, 
.header-nav-wrapper {
    background-color: #010510 !important;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}

/* Force navbar to have real size */
.menuzord {
    height: 64px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Align menu horizontally and center */
.menuzord-menu {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 28px !important;
}

/* MENU ITEM APPEARANCE */
.menuzord-menu > li > a {
    color: #E0E5FF !important;
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

/* HOVER */
.menuzord-menu > li > a:hover {
    color: #00D4FF !important;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.55);
}

/* ACTIVE ITEM FIX */
.menuzord-menu > li.active > a {
    color: #00D4FF !important;
    font-weight: 500 !important;
    border-bottom: 2px solid #00D4FF;
    padding-bottom: 6px;
}

/* Make sure list bullets do NOT appear (bootstrap tries to override this) */
.menuzord-menu.list-inline {
    list-style: none !important;
}
.menuzord-menu.list-inline > li {
    list-style: none !important;
}

/* Remove default UL margin */
.menuzord-menu {
    margin: 0 !important;
    padding: 0 !important;
}
.menuzord-menu > li.active > a {
    color: #00D4FF !important;
    border-bottom: 2px solid #00D4FF;
    padding-bottom: 6px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.55);
}

