@font-face{
  font-family: 'Orbitron';
  src: url('../fonts/orbitron-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: 'Orbitron';
  src: url('../fonts/orbitron-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: 'Orbitron';
  src: url('../fonts/orbitron-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: 'Orbitron';
  src: url('../fonts/orbitron-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: 'Rajdhani';
  src: url('../fonts/rajdhani-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: 'Rajdhani';
  src: url('../fonts/rajdhani-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: 'Rajdhani';
  src: url('../fonts/rajdhani-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: 'Rajdhani';
  src: url('../fonts/rajdhani-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root{
  --bg: #1B0E33;
  --bg-soft: rgba(18,10,36,0.55);
  --panel-hover: rgba(30,16,54,0.7);
  --violet: #00F0FF;   /* cyan accent */
  --coral: #FF2E9A;    /* hot pink accent */
  --ink: #F8F6FF;
  --muted: #C8BEE8;
  --line: rgba(255,255,255,0.16);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
}

*{ margin:0; padding:0; box-sizing:border-box; }

img, svg, video{ max-width: 100%; height: auto; }

html{ scroll-behavior: smooth; overflow-x: hidden; }

body{
  background: linear-gradient(160deg, #170B2E 0%, #5B21B6 35%, #D6249F 65%, #FF6B4A 100%);
  background-size: 200% 200%;
  animation: driftGradient 24s ease-in-out infinite alternate;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  position: relative;
}

@keyframes driftGradient{
  0%{ background-position: 0% 0%; }
  100%{ background-position: 100% 100%; }
}

body::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(0,0,0,0.35), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(0,0,0,0.35), transparent 55%);
}

@media (prefers-reduced-motion: reduce){
  body{ animation: none; }
}

a{ color: inherit; text-decoration: none; }

/* ---------- Nav ---------- */
nav{
  position: fixed;
  top:0; left:0; right:0;
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 1.25rem 2rem;
  z-index: 100;
  background: rgba(18,10,36,0.45);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-brand{
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

nav .logo{
  font-family: var(--font-display);
  font-weight:700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

nav .logo:hover{
  color: var(--violet);
}

.hamburger-btn{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.hamburger-line{
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease, background 0.2s ease;
}

.hamburger-btn:hover .hamburger-line{
  background: var(--violet);
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(2){
  opacity: 0;
}
.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu{
  position: absolute;
  top: 100%;
  left: 2rem;
  margin-top: 0.75rem;
  background: rgba(15,8,30,0.9);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  min-width: 210px;
  max-height: min(70vh, 480px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 99;
}

.nav-menu.open{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-menu a{
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-divider{
  height: 1px;
  background: var(--line);
  margin: 0.4rem 0.65rem;
}

.nav-menu a:hover{
  background: rgba(255,255,255,0.08);
  color: var(--violet);
}

nav .note{
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-middle {
  display: flex;
  align-items: center;   /* keeps it vertically centered in the nav bar */
}

.nav-middle-img {
  height: 20px;      /* set the height to match your nav bar, width follows automatically */
  width: auto;
  object-fit: contain;
}

.nav-right{
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links a{
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-links a:hover{
  color: var(--violet);
  text-shadow: 0 0 8px rgba(0,240,255,0.6);
}

@media (max-width: 768px){
  .nav-left,
  .nav-right{
    display: none;
  }
}

@media (max-width: 640px){
  nav .note{
    display: none;
  }
  .nav-links{
    gap: 0.85rem;
  }
  .nav-links a{
    font-size: 0.68rem;
  }
  .nav-menu{
    left: 1rem;
    right: 1rem;
    min-width: 0;
    max-height: 65vh;
  }
}

@media (max-width: 420px){
  .nav-links a:nth-child(3),
  .nav-links a:nth-child(4){
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero{
  height: 100vh;
  display:flex;
  flex-direction: column;
  justify-content:center;
  align-items:center;
  position: relative;
  text-align:center;
  padding: 0 1.5rem;
  overflow: hidden;
  max-width: 100vw;
}

.hero-bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.35;
}

.float-tiles{
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.float-tile{
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 108px;
  padding: 1.1rem 0.6rem 0.9rem;
  background: rgba(15,8,30,0.55);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  text-decoration: none;
  pointer-events: auto;
  animation: floatBob 5s ease-in-out infinite;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.float-tile svg{
  width: 34px;
  height: 34px;
}

.float-tile span{
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.float-tile:hover{
  color: var(--violet);
  border-color: rgba(0,240,255,0.55);
  box-shadow: 0 0 22px rgba(0,240,255,0.3);
  transform: translateY(-4px) scale(1.05);
}

.float-tile--1{ top: 12%;  left: 4%;   animation-delay: 0s; }
.float-tile--2{ top: 12%;  right: 4%;  animation-delay: 1.1s; }
.float-tile--3{ top: 38%;  left: 1%;   animation-delay: 2.2s; }
.float-tile--4{ top: 38%;  right: 1%;  animation-delay: 0.6s; }
.float-tile--5{ bottom: 30%; left: 2%; animation-delay: 1.7s; }
.float-tile--6{ bottom: 30%; right: 2%; animation-delay: 0.3s; }
.float-tile--7{ bottom: 8%;  left: 12%; animation-delay: 2.6s; }
.float-tile--8{ bottom: 8%;  right: 12%; animation-delay: 1.4s; }

@keyframes floatBob{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-14px); }
}

@media (prefers-reduced-motion: reduce){
  .float-tile{ animation: none; }
}

@media (max-width: 900px){
  .float-tiles{
    position: static;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    order: -1;
  }
  .float-tile{
    position: static;
    animation: none;
    width: 92px;
  }
}

.avatar-glow{
  position: relative;
  z-index: 2;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin-bottom: 1.75rem;
  padding: 4px;
  background: conic-gradient(from 0deg, var(--violet), var(--coral), var(--violet));
  box-shadow: 0 0 40px rgba(0,240,255,0.35), 0 0 70px rgba(255,46,154,0.2);
  animation: spinGlow 6s linear infinite;
}

.avatar-glow img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display:block;
  background: var(--bg-soft);
  animation: counterSpin 6s linear infinite;
}

@keyframes spinGlow{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}
@keyframes counterSpin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(-360deg); }
}

.ring{
  position:absolute;
  border: 1px solid rgba(0,240,255,0.18);
  border-radius: 50%;
  top:50%; left:50%;
  transform: translate(-50%,-50%);
  z-index: 0;
}
.ring--1{ width: 560px; height:560px; }
.ring--2{ width: 720px; height:720px; border-color: rgba(255,46,154,0.1); }

.hero-content{ position: relative; z-index: 2; }

.eyebrow{
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.25rem;
  display:block;
  text-shadow: 0 0 12px rgba(255,46,154,0.6);
}

.hero h1{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 7vw, 4.6rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.hero h1 .accent{
  color: var(--violet);
  text-shadow: 0 0 18px rgba(0,240,255,0.7);
}

.greeting{
  display: inline-block;
  min-width: 2ch;
  transition: opacity 0.5s ease;
}

.greeting.fade{
  opacity: 0;
}

@media (prefers-reduced-motion: reduce){
  .greeting{ transition: none; }
}

.hero p{
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin-left:auto;
  margin-right:auto;
}

.scroll-cue{
  position:absolute;
  bottom: 2.5rem;
  left:50%;
  transform: translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 0.5rem;
  z-index: 2;
}
.scroll-cue span{
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line{
  width:1px;
  height: 40px;
  background: linear-gradient(var(--violet), transparent);
  animation: pulseDown 1.8s ease-in-out infinite;
}
@keyframes pulseDown{
  0%{ transform: scaleY(0.3); opacity: 0.3; }
  50%{ transform: scaleY(1); opacity: 1; }
  100%{ transform: scaleY(0.3); opacity: 0.3; }
}

/* ---------- Sections generic ---------- */
section{
  padding: 2rem 2rem;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  scroll-margin-top: 90px;
}

.section-photo{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 22%, black 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 22%, black 78%, transparent 100%);
}

/* ---------- About photo with subtitle caption ---------- */
.about-photo{
  position: relative;
  margin-top: 2.5rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  box-shadow: 0 0 40px rgba(0,240,255,0.08);
}

.about-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-photo.contain img{
  object-fit: contain;
  background: var(--bg-soft);
}

.subtitle-bar{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.5rem;
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
  pointer-events: none;
}

.subtitle-text{
  background: rgba(6,6,12,0.72);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  text-align: center;
  line-height: 1.4;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  max-width: 640px;
}

.section-label{
  position: relative;
  z-index: 1;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
  display:block;
  text-shadow: 0 0 10px rgba(255,46,154,0.5);
}

.section-title{
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  max-width: 900px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.section-body{
  position: relative;
  z-index: 1;
  margin-top: 1.25rem;
  color: var(--muted);
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ---------- Alias stickers ---------- */
.alias-wrap{
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}

.alias-label{
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--muted);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.sticker-row{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.sticker{
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: #0B0B14;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  cursor: default;
  transform: rotate(var(--r)) translateY(0);
  animation: stickerFloat 4.5s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticker:hover{
  transform: rotate(0deg) translateY(-3px) scale(1.08) !important;
  box-shadow: 0 12px 22px rgba(0,0,0,0.35);
}

.sticker--cyan{ background: var(--violet); }
.sticker--pink{ background: var(--coral); color: #2a0b1c; }
.sticker--mint{ background: #7CFFB2; }
.sticker--amber{ background: #FFD166; }

@keyframes stickerFloat{
  0%, 100%{ transform: rotate(var(--r)) translateY(0); }
  50%{ transform: rotate(var(--r)) translateY(-7px); }
}

@media (prefers-reduced-motion: reduce){
  .sticker{ animation: none; }
}

@media (max-width: 640px){
  .sticker{
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  .sticker-row{
    gap: 0.75rem 0.9rem;
  }
}

/* ---------- Reveal-on-scroll utility ---------- */
.reveal{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1.is-visible{ transition-delay: 0.1s; }
.reveal-delay-2.is-visible{ transition-delay: 0.2s; }
.reveal-delay-3.is-visible{ transition-delay: 0.3s; }

/* ---------- Gallery ---------- */
.gallery-grid{
  margin-top: 3rem;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item{
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  backdrop-filter: blur(8px);
}

.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(0.9);
}

.gallery-item:hover img{
  transform: scale(1.08);
  filter: saturate(1.1);
}

@media (max-width: 700px){
  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Link cards ---------- */
.card-grid{
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card{
  display:block;
  background: var(--bg-soft);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.75rem;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.card:hover{
  border-color: rgba(0,240,255,0.6);
  transform: translateY(-4px);
  background: var(--panel-hover);
  box-shadow: 0 0 24px rgba(0,240,255,0.25);
}

.card .tag{
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--violet);
}

.card h3{
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-top: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.card p{
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* ---------- Now playing strip ---------- */
.strip{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  margin: 6rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.strip-track{
  display: flex;
  width: max-content;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--muted);
  animation: marquee 18s linear infinite;
}

.strip-group{
  display: flex;
  flex-shrink: 0;
}

.strip-track span,
.strip-group span{
  color: var(--ink);
  margin: 0 1.5rem;
  white-space: nowrap;
}

@keyframes marquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* ---------- Footer ---------- */
footer{
  text-align:center;
  padding: 4rem 2rem 3rem;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ---------- Scroll progress ---------- */
.scroll-progress-track{
  position: fixed;
  top: 0;
  right: 0;
  width: 4px;
  height: 100vh;
  background: rgba(255,255,255,0.08);
  z-index: 95;
  pointer-events: none;
}

.scroll-progress-fill{
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--violet), var(--coral));
  box-shadow: 0 0 10px rgba(0,240,255,0.6);
  transition: height 0.1s linear;
}

@media (max-width: 640px){
  .scroll-progress-track{
    width: 3px;
  }
}

/* ---------- Back to top ---------- */
.back-to-top{
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(15,8,30,0.55);
  backdrop-filter: blur(10px);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease, border-color 0.2s ease;
}

.back-to-top.visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover{
  color: var(--violet);
  border-color: rgba(0,240,255,0.5);
}

@media (max-width: 640px){
  .back-to-top{
    bottom: 1.25rem;
    right: 1.25rem;
    width: 38px;
    height: 38px;
  }
}

/* ---------- Lightbox ---------- */
.gallery-item{
  cursor: zoom-in;
}

.lightbox{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(5,3,12,0.88);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.open{
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img{
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 0 60px rgba(0,240,255,0.15);
  transform: scale(0.9);
  transition: transform 0.25s ease;
}

.lightbox.open .lightbox-img{
  transform: scale(1);
}

.lightbox-close{
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(15,8,30,0.6);
  backdrop-filter: blur(8px);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.lightbox-close:hover{
  color: var(--violet);
  border-color: rgba(0,240,255,0.5);
}

@media (max-width: 640px){
  .lightbox{ padding: 1rem; }
  .lightbox-close{
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
  .reveal{ opacity: 1; transform: none; }
}