/* ==========================================================
   Gabinet Weterynaryjny Dębiecwet — style własne
   (Tailwind CSS ładowany osobno przez CDN w index.html)
   ========================================================== */

html {
  scroll-padding-top: 88px;
}

body {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Poppins', sans-serif;
}

.blob-shape {
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}

.paw-bg {
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.15) 1px, transparent 0);
  background-size: 24px 24px;
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(23, 108, 104, 0.3);
}

.fade-in {
  animation: fadeIn 0.8s ease-out both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.marquee-badge {
  animation: pulse-soft 2.5s ease-in-out infinite;
}
@keyframes pulse-soft {
  0%, 100% { box-shadow: 0 0 0 0 rgba(248, 132, 28, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(248, 132, 28, 0); }
}

input:focus, textarea:focus {
  outline: none;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #eefbfa; }
::-webkit-scrollbar-thumb { background: #71d8d0; border-radius: 8px; }
