body {
  margin: 0;
  font-family: Rubik, sans-serif;
  background: #fff0f5;
  color: #333;
}


.site-header,
.nav-main,
.nav-links li a {
  font-family: 'Fredoka', sans-serif;
}


.site-header {
  background:#ffe6f0;
  padding: 1rem 0;
  text-align: center;
}

.nav-main {
  display: flex;
  justify-content: center;
  background: #36454f;
  color: #fff0f5;
  align-items: center;
  padding: .02rem 0; /* Increase vertical padding */
}

.nav-links {
  list-style: none;
      background:#36454f;
float:left;
  display: flex;
  gap: 2rem;
  margin: 0;
}

.nav-links li a {
    display: inline-block;
  text-decoration: none;
  font-weight: bold;
  color: #fff0f5;
}

.nav-links li a:hover {
  background: #fff0f5;
  color: #36454f;

}

.page-title {
  text-align: center;
  font-size: 2.5rem;
  color: #c6538c;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-family: 'Fredoka', sans-serif;
}

.cat-button-wrap {
  margin: 2rem auto;
  text-align: center;
}

.cat-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #ffe6f0;
  color: #36454f;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  position: relative;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  overflow: hidden;
  
}

.cat-button:hover {
  background-color: #ffe6f0;
  animation: wiggle 0.4s ease-in-out;
}

.cat-button .paw {
  font-size: 1.2rem;
  line-height: 1;
}

.cat-info * {
  margin-top: 0;
  margin-bottom: 0.2rem;
}

/* Optional: remove cat ears if not wanted */
.cat-button::before,
.cat-button::after {
  display: none;
}

/* Wiggle animation */
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(4deg); }
  50% { transform: rotate(-4deg); }
  75% { transform: rotate(2deg); }
}

@media (max-width: 600px) {
  .page-title {
    font-size: 2rem;
    margin-top: 1.5rem;
  }
}

.site-footer {
  background: #ffe6f0;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
}

.footer-links {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  margin: 0 0.5rem;
}
