/* ==========================================================================
   Eyebrows & Nails Junction — stylesheet
   ========================================================================== */

:root {
  --purple: #784594;
  --pink: #e61783;
  --purple-dark: #5a3270;
  --pink-dark: #b91169;
  --ink: #2b1730;
  --ink-soft: #5a4d63;
  --bg: #ffffff;
  --bg-soft: #fdf3f9;
  --bg-soft-2: #f7effa;
  --border: #ecdff2;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(120, 69, 148, 0.12);
  --shadow-sm: 0 4px 14px rgba(120, 69, 148, 0.10);
  --font-body: 'Poppins', sans-serif;
  --font-head: 'Playfair Display', serif;
  --font-script: 'Dancing Script', cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.2;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 16px; color: var(--ink-soft); }

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

ul { list-style: none; margin: 0; padding: 0; }

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

.section-label {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--pink);
  margin-bottom: 4px;
  display: block;
}

.section-sub {
  max-width: 620px;
  margin-bottom: 40px;
}

/* Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline {
  border-color: var(--purple);
  color: var(--purple);
  background: transparent;
}
.btn-outline:hover { background: var(--purple); color: #fff; }

.btn-outline-light {
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover { background: #fff; color: var(--purple); }

.btn-lg { padding: 15px 34px; font-size: 1rem; }

/* Top bar
   ========================================================================== */
.topbar {
  background: var(--ink);
  color: #f3e9f6;
  font-size: 0.82rem;
}
.topbar-inner {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 8px 24px;
}
.topbar-item { color: #f3e9f6; }
.topbar a.topbar-item:hover { color: var(--pink); }

/* Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.brand-text em {
  font-style: normal;
  color: var(--pink);
}

.main-nav ul {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover { color: var(--pink); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--bg-soft) 0%, #fff 45%, var(--bg-soft-2) 100%);
  padding: 90px 0 70px;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(230,23,131,0.14), transparent 45%),
    radial-gradient(circle at 5% 85%, rgba(120,69,148,0.16), transparent 45%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.eyebrow-label {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--purple);
  margin-bottom: 6px;
}

.hero-sub {
  max-width: 520px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 26px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  font-weight: 500;
}
.stars { color: var(--pink); letter-spacing: 1px; }

.hero-media { display: flex; justify-content: center; }
.hero-logo-ring {
  width: min(360px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 14px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: var(--shadow);
}
.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;
}

/* About
   ========================================================================== */
.about { padding: 90px 0; background: #fff; }

.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-points {
  margin: 20px 0 26px;
  display: grid;
  gap: 10px;
}
.about-points li {
  color: var(--ink-soft);
  font-weight: 500;
}

/* Services
   ========================================================================== */
.services { padding: 90px 0; background: var(--bg-soft); }
.services .container { max-width: 1280px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

@media (min-width: 1000px) {
  .service-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
  .service-card { padding: 24px 18px; }
  .service-card h3 { font-size: 1.05rem; }
  .price-list li { font-size: 0.85rem; }
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-card h3 {
  color: var(--purple);
  margin-bottom: 14px;
  border-bottom: 2px solid var(--bg-soft-2);
  padding-bottom: 12px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  font-size: 0.95rem;
  color: var(--ink);
}
.price-list .price {
  color: var(--pink-dark);
  font-weight: 600;
  white-space: nowrap;
}

.service-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
}

.services-cta { text-align: center; margin-top: 44px; }

/* Why Us
   ========================================================================== */
.why-us { padding: 90px 0; background: #fff; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature {
  text-align: center;
  padding: 20px;
}
.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.feature h3 { font-size: 1.1rem; }
.feature p { font-size: 0.92rem; }

/* Location
   ========================================================================== */
.location { padding: 90px 0; background: var(--bg-soft-2); }

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.contact-list { margin: 18px 0 28px; display: grid; gap: 12px; }
.contact-list a:hover { color: var(--pink); }

.location-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.location-map {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Final CTA
   ========================================================================== */
.final-cta {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,0.9); max-width: 480px; margin-left: auto; margin-right: auto; }
.final-cta-inner .hero-actions { justify-content: center; }

/* Footer
   ========================================================================== */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--ink) 0%, #1c0e22 100%);
  color: #e7d9ec;
  padding: 64px 0 0;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--purple));
}
.site-footer::after {
  content: "";
  position: absolute;
  top: -120px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,23,131,0.16), transparent 70%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(230,23,131,0.5);
  box-shadow: 0 0 0 4px rgba(120,69,148,0.25);
}
.footer-brand-name {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 4px;
}
.footer-brand-loc { color: #cbb8d4; margin: 0 0 12px; font-size: 0.88rem; }

.footer-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-chips span {
  background: rgba(230,23,131,0.14);
  border: 1px solid rgba(230,23,131,0.35);
  color: #f3d4e6;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 50px;
}

.footer-links h4, .footer-contact h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-links ul { display: grid; gap: 12px; }
.footer-links a, .footer-contact a { color: #cbb8d4; font-size: 0.9rem; transition: color 0.2s ease; }
.footer-links a:hover, .footer-contact a:hover { color: var(--pink); }

.footer-links a { position: relative; }
.footer-links a::before {
  content: "→";
  display: inline-block;
  margin-right: 6px;
  color: var(--pink);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact-list { display: grid; gap: 12px; margin-bottom: 22px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #cbb8d4;
  font-size: 0.9rem;
  line-height: 1.4;
}
.footer-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(120,69,148,0.3);
  font-size: 0.85rem;
}

.footer-cta { font-size: 0.85rem; padding: 10px 22px; }

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 24px;
  font-size: 0.82rem;
  color: #a992b3;
  max-width: 1180px;
  margin: 0 auto;
}
.footer-heart { color: #a992b3; }

/* Floating book button (mobile) */
.floating-book {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 90;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-media { order: -1; }
  .hero-logo-ring { width: 220px; margin-bottom: 10px; }

  .about-inner { grid-template-columns: 1fr; }
  .about-media { order: -1; }

  .location-inner { grid-template-columns: 1fr; }
  .location-map { min-height: 280px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .topbar-inner { gap: 14px; font-size: 0.75rem; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(280px, 80vw);
    background: #fff;
    box-shadow: -6px 0 24px rgba(0,0,0,0.12);
    padding: 100px 30px 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 22px; }

  .nav-toggle { display: flex; }
  .header-actions .btn-primary { display: none; }

  .floating-book { display: inline-block; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { flex-direction: column; align-items: center; }
  .footer-chips { justify-content: center; }
  .footer-contact-list li { justify-content: center; }
  .footer-bottom { flex-direction: column; justify-content: center; text-align: center; }
  .location-actions { justify-content: center; }
}
