/* ==================================================
   LUXURY HEADER (ISOLATED)
================================================== */

.lux-header {
  position: relative;
  height: 90px;
  background: radial-gradient(
  circle at top,
  #0a1a2f,
  #050d18 70%,
  #02070f
);


  /* IMPORTANT: neutralize RTL for layout */
  direction: ltr;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  overflow: hidden;
  z-index: 50;
}

/* STAR CANVAS – FULL HEADER */
#stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

/* CONTENT ABOVE STARS */
.header-left,
.header-center,
.header-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

/* LEFT – JORDAN FLAG */
.header-left {
  justify-content: flex-start;
}

.flag {
  height: 32px;          /* bigger */
  width: auto;
  border-radius: 5px;

  box-shadow:
    0 0 6px rgba(255,255,255,0.2),
    0 2px 6px rgba(0,0,0,0.4);
}


/* CENTER – MOON LOGO */
.header-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo {
  width: 56px;
  height: 56px;

  /* perfect moon circle */
  border-radius: 50%;
  background-color: #f1f1f1;

  /* DO NOT crop the logo */
  object-fit: contain;
  padding: 6px;                /* space so logo fits fully */

  /* moon lighting */
  box-shadow:
    0 0 10px rgba(255,255,255,0.45),
    0 0 26px rgba(255,255,255,0.25),
    inset -6px -8px 12px rgba(0,0,0,0.25);

  display: block;
}



/* RIGHT – INSTAGRAM */
.header-right {
  justify-content: flex-end;
}

.instagram-icon {
  height: 26px;
  opacity: 0.9;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.instagram-icon:hover {
  transform: scale(1.12);
  opacity: 1;
}
