/* Beauty Box For Paws — Homepage base styles */

:root {
  --bbp-pink: #FF69B4;
  --bbp-teal: #4ECDC4;
  --bbp-gold: #FFD700;
  --bbp-dark: #2C3E50;
  --bbp-border: #E0E0E0;
  --bbp-radius: 15px;
  --bbp-max: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--bbp-dark);
  background: #fff;
  overflow-x: hidden;
}

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

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

.bb-container {
  max-width: var(--bbp-max);
  margin: 0 auto;
  padding: 0 20px;
}

.bb-section { padding: 70px 0; }

.bb-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bbp-pink);
  margin-bottom: 12px;
}

.bb-h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--bbp-dark);
  margin: 0 0 16px;
  line-height: 1.2;
}

.bb-subtext {
  font-size: 1.05rem;
  color: #6b7280;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.bb-text-center { text-align: center; }

/* Buttons */
.bb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s;
  font-family: inherit;
}

.bb-btn-primary {
  background: var(--bbp-pink);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255,105,180,.4);
}
.bb-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(255,105,180,.55); }

.bb-btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.bb-btn-outline:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }

.bb-link-colored {
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity .2s;
}
.bb-link-colored:hover { opacity: .75; }

/* Brand gradient wordmark */
.bb-brand-gradient {
  background: linear-gradient(90deg, var(--bbp-pink), var(--bbp-teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

@media (max-width: 768px) {
  .bb-h2 { font-size: 1.9rem; }
  .bb-section { padding: 50px 0; }
}
