/* ---------- Theme variables ---------- */
:root {
  --bg-deep:#0a0b2b;
  --neon-1:#00c2ff;
  --neon-2:#6a00ff;
  --neon-3:#ff007a;
  --card-bg:rgba(15,16,56,.6);
  --text:#e7e7ff;
  --muted:#aab;
  --glow:0 0 12px rgba(0,194,255,.6), 0 0 28px rgba(106,0,255,.35), 0 0 48px rgba(255,0,122,.25);
  --nav-h:64px;               /* mobile */
  --overlay-alpha: .65;       /* ~20% darker than before (.45 → .65) */
}
@media (min-width:992px){ :root { --nav-h:80px; } }


/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg,#080922 0%, #090a28 50%, #07071d 100%);
  background-color: var(--bg-deep);
  min-height: 100%;
  padding-top: var(--nav-h);        /* reserve space for fixed navbar */
  position: relative;
  z-index: 0;

}

/* Starfield (always behind) */
.stars::before {
  content:"";
  position:fixed; inset:0;
  pointer-events:none;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.8) 60%, transparent 61%),
    radial-gradient(1.5px 1.5px at 70% 40%, rgba(255,255,255,.65) 60%, transparent 61%);
  opacity:.40;
  z-index:-3;
}

/* ---------- Fixed sitewide background image (below navbar) ---------- */
.site-bg{
  position: fixed;
  top: var(--nav-h);          /* start below header so it never sits under it */
  left: 0; right: 0; bottom: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(0,0,0,var(--overlay-alpha)), rgba(0,0,0,var(--overlay-alpha))),
    url("IMG_2429.png") top center / contain no-repeat;  /* show whole image */
  background-color: #07071d;  /* fill letterbox area */
  will-change: transform;
}


/* ---------- Navbar ---------- */
.navbar { z-index:1050; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 50vh;
  padding-bottom: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


/* ---------- Neon utilities ---------- */
.neon-text {
  font-family: Orbitron, sans-serif;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--neon-3), var(--neon-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 6px rgba(0,194,255,.35), 0 0 24px rgba(106,0,255,.45);
}
.neon-border {
  border:1px solid rgba(0,194,255,.35);
  box-shadow: var(--glow);
  background: rgba(16,17,60,.85);
  backdrop-filter: blur(6px);
}
.neon-btn {
  border:1px solid rgba(0,194,255,.55);
  color:#eaffff;
  background: linear-gradient(90deg, rgba(0,194,255,.15), rgba(106,0,255,.15));
  text-transform:uppercase;
  font-weight:700;
  letter-spacing:.06em;
}
.neon-btn:hover {
  color:white;
  box-shadow: 0 0 16px rgba(0,194,255,.75), 0 0 36px rgba(106,0,255,.55);
}
.section-title { font-family: Orbitron, sans-serif; text-transform: uppercase; margin-bottom: 1.25rem; }
.kicker { color: var(--muted); font-size:.9rem; text-transform:uppercase; letter-spacing:.18em; }

/* ---------- Social icons ---------- */
.social-icon {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: color .2s ease, text-shadow .2s ease, transform .15s ease;
}
.social-icon:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(0,194,255,.6);
  transform: translateY(-1px);
}

/* Fixed social dock: right side (desktop), bottom-center (mobile) */
.social-fixed {
  position: fixed;
  right: 16px;
  top: calc(var(--nav-h) + 16px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1040;
}
.social-fixed a {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
  align-items:center; justify-content:center; display:flex;
}
@media (max-width:575.98px){
  .social-fixed {
    top: auto; bottom: 12px; right: auto; left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    padding: 6px 10px; border-radius: 999px;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(6px);
  }
  .social-fixed a { width: 38px; height: 38px; font-size: 1.3rem; }
}
