/*
	Theme Name: Aurensia
	Theme URI: https://fw16.us
	Description: 
	Author: FW16 USA
	Author URI: https://fw16.us
	Version: 3.4.7
	Stable tag: 3.4.7
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --pink: #FF3CAC;
  --pink2: #FF80D0;
  --pink-pale: #FFF0F9;
  --pink-soft: #FFD6EF;
  --lilac: #C084FC;
  --lilac-pale: #F5F0FF;
  --cream: #FFF9F5;
  --nude: #F5E6DC;
  --peach: #FFCBA4;
  --mint: #A8F0E4;
  --text: #1A0A14;
  --muted: #A07090;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}


/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 48px;
  height: 96px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,249,245,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,60,172,0.12);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}
.logo sup { font-size: 11px; -webkit-text-fill-color: var(--pink); }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a { font-size: 13px; font-weight: 500; color: var(--pink); text-decoration: none; transition: color 0.2s; }
.nav-menu a:hover { color: var(--pink); }
.nav-btn {
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  color: white !important; border: none; padding: 10px 22px;
  border-radius: 30px; font-size: 13px; font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none; display: inline-block;
  box-shadow: 0 4px 20px rgba(255,60,172,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,60,172,0.45); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
/* Deco shapes */
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,128,208,0.18) 0%, transparent 70%);
  top: -100px; left: -200px;
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(192,132,252,0.16) 0%, transparent 70%);
  bottom: 0; left: 40%;
  border-radius: 50%;
  pointer-events: none;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 52px 60px 64px;
  position: relative; z-index: 2;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink-soft);
  color: var(--pink);
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; padding: 7px 16px;
  border-radius: 30px; margin-bottom: 28px;
  width: fit-content;
}
.hero-pill::before { content: '✦'; font-size: 10px; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(46px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-title .pink { color: var(--pink); }
.hero-title .italic { font-style: italic; font-weight: 400; color: var(--lilac); }

.hero-desc {
  font-size: 15px; color: var(--muted);
  line-height: 1.75; max-width: 420px;
  margin-bottom: 36px; font-weight: 400;
}

.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 48px; }
.btn-pink {
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  color: white; padding: 14px 32px;
  border-radius: 30px; font-size: 14px; font-weight: 600;
  text-decoration: none; display: inline-block;
  box-shadow: 0 6px 24px rgba(255,60,172,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-pink:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,60,172,0.5); }
.btn-outline {
  border: 1.5px solid rgba(255,60,172,0.3);
  color: var(--pink); padding: 13px 28px;
  border-radius: 30px; font-size: 14px; font-weight: 500;
  text-decoration: none; display: inline-block;
  transition: all 0.2s; background: transparent;
  font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover { background: var(--pink-soft); border-color: var(--pink); }

.hero-stats {
  display: flex; gap: 32px;
}
.h-stat { }
.h-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.h-stat-label { font-size: 11px; color: var(--muted); margin-top: 3px; }

/* HERO RIGHT - Image collage */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-mosaic {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}
.mosaic-img {
  overflow: hidden;
  position: relative;
}
.mosaic-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s ease;
  filter: saturate(1.05);
}
.mosaic-img:hover img { transform: scale(1.05); }
.mosaic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(26,10,20,0.4) 100%);
}
/* Big cell spans 2 rows */
.mosaic-img.tall { grid-row: span 2; }

/* FLOATING CARDS */
.float-card {
  position: absolute; z-index: 10;
  background: white;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 8px 40px rgba(255,60,172,0.2);
  display: flex; align-items: center; gap: 12px;
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.float-card.card1 { left: -24px; top: 38%; animation-delay: 0s; }
.float-card.card2 { right: 20px; bottom: 18%; animation-delay: 1.5s; }
.float-card.card3 { left: 20px; bottom: 8%; animation-delay: 0.8s; }
.fc-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 2px solid var(--pink-soft);
}
.fc-name { font-size: 12px; font-weight: 600; color: var(--text); }
.fc-sub { font-size: 10px; color: var(--muted); margin-top: 1px; }
.fc-badge {
  font-size: 9px; font-weight: 700; letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  color: white; padding: 3px 8px; border-radius: 20px;
  margin-top: 3px; display: inline-block;
}

