:root {
  --pink: #ff2fa1;
  --pink-soft: #ffb6d9;
  --gold: #ffd166;
  --black: #17141b;
  --dark-card: #221d29;
  --tan: #e8a06b;
  --text-light: #fff5fb;
  --text-muted: #cbb9c9;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--black);
  color: var(--text-light);
  overflow-x: hidden;
}

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

/* Sparkle background layer */
.sparkle-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(2px 2px at 10% 20%, #fff, transparent),
    radial-gradient(2px 2px at 80% 10%, var(--gold), transparent),
    radial-gradient(1.5px 1.5px at 60% 70%, #fff, transparent),
    radial-gradient(2px 2px at 30% 80%, var(--pink-soft), transparent),
    radial-gradient(1.5px 1.5px at 90% 60%, #fff, transparent);
  background-repeat: repeat;
  background-size: 400px 400px;
  animation: drift 30s linear infinite;
  opacity: 0.5;
}
@keyframes drift {
  from { background-position: 0 0; }
  to { background-position: 400px 400px; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 75% 20%, rgba(255,47,161,0.35), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(255,209,102,0.2), transparent 50%),
    linear-gradient(160deg, #1c1420, #100c14 60%);
  padding: 0 6vw;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  position: relative;
  z-index: 2;
}
.logo {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 2px;
}
.logo .star { color: var(--pink); margin-left: 4px; }
.navlinks {
  display: flex;
  gap: 32px;
  list-style: none;
}
.navlinks a {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}
.navlinks a:hover { color: var(--pink); }
.navlinks a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width 0.25s;
}
.navlinks a:hover::after { width: 100%; }

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  padding-top: 10px;
}
.hero-eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.hero-title {
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-title .heart {
  -webkit-text-fill-color: var(--pink);
  color: var(--pink);
}
.hero-tagline {
  margin-top: 22px;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 480px;
}
.hero-buttons {
  margin-top: 34px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.btn {
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary {
  background: linear-gradient(90deg, var(--pink), #ff6ec7);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,47,161,0.4);
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn:hover { transform: translateY(-3px); }
.btn-primary:hover { box-shadow: 0 12px 28px rgba(255,47,161,0.55); }
.btn-outline:hover { background: var(--gold); color: var(--black); }

.hero-avatar {
  position: absolute;
  right: 4vw;
  bottom: 0;
  width: min(340px, 34vw);
  z-index: 1;
}
.avatar-svg { width: 100%; height: auto; display: block; }

/* Section shared */
main { position: relative; z-index: 1; }
section {
  padding: 90px 6vw;
  max-width: 1200px;
  margin: 0 auto;
}
.section-heading { margin-bottom: 48px; }
.section-heading .tag {
  display: inline-block;
  color: var(--pink);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
}
.bio {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-muted);
}
.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.stat-value { font-size: 1.05rem; font-weight: 700; }

/* Looks */
.looks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.look-card {
  background: var(--dark-card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.look-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.look-swatch {
  height: 160px;
  width: 100%;
}
.look-1 .look-swatch { background: linear-gradient(135deg, #ff2fa1, #7b2ff7); }
.look-2 .look-swatch { background: linear-gradient(135deg, #ffd166, #ff6ec7); }
.look-3 .look-swatch { background: linear-gradient(135deg, #ffb6d9, #ff2fa1); }
.look-4 .look-swatch { background: linear-gradient(135deg, #e8a06b, #ffd166); }
.look-card h3 { padding: 18px 20px 6px; font-size: 1.15rem; }
.look-card p { padding: 0 20px; color: var(--text-muted); font-size: 0.92rem; line-height: 1.5; }
.look-tags { padding: 14px 20px 20px; display: flex; gap: 8px; flex-wrap: wrap; }
.look-tags span {
  font-size: 0.75rem;
  color: var(--gold);
  background: rgba(255,209,102,0.1);
  padding: 4px 10px;
  border-radius: 999px;
}

/* Faves */
.faves-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.faves-list li {
  background: var(--dark-card);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}
.fave-icon { font-size: 1.4rem; }

/* Tribe */
.tribe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.tribe-card {
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255,47,161,0.12), rgba(255,209,102,0.08));
  border: 1px solid rgba(255,255,255,0.08);
}
.tribe-card h3 { color: var(--gold); margin-bottom: 8px; font-size: 1.2rem; }
.tribe-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.5; }

/* Footer */
.site-footer {
  text-align: center;
  padding: 40px 6vw 60px;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-sub { margin-top: 6px; opacity: 0.6; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .hero-avatar { position: relative; right: auto; width: 60vw; margin: 20px auto 0; }
  .hero { padding-bottom: 40px; }
}
