body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom right, #ffd6eb, #e6ccff);
  margin: 0;
  padding: 0;
  text-align: center;
  color: #4b006e;
}
header {
  padding: 2rem 1rem;
}
.logo {
  width: 120px;
}
h1 {
  color: #d63384;
  margin: 0.5rem 0;
}
.services {
  font-weight: bold;
  color: #7a1fa2;
}
.whatsapp {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  margin-top: 10px;
}
.gallery {
  background-color: white;
  padding: 2rem;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.photo-grid img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.3s;
}
.photo-grid img:hover {
  transform: scale(1.05);
}
footer {
  background-color: #f8e6ff;
  padding: 1rem;
  font-size: 0.9rem;
}
.social a {
  margin: 0 10px;
  color: #d63384;
  text-decoration: none;
}
.social a:hover {
  text-decoration: underline;
}


/* --- Watermark de mini logos en todo el fondo --- */
body { position: relative; }
body::before{
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("assets/logo-dra-pink.png");
  background-repeat: repeat;
  background-size: 80px;
  opacity: .03;            /* ajusta intensidad del patrón */
  pointer-events: none;
  z-index: 0;
}
header, main, footer { position: relative; z-index: 1; }
/* Ajustes mínimos para buena legibilidad */


/* ===== Fondo animado con animalitos (patrón) ===== */
body { position: relative; }
body::before{
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    url("assets/patterns/cat.svg"),
    url("assets/patterns/dog.svg"),
    url("assets/patterns/paw.svg");
  background-repeat: repeat, repeat, repeat;
  background-size: 120px, 100px, 80px;
  background-position: 0 0, 100px 80px, 50px 140px;
  opacity: .08;                 /* intensidad del patrón */
  animation: dpv-drift 60s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes dpv-drift {
  0%   { background-position:    0px   0px,   100px  80px,   50px 140px; }
  100% { background-position: -480px -360px,  -380px -260px, -420px -520px; }
}
header, main, footer, section { position: relative; z-index: 1; }

/* ===== Botón WhatsApp visible ===== */
.dpv-cta {
  background: #25D366;  /* WhatsApp green */
  color: #fff !important;
  border: none;
  box-shadow: 0 6px 16px rgba(37,211,102,.35);
}
.dpv-cta:hover { filter: brightness(0.95); transform: translateY(-1px); }
.dpv-cta:active { transform: translateY(0); }


/* ===== Fondo de huellitas espaciadas (solo paws, menos densidad) ===== */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("assets/patterns/paw.svg");
  background-repeat: repeat;
  /* Más separadas: tile grande y responsive */
  background-size: clamp(160px, 18vw, 260px);
  background-position: 0 0;
  opacity: .07;
  animation: dpv-drift 80s linear infinite; /* más lento */
  pointer-events: none;
  z-index: 0;
}


/* Ensure WhatsApp CTA color */
.dpv-cta { background: #25D366; color: #fff !important; border: none; box-shadow: 0 6px 16px rgba(37,211,102,.35); }
.dpv-cta:hover { filter: brightness(0.95); transform: translateY(-1px); }

@media (max-width: 520px){
  .dpv-grid { grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 10px; }
  .dpv-fig img { aspect-ratio: 3 / 4; }
}


/* Lighten full-page background */
body::after{
  content:"";
  position:fixed;
  inset:0;
  background: rgba(255,255,255,0.25); /* brighten overlay */
  pointer-events:none;
  z-index:0;
}
header, main, section, footer{ position: relative; z-index:1; }

/* Increase contrast for headings and taglines */
.dpv-title, h1{ text-shadow: 0 2px 6px rgba(0,0,0,.18); }
.dpv-sub{ text-shadow: 0 2px 6px rgba(0,0,0,.18); font-weight:500; }