/* ─── STORIES BAR ─── */
.stories-bar {
  background: white;
  border-bottom: 1px solid rgba(255,60,172,0.1);
  padding: 18px 64px;
  display: flex; gap: 28px; align-items: center;
  overflow-x: auto;
}
.stories-bar::-webkit-scrollbar { display: none; }
.story-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.story-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  padding: 2.5px;
  background: linear-gradient(135deg, var(--pink), var(--lilac), var(--pink2));
  flex-shrink: 0;
  transition: transform 0.2s;
}
.story-wrap:hover .story-circle { transform: scale(1.08); }
.story-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: top; border: 2.5px solid white; display: block; }
.story-name { font-size: 10px; font-weight: 500; color: var(--muted); text-align: center; white-space: nowrap; }
.stories-label { font-size: 11px; font-weight: 600; color: var(--pink); white-space: nowrap; border-right: 1px solid var(--pink-soft); padding-right: 28px; }

/* ─── SECTION TITLES ─── */
.eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--pink);
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.eyebrow::before { content: '✦'; }
.section-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900; line-height: 1.05; color: var(--text);
}
.section-h em { font-style: italic; font-weight: 400; color: var(--pink); }

/* ─── FEATURED INFLUENCERS ─── */
.featured-section {
  padding: 80px 64px;
  background: var(--cream);
}
.section-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px;
}
.see-all {
  font-size: 13px; font-weight: 600; color: var(--pink);
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(255,60,172,0.3); padding-bottom: 2px;
  transition: border-color 0.2s;
}
.see-all:hover { border-color: var(--pink); }

/* INFLUENCER CARDS */
.inf-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.inf-card {
  position: relative; border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/5;
  background: var(--nude);
}
.inf-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  filter: saturate(1.05) brightness(0.95);
}
.inf-card:hover img { transform: scale(1.08); }
.inf-card-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,10,20,0.9) 0%, rgba(26,10,20,0.1) 55%, transparent 100%);
}
.inf-card-top {
  position: absolute; top: 14px; right: 14px;
}
.inf-niche-pill {
  font-size: 9px; font-weight: 700; letter-spacing: 0.5px;
  background: rgba(255,255,255,0.9);
  color: var(--pink); padding: 4px 10px; border-radius: 20px;
  backdrop-filter: blur(10px);
}
.inf-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 16px;
}
.inf-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700; color: white;
  margin-bottom: 4px;
}
.inf-card-meta { display: flex; gap: 10px; align-items: center; }
.inf-card-followers { font-size: 11px; color: rgba(255,255,255,0.7); }
.inf-card-rate {
  font-size: 11px; font-weight: 700;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  color: white; padding: 3px 9px; border-radius: 20px;
}
.inf-card-hover {
  position: absolute; inset: 0;
  background: rgba(255,60,172,0.85);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; transition: opacity 0.3s;
}
.inf-card:hover .inf-card-hover { opacity: 1; }
.btn-card-hover {
  background: white; color: var(--pink);
  padding: 10px 22px; border-radius: 30px;
  font-size: 12px; font-weight: 700;
  text-decoration: none; font-family: 'DM Sans', sans-serif;
}
.inf-card-ig {
  font-size: 11px; color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* ─── REEL STRIP ─── */
.reel-section {
  background: white;
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,60,172,0.1);
  border-bottom: 1px solid rgba(255,60,172,0.1);
}
.reel-track {
  display: flex; gap: 12px;
  animation: scroll-reel 25s linear infinite;
  width: max-content;
  align-items: center;
}

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



.reel-thumb {
  width: 100px; height: 170px;
  border-radius: 14px;
  overflow: hidden; position: relative;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.reel-thumb:hover { transform: scale(1.05); }
.reel-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.reel-play-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,60,172,0.15);
}

