/* Happy Paws — simple light-pink theme with orange info boxes */
:root{
  --bg: #cdf6fd; /* light pink */
  --accent: #ffccf6; /* orange */
  --accent-dark: #45d076;
  --text: hsl(0, 0%, 0%);
  --muted: #000000;
  --card-radius: 12px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
}
.container{
  max-width:1000px;
  margin:0 auto;
  padding:1rem;
}
.site-header{
  padding:1.25rem 0 0.5rem;
  text-align:center;
}
.site-header h1{margin:0;font-size:1.6rem}
.tag{color:var(--muted);margin-top:0.25rem}
nav{margin-top:0.5rem}
nav a{margin:0 0.5rem;color:var(--text);text-decoration:none;font-weight:600}
.hero{
  padding:2.25rem 0;
  text-align:center;
}
.hero h2{margin:0 0 0.5rem;font-size:1.5rem}
.btn{
  display:inline-block;
  background:var(--accent-dark);
  color:white;
  padding:0.6rem 1rem;
  border-radius:8px;
  text-decoration:none;
  margin-top:0.75rem;
}

.services .grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1rem;
  margin-top:1rem;
}
.card{
  background:var(--accent);
  color:#fff;
  padding:1rem;
  border-radius:var(--card-radius);
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
}
.card h4{margin:0 0 0.5rem}
.card p{margin:0}

.pricing ul{list-style:none;padding:0;margin:0.5rem 0}
.pricing li{
  background:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  display:inline-block;
  padding:0.45rem 0.75rem;
  margin:0.25rem 0.5rem 0 0;
  border-radius:8px;
}

.about, .contact{margin-top:1rem}
.site-footer{margin-top:2rem;padding:1rem 0;text-align:center;color:var(--muted)}

/* Links inside orange boxes are emphasized */
.card a{
  color:rgba(255,255,255,0.95);
  font-weight:700;
  text-decoration:underline;
}

/* Responsive tweaks */
@media (max-width:520px){
  .site-header h1{font-size:1.25rem}
  .hero h2{font-size:1.15rem}
}

/* Image styles */
.hero-img{max-width:260px;display:block;margin:1rem auto;border-radius:12px;transform:rotate(-10deg);transform-origin:center}
.card .icon{width:56px;height:56px;display:block;margin:0 0 0.5rem}

/* Bio section uses black text per request */
.bio{color:#000}
.bio h3{margin-top:0}
