/* assets/css/style.css */

body { background:#fff; }

.topbar{
  background:#111;
}
.topbar-link{
  color:#fff; text-decoration:none; opacity:.85;
}
.topbar-link:hover{ opacity:1; text-decoration:underline; }

.brand-dot{
  display:inline-block;
  width:10px; height:10px;
  background:#111;
  border-radius:50%;
  margin-right:8px;
}

.hero-section{
  padding:48px 0;
  background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 60%);
}
.hero-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid #eee;
  font-weight:600;
}
.hero-title{ letter-spacing:-.5px; }

.hero-card{ border-radius:18px; overflow:hidden; background:#fff; }
.hero-img{ height:360px; object-fit:cover; }

.hero-stats{
  display:flex; gap:14px; flex-wrap:wrap;
}
.stat-item{
  background:#fff;
  border:1px solid #eee;
  border-radius:14px;
  padding:10px 14px;
  min-width:130px;
}
.stat-num{ font-weight:800; font-size:18px; }
.stat-text{ color:#666; font-size:13px; }

.bg-soft{ background:#f7f7f7; }

.cat-card{
  display:block;
  text-decoration:none;
  color:#111;
  background:#fff;
  border:1px solid #eee;
  border-radius:16px;
  padding:16px;
  transition: transform .2s ease, box-shadow .2s ease;
  height:100%;
}
.cat-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.cat-icon{
  width:42px; height:42px;
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background:#111; color:#fff;
  margin-bottom:10px;
}

.pet-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:18px;
  overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  height:100%;
}
.pet-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
}
.pet-img-wrap{
  position:relative;
  overflow:hidden;
  height:190px;
}
.pet-img{
  width:100%;
  height:190px;
  object-fit:cover;
  transition: transform .35s ease;
}
.pet-card:hover .pet-img{
  transform: scale(1.06);
}
.pet-tag{
  position:absolute;
  left:12px;
  top:12px;
  background:rgba(0,0,0,.75);
  color:#fff;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
}
.placeholder-img{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f1f1f1;
  color:#888;
}

.price{ font-weight:800; }

.feature-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:18px;
  padding:18px;
  height:100%;
}
.feature-icon{
  width:48px; height:48px;
  border-radius:14px;
  background:#111;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
  font-size:20px;
}

.footer{ background:#0f0f0f; color:#fff; }
.footer-link{ color:#cfcfcf; text-decoration:none; }
.footer-link:hover{ color:#fff; text-decoration:underline; }

.back-to-top{
  position:fixed;
  right:18px;
  bottom:18px;
  width:46px;
  height:46px;
  border:none;
  border-radius:14px;
  background:#111;
  color:#fff;
  display:none;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}

/* Reveal animation */
.reveal{
  opacity:0;
  transform: translateY(16px);
}
.reveal.show{
  opacity:1;
  transform: translateY(0);
  transition: all .55s ease;
}

/* Navbar small effect */
.navbar.scrolled{
  box-shadow:0 12px 30px rgba(0,0,0,.08) !important;
}
