/* ===========================
   HAIRROAR - Full Redesign
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Boogaloo&family=Nunito:wght@400;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --pink:       #ff4fa3;
  --pink-light: #ffe0f0;
  --pink-dark:  #d63384;
  --teal:       #00c9a7;
  --teal-dark:  #00a589;
  --yellow:     #ffe234;
  --cream:      #fff9f5;
  --dark:       #2b1d2e;
  --mid:        #6b4f72;
  --white:      #ffffff;
  --radius:     16px;
  --shadow:     0 8px 32px rgba(43,29,46,0.12);
  --shadow-hover: 0 16px 48px rgba(43,29,46,0.2);
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Dot Pattern Background ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,79,163,0.06) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--pink-light);
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Boogaloo', cursive;
  font-size: 1.8rem;
  color: var(--pink);
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--pink); }
.nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 800 !important;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--pink-dark) !important;
  transform: translateY(-2px);
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #ff4fa3 0%, #ff85c8 50%, #ffb3df 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '🦖';
  font-size: 18rem;
  position: absolute;
  right: -2rem;
  top: -2rem;
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}
.hero::after {
  content: '🦕';
  font-size: 12rem;
  position: absolute;
  left: -1rem;
  bottom: -1rem;
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
  animation: pop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
.hero h1 {
  font-family: 'Boogaloo', cursive;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  line-height: 1.05;
  text-shadow: 4px 4px 0 rgba(0,0,0,0.1);
  animation: slideUp 0.6s 0.1s ease both;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.92);
  margin: 1rem auto 2rem;
  max-width: 520px;
  font-weight: 600;
  animation: slideUp 0.6s 0.2s ease both;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideUp 0.6s 0.3s ease both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.btn-primary { background: var(--white); color: var(--pink); }
.btn-secondary {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); }
.btn-pink { background: var(--pink); color: var(--white); }
.btn-pink:hover { background: var(--pink-dark); }

/* ── Trust Strip ── */
.trust-strip {
  position: relative;
  z-index: 1;
  background: var(--dark);
  color: var(--white);
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 700;
}
.trust-strip span { display: flex; align-items: center; gap: 0.5rem; }

/* ── Section Base ── */
.section-wrap {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Boogaloo', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.section-sub {
  color: var(--mid);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 3rem;
}
.text-center { text-align: center; }

/* ── Collections ── */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-hover);
}
.card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.card-body { padding: 1.2rem 1.2rem 1.5rem; }
.card-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.3rem;
}
.card-body h3 {
  font-family: 'Boogaloo', cursive;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.card-body p {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.card-body .btn {
  width: 100%;
  justify-content: center;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

/* ── How It Works ── */
.how-section { background: var(--dark); }
.how-section .section-title { color: var(--white); }
.how-section .section-label { color: var(--teal); }
.how-section .section-sub { color: rgba(255,255,255,0.6); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}
.step:hover { background: rgba(255,255,255,0.1); }
.step-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.step-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.step h3 {
  font-family: 'Boogaloo', cursive;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── About ── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-emoji-block {
  background: linear-gradient(135deg, var(--pink-light), #ffd6ec);
  border-radius: 24px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: var(--shadow);
}
.about-text p {
  color: var(--mid);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.pill {
  background: var(--pink-light);
  color: var(--pink-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
}

/* ── Newsletter ── */
.newsletter-section {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  text-align: center;
}
.newsletter-section .section-title { color: var(--white); }
.newsletter-section .section-label { color: rgba(255,255,255,0.7); }
.newsletter-section .section-sub { color: rgba(255,255,255,0.8); max-width: 420px; }
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.2rem;
  border: none;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  color: var(--dark);
}
.newsletter-form input::placeholder { color: #aaa; }

/* ── Social ── */
.social-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.social-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  min-width: 200px;
}
.social-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.social-card .icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.social-card h3 {
  font-family: 'Boogaloo', cursive;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.social-card p { font-size: 0.85rem; color: var(--mid); margin-bottom: 1rem; }

/* ── Footer ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 2.5rem 2rem;
  text-align: center;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}
.footer-logo {
  font-family: 'Boogaloo', cursive;
  font-size: 2rem;
  color: var(--pink);
  margin-bottom: 0.5rem;
}
footer a { color: var(--pink); font-weight: 700; }
footer a:hover { color: var(--pink-light); }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 0.75rem 0;
}

/* ── Animations ── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pop {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  nav { padding: 0.8rem 1.2rem; }
  .nav-links a:not(.nav-cta) { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-emoji-block { max-width: 240px; margin: 0 auto; }
  .about-text .section-title,
  .about-text .section-label { text-align: center; }
  .about-pills { justify-content: center; }
  .trust-strip { gap: 1rem; font-size: 0.8rem; }
}
@media (max-width: 480px) {
  .hero { padding: 3.5rem 1.2rem 3rem; }
  .section-wrap { padding: 4rem 1.2rem; }
}
