/* ══════════════════════════════════════════════════
   NETTE'S BOUTIQUE — Full Overhaul
   Vibe: Soft Dreamy × Dark Editorial
   Ref: XPlusWear · Shein · Torrid
══════════════════════════════════════════════════ */

/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --black:    #050A1A;
  --dark:     #091428;
  --mid:      #0E2040;
  --card-bg:  #0C1C38;
  --cyan:     #00D4FF;
  --pink:     #FF6B9D;
  --red:      #FF2D55;
  --lavender: #C8B8FF;
  --white:    #FFFFFF;
  --off-white:#EEF4FF;
  --muted:    #7A95C0;
  --border:   rgba(0,212,255,0.12);

  /* Typography */
  --f-display: 'Bebas Neue', sans-serif;
  --f-serif:   'Playfair Display', serif;
  --f-body:    'DM Sans', sans-serif;

  /* Rainbow */
  --rainbow: linear-gradient(90deg,
    #ff0080, #ff4d00, #ffcc00, #00ff88,
    #00d4ff, #a855f7, #ff0080);
  --rainbow-border: linear-gradient(135deg,
    #ff0080, #ff4d00, #ffcc00, #00ff88,
    #00d4ff, #a855f7, #ff0080);

  /* Misc */
  --radius:    14px;
  --transition: 0.3s ease;
}

/* ── RAINBOW ANIMATIONS ── */
@keyframes rainbow-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes rainbow-border-spin {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}
@keyframes rainbow-glow-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%       { opacity: 0.85; transform: scale(1.08); }
}

/* Rainbow shimmer text utility */
.rainbow-text {
  background: var(--rainbow);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbow-shift 4s ease infinite;
}

/* Rainbow underline accent */
.rainbow-underline {
  position: relative;
  display: inline-block;
}
.rainbow-underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 4px;
  border-radius: 2px;
  background: var(--rainbow);
  background-size: 300% 300%;
  animation: rainbow-shift 3s ease infinite;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── SHARED TYPOGRAPHY ── */
.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

.eyebrow--pink { color: var(--pink); }

/* ── SHARED BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cyan);
  color: var(--black);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,212,255,0.25);
}

.btn-primary--lavender {
  background: var(--lavender);
}

.btn-primary--lavender:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(200,184,255,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 4px;
  transition: all var(--transition);
  margin-top: 8px;
}

.btn-outline:hover {
  border-color: var(--lavender);
  color: var(--lavender);
  transform: translateY(-2px);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(5,10,26,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.nav.scrolled {
  background: rgba(5,10,26,0.97);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 46px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 38px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--white); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  padding: 10px 28px 24px;
  border-top: 1px solid var(--border);
  background: rgba(5,10,26,0.97);
}

.nav-drawer.open { display: flex; }

.nav-drawer a {
  padding: 13px 0;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.nav-drawer a:hover { color: var(--white); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

/* Floating ambient orbs */
.hero-orbs { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.orb-1 {
  width: 700px; height: 700px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(0,160,255,0.35) 0%, transparent 65%);
  animation: drift1 14s ease-in-out infinite alternate;
}

.orb-2 {
  width: 550px; height: 550px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(80,140,255,0.28) 0%, transparent 65%);
  animation: drift2 18s ease-in-out infinite alternate;
}

.orb-3 {
  width: 350px; height: 350px;
  top: 50%; left: 55%;
  background: radial-gradient(circle, rgba(0,212,255,0.22) 0%, transparent 65%);
  animation: drift1 22s ease-in-out infinite alternate-reverse;
}

/* Rainbow splash orb */
.orb-4 {
  width: 500px; height: 500px;
  top: 20%; left: 30%;
  background: conic-gradient(
    from 0deg,
    rgba(255,0,128,0.18),
    rgba(255,77,0,0.15),
    rgba(255,204,0,0.15),
    rgba(0,255,136,0.15),
    rgba(0,212,255,0.18),
    rgba(168,85,247,0.18),
    rgba(255,0,128,0.18)
  );
  filter: blur(70px);
  animation: rainbow-border-spin 8s linear infinite, drift2 16s ease-in-out infinite alternate;
  animation: drift2 16s ease-in-out infinite alternate, rainbow-glow-pulse 5s ease-in-out infinite;
}

@keyframes drift1 {
  from { transform: translate(0, 0); }
  to   { transform: translate(40px, 30px); }
}
@keyframes drift2 {
  from { transform: translate(0, 0); }
  to   { transform: translate(-30px, -40px); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 28px 80px;
  gap: 28px;
}

.hero-logo-wrap {
  position: relative;
  display: inline-block;
}

/* Glow halo */
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse,
    rgba(0,212,255,0.28) 0%,
    rgba(80,140,255,0.28) 40%,
    transparent 68%
  );
  border-radius: 50%;
  filter: blur(24px);
  z-index: -1;
  pointer-events: none;
}

.hero-logo {
  height: clamp(140px, 22vw, 240px);
  width: auto;
  filter:
    drop-shadow(0 0 28px rgba(0,212,255,0.35))
    drop-shadow(0 0 60px rgba(200,184,255,0.2));
}

