/* ═══════════════════════════════════════════════
   VVK Takecare — Shared Base Styles
   Used by: index.html, legal.html
═══════════════════════════════════════════════ */

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

:root {
  --pink:  #c1367b;
  --cream: #f0e8df;
  --dark:  #2b2020;
  --black: #080808;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  color: var(--dark);
  overflow-x: hidden;
}

/* ─── FLOATING WHATSAPP ─────────────────────────── */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--pink);
  color: var(--white);
  text-decoration: none;
  padding: 18px 32px;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 24px rgba(193,54,123,.38);
  transition: transform .2s, box-shadow .2s;
}
.wa-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(193,54,123,.5); }
.wa-btn svg { width: 28px; height: 28px; flex-shrink: 0; }

/* ─── BRAND SPAN ─────────────────────────────────── */
.brand {
  color: var(--pink);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.18em;
}

/* ─── PINK LINK ──────────────────────────────────── */
.pink-link {
  color: var(--pink);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 2.1rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── SOCIAL ROW & ICONS ─────────────────────────── */
.social-row {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin: 28px 0;
}
.soc-icon {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.soc-icon svg { width: 50px; height: 50px; }

/* ─── CONTACT FOOTER ─────────────────────────────── */
.contact-footer {
  margin-top: 70px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,.1);
  padding-top: 28px;
}
.contact-footer p {
  font-size: 1rem;
  color: #777;
  line-height: 1.7;
}
.contact-footer p + p { margin-top: 6px; }
.contact-footer a {
  color: #777;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-footer a:hover { color: var(--pink); }

/* ═══════════════════════════════════════════════════
   MOBILE — max-width: 768px
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {

  .wa-btn {
    padding: 14px 18px;
    font-size: 0;
    gap: 0;
    bottom: 20px;
    right: 16px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    justify-content: center;
  }
  .wa-btn svg { width: 28px; height: 28px; }

  .social-row {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
  }
  .soc-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
  }
  .soc-icon svg { width: 28px; height: 28px; }

  .contact-footer { margin-top: 40px; }
  .contact-footer p { font-size: 0.85rem; }
}
