* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(to bottom, #fff4fa, #ffe6f4);
  color: #5a4d57;
  overflow-x: hidden;
}

.floating-paws {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: radial-gradient(#ff9bc9 2px, transparent 2px);
  background-size: 60px 60px;
  animation: drift 30s linear infinite;
}

@keyframes drift {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-120px);
  }
}

header {
  padding: 2rem;
  min-height: 100vh;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

nav h1 {
  color: #ff6eb3;
  font-size: 2.2rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #7a5c72;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ff6eb3;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.hero-text {
  max-width: 800px;
  text-align: center;
}

.tag {
  color: #ff85bd;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero h2 {
  font-size: clamp(3rem, 7vw, 5rem);
  color: #ff6eb3;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.7;
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  padding: 1rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.primary {
  background: #ff82bb;
  color: white;
  box-shadow: 0 0 20px rgba(255,130,187,0.4);
}

.secondary {
  border: 2px solid #ff82bb;
  color: #ff6eb3;
}

.button:hover {
  transform: translateY(-3px) scale(1.03);
}

section {
  padding: 5rem 2rem;
}

section h3 {
  text-align: center;
  font-size: 2.5rem;
  color: #ff6eb3;
  margin-bottom: 2rem;
}

.card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(255,160,210,0.15);
  max-width: 1000px;
  margin: auto;
}

.card p,
.card li {
  line-height: 1.8;
  font-size: 1.05rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.price-card {
  background: rgba(255,255,255,0.75);
  padding: 2rem;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255,160,210,0.15);
  transition: 0.3s;
}

.price-card:hover {
  transform: translateY(-8px);
}

.price-card h4 {
  color: #ff6eb3;
  margin-bottom: 1rem;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: #ff85bd;
  margin-bottom: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  transition: 0.4s;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(255,160,210,0.15);
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.avatar-list p {
  line-height: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.socials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.socials a {
  text-decoration: none;
  color: #ff6eb3;
  font-weight: bold;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  border: none;
  padding: 1rem;
  border-radius: 20px;
  background: #fff;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form button {
  border: none;
  padding: 1rem;
  border-radius: 999px;
  background: #ff82bb;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: scale(1.03);
}

footer {
  padding: 2rem;
  text-align: center;
  color: #aa7f99;
}

@media (max-width: 768px) {

  nav {
    flex-direction: column;
  }

  .hero h2 {
    font-size: 3rem;
  }

}
