/* ============================================
   WORK THE WOO WOO — Main Stylesheet
   workthewoowoo.com
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Poppins:wght@300;400;500;600&display=swap');

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

:root {
  --plum:    #3A123D;
  --magenta: #D84FA3;
  --orchid:  #B56CFF;
  --peach:   #F7A77C;
  --gold:    #F4C86A;
  --cream:   #FFF7EF;
  --plum-alpha: rgba(58, 18, 61, 0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--plum);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
}

img { max-width: 100%; display: block; }

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

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(255, 247, 239, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 79, 163, 0.15);
}

.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: 0.02em;
}

.nav__logo span { color: var(--magenta); }

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--plum);
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--magenta); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7rem 2rem 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/cover.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,247,239,0.35) 0%,
    rgba(255,247,239,0.15) 40%,
    rgba(255,247,239,0.6) 80%,
    rgba(255,247,239,1) 100%
  );
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(181,108,255,0.2) 0%, transparent 70%);
  top: -120px; right: -80px;
  animation: woo-drift1 9s ease-in-out infinite;
}

.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(216,79,163,0.16) 0%, transparent 70%);
  bottom: -40px; left: -80px;
  animation: woo-drift2 11s ease-in-out infinite;
}

.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(244,200,106,0.22) 0%, transparent 70%);
  bottom: 120px; right: 14%;
  animation: woo-drift1 13s ease-in-out infinite reverse;
}

@keyframes woo-drift1 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-28px, 18px); }
}

@keyframes woo-drift2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(18px, -22px); }
}

.sparkle {
  position: absolute;
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  animation: woo-twinkle 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes woo-twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.8) rotate(0deg); }
  50%       { opacity: 1;    transform: scale(1.25) rotate(180deg); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  animation: woo-fadeup 1s ease both;
}

@keyframes woo-fadeup {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1.2rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(216,79,163,0.35);
  border-radius: 100px;
  background: rgba(255,247,239,0.7);
}

.hero__h1 {
  font-size: clamp(3.8rem, 10vw, 7.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, var(--plum) 0%, var(--magenta) 45%, var(--orchid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
  color: var(--plum);
  opacity: 0.8;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.hero__sub {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 2rem;
}

.hero__desc {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(58,18,61,0.72);
  max-width: 540px;
  margin: 0 auto 2.8rem;
  font-weight: 300;
}

/* ---------- BUTTONS ---------- */
.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--magenta), var(--orchid));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(216,79,163,0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(216,79,163,0.48);
}

.btn--secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: rgba(255,247,239,0.75);
  color: var(--plum);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1.5px solid rgba(58,18,61,0.28);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn--secondary:hover {
  border-color: var(--magenta);
  background: rgba(216,79,163,0.06);
}

/* ---------- DIVIDER ---------- */
.star-divider {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.7;
  letter-spacing: 0.6rem;
}

/* ---------- SECTIONS SHARED ---------- */
.section {
  padding: 5.5rem 2rem;
  position: relative;
}

.container {
  max-width: 940px;
  margin: 0 auto;
}

.section__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--magenta);
  text-align: center;
  margin-bottom: 0.7rem;
}

.section__h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  color: var(--plum);
  margin-bottom: 1.4rem;
}

.section__body {
  font-size: 1rem;
  line-height: 1.88;
  color: rgba(58,18,61,0.7);
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  font-weight: 300;
}

.section__body + .section__body {
  margin-top: 1rem;
}

/* ---------- WHAT IS SECTION ---------- */
.what-is {
  background: linear-gradient(160deg, rgba(181,108,255,0.06) 0%, rgba(216,79,163,0.07) 100%);
  border-top: 1px solid rgba(216,79,163,0.12);
  border-bottom: 1px solid rgba(216,79,163,0.12);
}

.quote-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 2.2rem 2.8rem;
  margin: 2.8rem auto 0;
  max-width: 640px;
  border: 1px solid rgba(216,79,163,0.16);
  box-shadow: 0 12px 55px rgba(216,79,163,0.09);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.22rem;
  font-style: italic;
  font-weight: 400;
  color: var(--plum);
  line-height: 1.75;
  text-align: center;
}

.quote-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem; left: 1.5rem;
  font-size: 5rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--magenta);
  opacity: 0.18;
  line-height: 1;
}

.quote-card__byline {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.72rem;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
}

/* ---------- FINDS GRID ---------- */
.finds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3.2rem;
}

.find-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(216,79,163,0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.find-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--magenta), var(--orchid));
  opacity: 0;
  transition: opacity 0.3s;
}

.find-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(216,79,163,0.13);
}

.find-card:hover::before { opacity: 1; }

.find-card__emoji {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  display: block;
}

.find-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 0.5rem;
}

.find-card__body {
  font-size: 0.87rem;
  color: rgba(58,18,61,0.6);
  line-height: 1.68;
}

/* ---------- COMING SOON ---------- */
.coming-soon {
  background: linear-gradient(145deg, #3A123D 0%, #5c1a65 50%, #3A123D 100%);
  text-align: center;
}

.coming-soon .section__label { color: var(--gold); }

.coming-soon .section__h2 {
  color: #fff;
}

.coming-soon .section__body {
  color: rgba(255,255,255,0.72);
}

.social-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.8rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.5rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.2s, border-color 0.2s;
}

.social-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.55);
}