/* ─── PINK MARQUEE ─── */
.marquee-strip {
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 18s linear infinite;
  width: max-content;
}
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.marquee-item {
  white-space: nowrap; padding: 0 28px;
  font-size: 13px; font-weight: 600; color: white;
  letter-spacing: 1.5px; text-transform: uppercase;
  display: flex; align-items: center; gap: 28px;
}
.marquee-star { opacity: 0.6; font-size: 9px; }

/* ─── HOW IT WORKS ─── */
.how-section {
  padding: 80px 64px;
  background: var(--pink-pale);
  position: relative; overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192,132,252,0.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.how-card {
  background: white;
  border-radius: 24px;
  padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.how-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(255,60,172,0.15); }
.how-num {
  font-family: 'Playfair Display', serif;
  font-size: 64px; font-weight: 900;
  line-height: 1;
  position: absolute; top: 16px; right: 20px;
  background: linear-gradient(135deg, var(--pink-soft), var(--lilac-pale));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.how-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.how-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--text);
  margin-bottom: 10px;
}
.how-text { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* ─── SPOTLIGHT SPLIT ─── */
.spotlight {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: white;
}
.spot-image { position: relative; overflow: hidden; }
.spot-image img {
  width: 100%; height: 800px;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.8s ease;
}
.spotlight:hover .spot-image img { transform: scale(1.04); }
.spot-badge {
  position: absolute; top: 24px; left: 24px;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  color: white; font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 30px;
  box-shadow: 0 4px 16px rgba(255,60,172,0.4);
}
.spot-content {
  padding: 64px 60px;
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--pink-pale) 100%);
}
.spot-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900; line-height: 0.95;
  color: var(--text); margin-bottom: 8px;
}
.spot-name .pink { color: var(--pink); }
.spot-niche { font-size: 12px; font-weight: 600; color: var(--lilac); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.spot-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 17px;
  color: var(--muted); line-height: 1.6;
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 3px solid var(--pink-soft);
}
.spot-metrics { display: flex; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.spot-metric { }
.spot-metric-val {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.spot-metric-label { font-size: 10px; color: var(--muted); margin-top: 3px; letter-spacing: 1px; text-transform: uppercase; }

/* ─── JOIN CTA ─── */
.join-section {
  padding: 80px 64px;
  background: var(--cream);
}
.join-inner {
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  border-radius: 32px;
  padding: 72px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.join-inner::before {
  content: '✦';
  position: absolute;
  font-size: 300px; color: rgba(255,255,255,0.06);
  top: -60px; right: 60px;
  font-family: 'Playfair Display', serif;
  pointer-events: none;
  line-height: 1;
}
.join-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900; color: white; line-height: 1;
  margin-bottom: 16px;
}
.join-title em { font-style: italic; font-weight: 400; }
.join-desc { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 32px; }
.btn-white {
  background: white;
  color: var(--pink); padding: 15px 36px;
  border-radius: 30px; font-size: 14px; font-weight: 700;
  text-decoration: none; display: inline-block;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: transform 0.2s; font-family: 'DM Sans', sans-serif;
}
.btn-white:hover { transform: translateY(-3px); }
.join-perks { display: flex; flex-direction: column; gap: 16px; }
.join-perk {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.12);
  border-radius: 16px; padding: 18px 20px;
  backdrop-filter: blur(10px);
}
.perk-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.perk-title { font-size: 13px; font-weight: 700; color: white; margin-bottom: 3px; }
.perk-text { font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* ─── FOOTER ─── */
footer {
  background: var(--text);
  padding: 56px 64px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.8; }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--pink); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--pink2); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.2); }

/* ─── ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  nav { padding: 0 24px; }
  .nav-menu a { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 50vw; }
  .hero-left { padding: 40px 24px; }
  .inf-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .spotlight { grid-template-columns: 1fr; }
  .join-inner { grid-template-columns: 1fr; padding: 48px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .featured-section, .how-section, .join-section { padding: 60px 24px; }
  .stories-bar { padding: 18px 24px; }
}