.hero-tagline {
  font-family: var(--f-serif);
  font-size: clamp(1rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: var(--lavender);
  letter-spacing: 0.04em;
  max-width: 480px;
  line-height: 1.5;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 1rem;
  animation: bounce 2.2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ══════════════════════════════
   MARQUEE
══════════════════════════════ */
.marquee-bar {
  overflow: hidden;
  white-space: nowrap;
  padding: 13px 0;
}

.marquee-bar--dark {
  background: var(--dark);
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-bar--accent {
  background: var(--rainbow);
  background-size: 300% 300%;
  animation: rainbow-shift 5s ease infinite;
}

.marquee-track {
  display: inline-flex;
  gap: 36px;
  animation: scroll-l 30s linear infinite;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-bar--accent .marquee-track { color: var(--black); }

.marquee-track--rev { animation-direction: reverse; }

.marquee-track .sep {
  color: var(--cyan);
  opacity: 0.6;
}

.marquee-bar--accent .marquee-track .sep {
  color: rgba(0,0,0,0.4);
}

@keyframes scroll-l {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════
   SHOP BY CATEGORY
══════════════════════════════ */
.shop {
  background: var(--dark);
  padding: 90px 28px;
}

.shop-header {
  text-align: center;
  margin-bottom: 52px;
}

.shop-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 400px 280px;
  gap: 14px;
}

/* Layout overrides */
.shop-card--tall { grid-row: span 2; }
.shop-card--wide { grid-column: span 2; }

/* Base card */
.shop-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--card-bg);
  border: 2px solid transparent;
  transition: border-color 0.4s ease, transform 0.3s ease, box-shadow 0.4s ease;
}

.shop-card:hover {
  border-color: transparent;
  outline: 3px solid transparent;
  box-shadow:
    0 0 0 3px transparent,
    0 20px 60px rgba(0,0,0,0.5);
  background:
    linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
    var(--rainbow-border) border-box;
  background-size: auto, 300% 300%;
  animation: rainbow-shift 3s ease infinite;
  border: 3px solid transparent;
}

.shop-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.shop-card:hover img {
  transform: scale(1.06);
}

/* Gradient overlay */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.25) 45%,
    transparent 80%
  );
  display: flex;
  align-items: flex-end;
  padding: 28px 26px;
  transition: background var(--transition);
}

.shop-card:hover .card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.35) 55%,
    transparent 80%
  );
}

.card-text h3 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 5px;
}

.card-text p {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.shop-card:hover .card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════
   OUR STORY
══════════════════════════════ */
.story {
  background: var(--black);
  padding: 100px 28px;
  position: relative;
  overflow: hidden;
}

/* Background accent */
.story::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(0,140,255,0.10) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 60px;
  align-items: center;
}

.story-title {
  margin-bottom: 28px;
}

.story-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 18px;
}

.story-text p em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--lavender);
  font-size: 1.08em;
}

/* Stats */
.story-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.stat-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--mid);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform var(--transition);
}

.stat-ring:hover { transform: scale(1.06); }

.stat-ring--cyan    { border-color: rgba(0,212,255,0.35); }
.stat-ring--lavender{ border-color: rgba(200,184,255,0.35); margin-left: 24px; }

.stat-num {
  font-family: var(--f-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--cyan);
}

.stat-ring--lavender .stat-num { color: var(--lavender); }

.stat-icon {
  font-size: 2rem;
  color: var(--lavender);
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 0 10px;
}

/* ══════════════════════════════
   SOCIAL TEASER
══════════════════════════════ */
.social-teaser {
  position: relative;
  background: linear-gradient(160deg, var(--mid) 0%, #1A0E2A 100%);
  padding: 90px 28px;
  text-align: center;
  overflow: hidden;
}

.social-teaser-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(200,184,255,0.13) 0%, transparent 65%);
  pointer-events: none;
}

.social-teaser-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.social-big-icon {
  font-size: 3.8rem;
  color: var(--lavender);
  filter: drop-shadow(0 0 20px rgba(200,184,255,0.4));
}

.social-teaser .section-title { margin-bottom: 0; }

.social-teaser p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 440px;
}

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact {
  background: var(--dark);
  padding: 100px 28px;
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner .section-title { margin-bottom: 12px; }

.contact-sub {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 44px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--mid);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  background: rgba(0,212,255,0.04);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form .btn-primary {
  align-self: center;
  margin-top: 6px;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 64px 28px 40px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  height: 58px;
  width: auto;
}

.footer-tagline {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 28px;
}

.footer-links a {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--mid);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--muted);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--cyan);
  color: var(--black);
  border-color: var(--cyan);
  transform: translateY(-3px);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(136,136,160,0.5);
  margin-top: 8px;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

/* Tablet */
@media (max-width: 960px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .shop-card--tall {
    grid-row: span 1;
    aspect-ratio: 3/4;
  }

  .shop-card--wide {
    grid-column: span 2;
    aspect-ratio: 16/8;
  }

  .shop-card {
    aspect-ratio: 3/4;
  }

  .story-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .story-text p { max-width: 100%; }

  .story-stats {
    flex-direction: row;
    justify-content: center;
  }

  .stat-ring--lavender { margin-left: 0; }
}

/* Mobile */
@media (max-width: 600px) {
  .nav-links   { display: none; }
  .nav-hamburger { display: flex; }

  .shop-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .shop-card,
  .shop-card--tall,
  .shop-card--wide {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4/5;
  }

  .form-row { grid-template-columns: 1fr; }

  .hero-logo { height: 130px; }

  .hero-tagline { font-size: 1rem; }
}
