/*
Theme Name: HerBeautyCare
Theme URI: https://herbeautycare.com
Author: HerBeautyCare
Description: Modern coming-soon landing page theme for HerBeautyCare - 100% original skincare & makeup, COD across Pakistan.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: herbeautycare
*/

:root {
  --ink: #2b1b2f;
  --rose: #c96f8f;
  --rose-deep: #a94f72;
  --blush: #f7dfe6;
  --cream: #fdf8f4;
  --gold: #c9a25e;
}

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

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  min-height: 100vh;
}

/* animated soft gradient backdrop */
.bg {
  position: fixed; inset: 0; z-index: -2;
  background: linear-gradient(120deg, #fdf8f4, #f7dfe6, #fdeee6, #f3e3ef);
  background-size: 300% 300%;
  animation: drift 16s ease infinite;
}
@keyframes drift {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.blob {
  position: fixed; border-radius: 50%; filter: blur(70px); opacity: .45; z-index: -1;
  animation: float 12s ease-in-out infinite;
}
.blob.one { width: 420px; height: 420px; background: #f4c6d4; top: -120px; right: -80px; }
.blob.two { width: 340px; height: 340px; background: #f7e3c8; bottom: -100px; left: -90px; animation-delay: -6s; }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(35px) } }

.wrap {
  max-width: 1200px; margin: 0 auto; padding: 32px 24px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px;
  align-items: center; min-height: 100vh;
}

/* left column */
.logo {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 40px;
}
.logo .lg-side {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: .95rem; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
}
.logo .lg-main {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 700;
  font-size: 2.1rem; line-height: 1;
  color: var(--ink);
  padding: 0 2px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid #f0d5dd; border-radius: 999px;
  padding: 8px 18px; font-size: .78rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--rose-deep);
  box-shadow: 0 4px 18px rgba(201,111,143,.15);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--rose);
  animation: pulse 1.6s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1; transform:scale(1)} 50%{opacity:.4; transform:scale(.7)} }

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.2vw, 4.3rem);
  line-height: 1.08; margin: 26px 0 20px; font-weight: 600;
}
h1 .accent {
  background: linear-gradient(90deg, var(--rose-deep), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
}

.sub {
  font-size: 1.05rem; line-height: 1.75; color: #6c5a6f; max-width: 520px;
}
.sub strong { color: var(--rose-deep); }

/* what's coming pills */
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 34px; }
.pill {
  background: #fff; border: 1px solid #f0d5dd; border-radius: 999px;
  padding: 9px 16px; font-size: .82rem; font-weight: 500; color: #5d4a60;
  box-shadow: 0 3px 12px rgba(201,111,143,.08);
}
.pill b { color: var(--rose-deep); font-weight: 600; }

/* countdown */
.count { display: flex; gap: 14px; margin-bottom: 36px; }
.unit {
  background: #fff; border-radius: 18px; padding: 14px 10px;
  min-width: 82px; text-align: center;
  box-shadow: 0 10px 30px rgba(169,79,114,.12);
  border: 1px solid #f6e4ea;
}
.unit .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 700; color: var(--rose-deep);
}
.unit .lbl { font-size: .68rem; letter-spacing: 1.6px; text-transform: uppercase; color: #9b8a9e; margin-top: 2px; }

/* actions */
.actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(90deg, var(--rose-deep), var(--rose));
  color: #fff; text-decoration: none; font-weight: 600; font-size: .95rem;
  padding: 15px 30px; border-radius: 999px;
  box-shadow: 0 12px 28px rgba(169,79,114,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(169,79,114,.45); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 1px solid #f0d5dd;
  display: grid; place-items: center; text-decoration: none;
  font-size: .78rem; font-weight: 700; color: var(--rose-deep);
  transition: transform .2s ease;
}
.socials a:hover { transform: translateY(-3px); background: var(--blush); }

/* right column - model photo */
.visual { position: relative; }
.photo-frame {
  position: relative;
  border-radius: 220px 220px 32px 32px; /* arch shape */
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #eec3d2, #d99cb4, #b76d92);
  box-shadow: 0 30px 70px rgba(120,60,90,.28);
  animation: rise 1.2s ease both;
}
@keyframes rise { from { opacity: 0; transform: translateY(40px) } to { opacity: 1; transform: none } }
.photo-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.02);
}
.ring {
  position: absolute; inset: -14px; border: 2px dashed rgba(169,79,114,.35);
  border-radius: 234px 234px 44px 44px; pointer-events: none;
}

/* floating badges over photo */
.badge {
  position: absolute; background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: 16px; padding: 12px 18px;
  font-size: .82rem; font-weight: 600; color: var(--ink);
  box-shadow: 0 12px 30px rgba(120,60,90,.22);
  display: flex; align-items: center; gap: 9px;
  animation: bob 5s ease-in-out infinite;
}
.badge .ico { font-size: 1.05rem; }
.badge.b1 { top: 12%; left: -34px; animation-delay: 0s; }
.badge.b2 { top: 46%; right: -30px; animation-delay: -1.8s; }
.badge.b3 { bottom: 8%; left: -20px; animation-delay: -3.4s; }
@keyframes bob { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-14px) } }

.footer-note {
  position: fixed; bottom: 14px; left: 0; right: 0;
  text-align: center; font-size: .74rem; color: #a893ab; letter-spacing: .4px;
}

@media (max-width: 900px) {
  .wrap { grid-template-columns: 1fr; gap: 40px; padding-top: 24px; min-height: unset; }
  .visual { order: -1; max-width: 420px; margin: 0 auto; width: 100%; }
  .badge.b1 { left: -8px; } .badge.b2 { right: -8px; } .badge.b3 { left: -4px; }
  .logo { margin-bottom: 18px; }
  .count { flex-wrap: wrap; }
  .footer-note { position: static; margin: 30px 0 16px; }
}