.social-btn svg {
  width: 16px; height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ---------- EMAIL SECTION ---------- */
.email-section {
  background: var(--cream);
  text-align: center;
}

.email-box {
  background: #fff;
  border-radius: 26px;
  padding: 3rem 2.8rem;
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid rgba(216,79,163,0.13);
  box-shadow: 0 22px 65px rgba(216,79,163,0.09);
}

.email-badge {
  display: inline-block;
  background: rgba(244,200,106,0.22);
  color: #7a4f00;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

.email-box .section__h2 {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  margin-bottom: 0.8rem;
}

.email-box .section__body {
  margin-bottom: 2rem;
}

.form-field {
  width: 100%;
  padding: 0.9rem 1.3rem;
  border: 1.5px solid rgba(216,79,163,0.2);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--plum);
  background: rgba(255,247,239,0.6);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  display: block;
  margin-bottom: 0.75rem;
}

.form-field::placeholder { color: rgba(58,18,61,0.35); }

.form-field:focus {
  border-color: var(--magenta);
  background: #fff;
}

.btn--woo {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--magenta), var(--orchid));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(216,79,163,0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--woo:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(216,79,163,0.48);
}

.form-fine {
  font-size: 0.71rem;
  color: rgba(58,18,61,0.42);
  margin-top: 1rem;
  line-height: 1.65;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--plum);
  text-align: center;
  padding: 2.8rem 2rem;
}

.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
}

.footer__logo span { color: var(--peach); }

.footer__tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.58);
  margin-bottom: 1.2rem;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer__links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--peach); }

.footer__copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.9;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .nav { padding: 0.85rem 1.2rem; }
  .nav__links { gap: 1.2rem; }
  .nav__links a { font-size: 0.68rem; }

  .hero { padding: 5.5rem 1.25rem 3rem; }

  .section { padding: 4rem 1.25rem; }

  .finds-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .btn-group { flex-direction: column; align-items: center; }

  .email-box { padding: 2rem 1.25rem; }

  .quote-card { padding: 1.8rem 1.5rem; }
}

@media (max-width: 480px) {
  .nav__logo { font-size: 1rem; }
  .nav__links { gap: 0.8rem; }
  .finds-grid { grid-template-columns: 1fr; }
  .social-row { flex-direction: column; align-items: center; }
}


/* ---------- 2026 LANDING PAGE UPDATES ---------- */
.nav {
  padding: 0.55rem clamp(1rem, 3vw, 2.5rem);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  max-width: 300px;
}

.nav__logo img {
  display: block;
  width: min(260px, 48vw);
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.hero {
  justify-content: flex-start;
  padding-left: clamp(1.5rem, 7vw, 7rem);
  padding-right: clamp(1.5rem, 5vw, 4rem);
}

.hero__bg {
  background-image: url('../images/hero-bg.jpg');
  background-position: center center;
}

.hero__overlay {
  background:
    linear-gradient(90deg,
      rgba(255,247,239,0.96) 0%,
      rgba(255,247,239,0.80) 34%,
      rgba(255,247,239,0.28) 60%,
      rgba(255,247,239,0.08) 100%),
    linear-gradient(to bottom,
      rgba(255,247,239,0.25) 0%,
      rgba(255,247,239,0.08) 50%,
      rgba(255,247,239,0.90) 100%);
}

.hero__inner {
  text-align: left;
  max-width: 585px;
  margin: 0;
}

.hero__desc {
  margin-left: 0;
  margin-right: 0;
}

.btn-group {
  justify-content: flex-start;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-field.has-error {
  border-color: #a31d5c;
  background: rgba(216,79,163,0.08);
}

.btn--woo[disabled] {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

@media (max-width: 768px) {
  .nav__logo img {
    width: min(220px, 58vw);
    max-height: 46px;
  }

  .hero {
    min-height: 92vh;
    justify-content: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero__bg {
    background-position: 68% center;
  }

  .hero__overlay {
    background:
      linear-gradient(to bottom,
        rgba(255,247,239,0.72) 0%,
        rgba(255,247,239,0.62) 42%,
        rgba(255,247,239,0.94) 100%);
  }

  .hero__inner,
  .hero__desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-group {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .nav__logo img {
    width: min(190px, 58vw);
  }

  .hero__h1 {
    font-size: clamp(3.2rem, 18vw, 4.7rem);
  }
}


/* ---------- MOBILE HAMBURGER NAV UPDATE ---------- */
.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 79, 163, 0.25);
  border-radius: 999px;
  background: rgba(255, 247, 239, 0.92);
  color: var(--plum);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav__toggle:hover,
.nav__toggle:focus-visible {
  background: #fff;
  border-color: rgba(216, 79, 163, 0.45);
  box-shadow: 0 8px 22px rgba(216,79,163,0.16);
  outline: none;
}

.nav__toggle-line {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--magenta), var(--orchid));
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.nav__toggle.is-active .nav__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-active .nav__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav {
    padding: 0.55rem 1rem;
    min-height: 68px;
  }

  .nav__logo {
    max-width: calc(100% - 58px);
  }

  .nav__logo img {
    width: min(230px, 62vw);
    max-height: 48px;
  }

  .nav__toggle {
    display: inline-flex;
    flex: 0 0 44px;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 8px);
    left: 1rem;
    right: 1rem;
    z-index: 101;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    background: rgba(255, 247, 239, 0.98);
    border: 1px solid rgba(216, 79, 163, 0.18);
    border-radius: 18px;
    box-shadow: 0 20px 55px rgba(58,18,61,0.16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease, padding 0.22s ease;
  }

  .nav__links.is-open {
    max-height: 260px;
    padding: 0.55rem;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__links li {
    width: 100%;
  }

  .nav__links a {
    display: block;
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 13px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-align: center;
  }

  .nav__links a:hover,
  .nav__links a:focus-visible {
    background: rgba(216,79,163,0.08);
    color: var(--magenta);
    outline: none;
  }
}

@media (max-width: 480px) {
  .nav__logo img {
    width: min(210px, 60vw);
    max-height: 44px;
  }

  .nav__toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}
