@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&family=Baloo+2:wght@400;600;700&display=swap');

/* ========================= */
/* RESET */
/* ========================= */

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

/* ========================= */
/* BODY */
/* ========================= */

body {
  min-height: 100vh;

  overflow-x: hidden;

  font-family: 'Quicksand', sans-serif;

  color: #294440;

  background:
    radial-gradient(
      circle at top,
      #8ea59a 0%,
      #6f877d 45%,
      #5f756c 100%
    );
}

/* ========================= */
/* MAIN CONTAINERS */
/* ========================= */

.container,
.subpage-container,
.profile-page {
  width: 100%;

  min-height: 100vh;

  padding: 2.5rem 1rem 5rem;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ========================= */
/* HERO */
/* ========================= */

.hero {
  width: 100%;

  display: flex;
  justify-content: center;

  margin-bottom: 2rem;
}

.hero img {
  width: min(620px, 88%);

  height: auto;

  display: block;

  filter:
    drop-shadow(0 10px 20px rgba(0,0,0,0.16));
}

/* ========================= */
/* NAVIGATION */
/* ========================= */

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 0.9rem;

  margin-bottom: 1.5rem;
}

.nav-link {
  text-decoration: none;

  font-family: 'Baloo 2', cursive;

  font-size: 1.05rem;

  color: #294440;

  background:
    rgba(245,239,232,0.92);

  padding: 0.55rem 1.2rem;

  border-radius: 999px;

  box-shadow:
    0 4px 10px rgba(0,0,0,0.10);

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-link:hover {
  transform: translateY(-2px);

  background:
    #fff8f1;

  box-shadow:
    0 8px 16px rgba(0,0,0,0.14);
}

.nav-link.active {
  background:
    #d8ceb5;
}

/* ========================= */
/* HOMEPAGE NOTES */
/* ========================= */

.notes-grid {
  width: 100%;

  max-width: 520px;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 1.4rem;
}

.note {
  position: relative;

  aspect-ratio: 0.92 / 1;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  overflow: visible;

  border-radius: 2px;

  box-shadow:
    0 10px 24px rgba(0,0,0,0.14);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* NOTE COLORS */

.note1 {
  background-color: #efc7d3;

  transform: rotate(-2deg);
}

.note2 {
  background-color: #cfe0bc;

  transform: rotate(1.5deg);
}

.note3 {
  background-color: #efd8a7;

  transform: rotate(-1deg);
}

.note4 {
  background-color: #cadcf0;

  transform: rotate(2deg);
}

/* PAPER LIGHT */

.note::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      rgba(255,255,255,0.14),
      rgba(255,255,255,0.02)
    );

  pointer-events: none;
}

/* TAPE */

.tape {
  position: absolute;

  width: 68px;
  height: 16px;

  top: -8px;
  left: 50%;

  transform:
    translateX(-50%)
    rotate(-2deg);

  background:
    linear-gradient(
      rgba(255,255,255,0.35),
      rgba(255,255,255,0.08)
    ),
    #d8ceb5;

  opacity: 0.75;

  border-radius: 2px;

  box-shadow:
    0 1px 2px rgba(0,0,0,0.08);
}

/* NOTE TEXT */

.note span {
  position: relative;

  z-index: 2;

  font-family: 'Baloo 2', cursive;

  font-size: clamp(2rem, 3vw, 2.8rem);

  font-weight: 700;

  line-height: 0.95;

  text-align: center;

  color: #294440;
}

/* HOVER */

.note:hover {
  transform:
    translateY(-5px)
    rotate(0deg);

  box-shadow:
    0 16px 28px rgba(0,0,0,0.18);
}

/* ========================= */
/* PAGE HEADERS */
/* ========================= */

.sub-header,
.profile-header {
  text-align: center;

  margin-bottom: 2.2rem;
}

.sub-header h1,
.profile-header h1 {
  font-family: 'Baloo 2', cursive;

  font-size: clamp(2.7rem, 5vw, 4.2rem);

  line-height: 1;

  color: #f7f2e8;

  margin-bottom: 0.8rem;
}

.sub-header p,
.profile-header p {
  color: #e7dfcf;

  font-size: 1rem;
}

.back-button {
  display: inline-block;

  margin-bottom: 1.3rem;

  text-decoration: none;

  color: #f7f2e8;

  font-size: 0.95rem;

  letter-spacing: 1px;
}

/* ========================= */
/* CATEGORY GRID */
/* ========================= */

.category-grid {
  width: 100%;

  max-width: 850px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 2rem;
}

/* CATEGORY CARDS */

.category-card {
  position: relative;

  padding: 3rem 1.5rem;

  text-align: center;

  text-decoration: none;

  border-radius: 2px;

  box-shadow:
    0 10px 24px rgba(0,0,0,0.14);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.category-card:nth-child(1) {
  background: #f3d7df;
}

.category-card:nth-child(2) {
  background: #d8e4c8;
}

.category-card:nth-child(3) {
  background: #e7dcf4;
}

.category-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      rgba(255,255,255,0.14),
      rgba(255,255,255,0.02)
    );
}

.category-card:hover {
  transform:
    translateY(-6px)
    rotate(1deg);

  box-shadow:
    0 16px 28px rgba(0,0,0,0.18);
}

.category-card h2 {
  position: relative;

  z-index: 2;

  font-family: 'Baloo 2', cursive;

  font-size: 1.8rem;

  line-height: 1.1;

  color: #294440;

  margin-bottom: 0.8rem;
}

.category-card p {
  position: relative;

  z-index: 2;

  color: #5d6b67;

  font-size: 0.95rem;

  line-height: 1.5;
}

/* ========================= */
/* FILTERS */
/* ========================= */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 1rem;

  margin-bottom: 3rem;
}

.filter-button {
  border: none;

  background: #f4ede5;

  color: #294440;

  padding: 0.7rem 1.3rem;

  border-radius: 999px;

  font-family: inherit;

  font-size: 0.95rem;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.filter-button:hover {
  transform: translateY(-2px);

  background: #fff8f1;
}

.filter-button.active {
  background: #d8ceb5;
}

/* ========================= */
/* PROFILE GRID */
/* ========================= */

.profile-grid {
  width: 100%;
  
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(170px, 180px));

  justify-content: center;

  gap: 1.4rem;
}

/* PROFILE CARD */

.pet-card {
  position: relative;

  overflow: visible;

  background: #f5efe8;

  border-radius: 3px;

  box-shadow:
    0 6px 16px rgba(0,0,0,0.12);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pet-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 16px 28px rgba(0,0,0,0.18);
}

/* CARD TAPE */

.card-tape {
  position: absolute;

  width: 62px;
  height: 16px;

  top: -8px;
  left: 50%;

  transform:
    translateX(-50%)
    rotate(-2deg);

  background:
    linear-gradient(
      rgba(255,255,255,0.35),
      rgba(255,255,255,0.08)
    ),
    #d8ceb5;

  opacity: 0.72;

  z-index: 5;
}

/* IMAGE CONTAINER */

.pet-image-container {
  position: relative;

  height: 150px;

  padding: 12px;

  background:
    linear-gradient(
      135deg,
      #ebe5dc,
      #d8d0c6
    );

  display: flex;
  align-items: center;
  justify-content: center;
}

.pet-photo {
  max-width: 100%;
  max-height: 100%;

  width: auto;
  height: auto;

  object-fit: contain;

  display: block;

  background: #f8f5ef;

  padding: 6px;

  border-radius: 2px;

  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.06);
}

/* CARD INFO */

.pet-info {
  padding: 1rem;
}

.show-name {
  color: #294440;

  font-size: 1.2rem;

  line-height: 1.3;

  margin-bottom: 0.4rem;
}

.call-name {
  color: #7b746e;

  font-style: italic;

  margin-bottom: 1rem;

  font-size: 0.95rem;
}

.pet-detail {
  color: #5f5a56;

  line-height: 1.5;

  margin-bottom: 0.5rem;

  font-size: 0.92rem;
}

.pet-description {
  color: #5f5a56;

  line-height: 1.6;

  font-size: 0.92rem;
}

/* ========================= */
/* HOMEPAGE FOOTER */
/* ========================= */

.homepage-bottom {
  display: flex;

  justify-content: center;
  align-items: flex-start;

  gap: 1.5rem;

  margin-top: 4rem;

  width: 100%;
}

.site-footer {
  width: 520px;

  padding: 2rem 1.5rem;

  background:
    linear-gradient(
      135deg,
      #f3cfd9 0%,
      #efc1cf 55%,
      #eab7c6 100%
    );

  border:
    2px solid rgba(255,255,255,0.28);

  backdrop-filter: blur(6px);

  border-radius: 18px;

  text-align: center;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.22);

  flex-shrink: 0;
}
/* FOOTER ELEMENTS */

.footer-stars {
  font-size: 1.1rem;

  letter-spacing: 8px;

  color: #b45f7b;

  margin-bottom: 1rem;
}

.footer-status {
  color: #4b5e59;

  font-size: 0.95rem;

  margin-bottom: 1.4rem;
}
.footer-status span {
  color: #294440;

  font-family: 'Baloo 2', cursive;

  font-size: 1.15rem;
}

.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 0.8rem;

  margin-bottom: 1.5rem;
}

.footer-badge {
  background:
    linear-gradient(
      135deg,
      #f5efe8,
      #e7ddd1
    );

  color: #294440;

  padding: 0.5rem 1rem;

  border-radius: 999px;

  font-size: 0.82rem;

  letter-spacing: 0.5px;

  box-shadow:
    0 4px 10px rgba(0,0,0,0.08);

  transition:
    transform 0.2s ease;
}

.footer-badge:hover {
  transform:
    translateY(-2px)
    rotate(-1deg);
}

.footer-update {
  color: #5f5a56;

  font-size: 0.85rem;

  margin-bottom: 0.7rem;

  letter-spacing: 1px;
}

.footer-credit {
  font-family: 'Baloo 2', cursive;

  color: #294440;

  font-size: 1rem;
}

/* WIDGET */
.homepage-widget {
  width: 220px;

  background:
    linear-gradient(
      135deg,
      #cfe2f7 0%,
      #bdd5f0 100%
    );

  border:
    2px solid rgba(255,255,255,0.28);

  backdrop-filter: blur(6px);

  border-radius: 18px;

  padding: 1rem;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.14);

  display: flex;
  justify-content: center;
  align-items: center;

  flex-shrink: 0;
}

.homepage-widget iframe {
  max-width: 100%;

  border: none;

  display: block;
}
/* ========================= */
/* ULTRA MAGICAL GIRL SPARKLES */
/* ========================= */

.sparkle-background {
  position: fixed;

  inset: 0;

  overflow: hidden;

  pointer-events: none;

  z-index: -1;
}

/* MAIN SPARKLE LAYERS */

.sparkle-background::before,
.sparkle-background::after {
  content: "";

  position: absolute;

  inset: -10%;

  background-image:

    /* LARGE SPARKLES */

    radial-gradient(2.2px 2.2px at 4% 12%, #ffffff, transparent),
    radial-gradient(2px 2px at 9% 78%, #ffe6f0, transparent),
    radial-gradient(2px 2px at 15% 42%, #fff7c2, transparent),
    radial-gradient(2.2px 2.2px at 23% 25%, #ffd9ea, transparent),
    radial-gradient(2px 2px at 31% 8%, #ffffff, transparent),
    radial-gradient(2px 2px at 40% 74%, #fff0f5, transparent),
    radial-gradient(2.2px 2.2px at 50% 54%, #ffffff, transparent),
    radial-gradient(2px 2px at 61% 28%, #fff7c2, transparent),
    radial-gradient(2px 2px at 73% 13%, #ffd9ea, transparent),
    radial-gradient(2.2px 2.2px at 82% 84%, #ffffff, transparent),
    radial-gradient(2px 2px at 91% 61%, #ffe6f0, transparent),

    /* MEDIUM SPARKLES */

    radial-gradient(1.5px 1.5px at 7% 33%, #ffffff, transparent),
    radial-gradient(1.5px 1.5px at 12% 66%, #fff7c2, transparent),
    radial-gradient(1.5px 1.5px at 18% 92%, #ffffff, transparent),
    radial-gradient(1.5px 1.5px at 28% 59%, #ffe6f0, transparent),
    radial-gradient(1.5px 1.5px at 36% 19%, #ffffff, transparent),
    radial-gradient(1.5px 1.5px at 44% 87%, #ffd9ea, transparent),
    radial-gradient(1.5px 1.5px at 52% 36%, #fff0f5, transparent),
    radial-gradient(1.5px 1.5px at 63% 72%, #ffffff, transparent),
    radial-gradient(1.5px 1.5px at 69% 48%, #fff7c2, transparent),
    radial-gradient(1.5px 1.5px at 78% 20%, #ffe6f0, transparent),
    radial-gradient(1.5px 1.5px at 88% 90%, #ffffff, transparent),
    radial-gradient(1.5px 1.5px at 96% 44%, #ffd9ea, transparent),

    /* MICRO GLITTER */

    radial-gradient(1px 1px at 2% 52%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1px 1px at 6% 95%, rgba(255,240,245,0.8), transparent),
    radial-gradient(1px 1px at 11% 15%, rgba(255,255,210,0.8), transparent),
    radial-gradient(1px 1px at 17% 70%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1px 1px at 21% 48%, rgba(255,220,235,0.8), transparent),
    radial-gradient(1px 1px at 26% 85%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1px 1px at 33% 40%, rgba(255,240,245,0.8), transparent),
    radial-gradient(1px 1px at 38% 97%, rgba(255,255,210,0.8), transparent),
    radial-gradient(1px 1px at 46% 10%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1px 1px at 54% 62%, rgba(255,220,235,0.8), transparent),
    radial-gradient(1px 1px at 58% 27%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1px 1px at 66% 93%, rgba(255,240,245,0.8), transparent),
    radial-gradient(1px 1px at 72% 57%, rgba(255,255,210,0.8), transparent),
    radial-gradient(1px 1px at 79% 8%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1px 1px at 85% 39%, rgba(255,220,235,0.8), transparent),
    radial-gradient(1px 1px at 92% 76%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1px 1px at 98% 21%, rgba(255,240,245,0.8), transparent);

  animation:
    sparkleFloat 120s linear infinite,
    sparkleTwinkle 6s ease-in-out infinite;

  opacity: 0.95;
}

/* SECOND LAYER */

.sparkle-background::after {
  transform: rotate(6deg) scale(1.15);

  opacity: 0.5;

  filter: blur(0.4px);

  animation-duration:
    180s,
    9s;
}

/* FLOAT */

@keyframes sparkleFloat {

  from {
    transform:
      translateY(0px)
      translateX(0px);
  }

  to {
    transform:
      translateY(90px)
      translateX(25px);
  }

}

/* TWINKLE */

@keyframes sparkleTwinkle {

  0% {
    opacity: 0.35;
  }

  25% {
    opacity: 1;
  }

  50% {
    opacity: 0.55;
  }

  75% {
    opacity: 0.9;
  }

  100% {
    opacity: 0.35;
  }

}
/* ========================= */
/* PIXEL DECOR */
/* ========================= */

.pixel-decor {
  position: fixed;

  inset: 0;

  pointer-events: none;

  overflow: hidden;

  z-index: 0;
}

.pixel {
  position: absolute;

  font-family: monospace;

  image-rendering: pixelated;

  opacity: 0.65;

  user-select: none;

  animation:
    pixelFloat 8s ease-in-out infinite;
}

/* COLORS */

.pixel-star {
  color: #fff4b8;
}

.pixel-heart {
  color: #ffd4e4;
}

.pixel-flower {
  color: #ffe7f5;
}

/* POSITIONS */

.star1 {
  top: 8%;
  left: 6%;

  font-size: 16px;

  animation-delay: 0s;
}

.heart1 {
  top: 18%;
  right: 10%;

  font-size: 14px;

  animation-delay: 2s;
}

.star2 {
  top: 58%;
  left: 8%;

  font-size: 13px;

  animation-delay: 1s;
}

.flower1 {
  bottom: 12%;
  right: 8%;

  font-size: 16px;

  animation-delay: 3s;
}

.heart2 {
  bottom: 28%;
  left: 12%;

  font-size: 12px;

  animation-delay: 4s;
}

.star3 {
  top: 38%;
  right: 5%;

  font-size: 15px;

  animation-delay: 5s;
}
/* THEMED PIXELS */

.pixel-paw {
  color: #f6e2c3;
}

.pixel-moon {
  color: #e6dcff;
}
/* EXTRA POSITIONS */

.paw1 {
  top: 12%;
  left: 8%;

  font-size: 16px;
}

.paw2 {
  top: 58%;
  right: 10%;

  font-size: 15px;
}

.paw3 {
  bottom: 14%;
  left: 14%;

  font-size: 17px;
}

.moon1 {
  top: 10%;
  right: 9%;

  font-size: 18px;
}

.moon2 {
  top: 48%;
  left: 7%;

  font-size: 16px;
}

.moon3 {
  bottom: 12%;
  right: 12%;

  font-size: 18px;
}

.flower2 {
  top: 44%;
  right: 6%;

  font-size: 15px;
}

.flower3 {
  bottom: 18%;
  left: 10%;

  font-size: 16px;
}

/* CENTER POSITIONS */

.center1 {
  top: 22%;
  left: 42%;

  font-size: 14px;
}

.center2 {
  top: 48%;
  left: 52%;

  font-size: 16px;
}

.center3 {
  bottom: 20%;
  left: 46%;

  font-size: 13px;
}

.center4 {
  top: 68%;
  left: 36%;

  font-size: 15px;
}
/* FLOATING */

@keyframes pixelFloat {

  0% {
    transform:
      translateY(0px)
      rotate(0deg);
  }

  50% {
    transform:
      translateY(-6px)
      rotate(4deg);
  }

  100% {
    transform:
      translateY(0px)
      rotate(0deg);
  }

}

/* ========================= */
/* FEATURED PETS */
/* ========================= */

.featured-section {
  width: 100%;
  max-width: 950px;

  margin-top: 1rem;
}

.featured-title {
  font-family: 'Baloo 2', cursive;

  font-size: 2rem;

  color: #f7f2e8;

  text-align: center;

  margin-bottom: 1.8rem;
}

.featured-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(220px, 1fr));

  gap: 1.5rem;
}

.featured-card {
  position: relative;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.16),
      rgba(255,255,255,0.08)
    );

  backdrop-filter: blur(4px);

  border:
    1px solid rgba(255,255,255,0.12);

  border-radius: 18px;

  padding: 1.2rem;

  text-decoration: none;

  text-align: center;

  box-shadow:
    0 10px 24px rgba(0,0,0,0.12);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.featured-card:hover {
  transform:
    translateY(-6px)
    rotate(1deg);

  box-shadow:
    0 18px 30px rgba(0,0,0,0.18);
}

.featured-photo {
  width: 100%;
  height: 170px;

  object-fit: contain;

  background:
    linear-gradient(
      135deg,
      #ebe5dc,
      #d8d0c6
    );

  padding: 10px;

  border-radius: 12px;

  margin-bottom: 1rem;
}

.featured-card h3 {
  font-family: 'Baloo 2', cursive;

  color: #294440;

  font-size: 1.35rem;

  margin-bottom: 0.5rem;

  line-height: 1.1;
}

.featured-fact {
  color: #5f5a56;

  font-size: 0.92rem;

  line-height: 1.5;
}

/* ========================= */
/* LINKS PAGE */
/* ========================= */

.links-page {
  width: 100%;
  max-width: 950px;

  display: flex;
  flex-direction: column;

  gap: 2rem;
}

/* BOXES */

.links-box {
  background:
    rgba(255,255,255,0.12);

  border:
    1px solid rgba(255,255,255,0.10);

  backdrop-filter: blur(5px);

  border-radius: 18px;

  padding: 1.8rem;

  box-shadow:
    0 10px 24px rgba(0,0,0,0.14);
}

/* TITLES */

.links-title {
  font-family: 'Baloo 2', cursive;

  font-size: 2rem;

  color: #fff8f1;

  margin-bottom: 1.4rem;

  text-align: center;
}

/* MINI BANNERS */

.banner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 1rem;
}

.banner-link {
  transition:
    transform 0.2s ease;
}

.banner-link:hover {
  transform:
    translateY(-3px)
    rotate(-1deg);
}

.mini-banner {
  max-width: 100%;
  width: auto;
  height: auto;

  image-rendering: pixelated;

  border-radius: 4px;

  box-shadow:
    0 4px 10px rgba(0,0,0,0.16);

  display: block;
}

/* TEXT LINKS */

.text-links {
  display: flex;
  flex-direction: column;

  gap: 1rem;

  text-align: center;
}

.text-links a {
  color: #fffdf8;

  text-decoration: none;

  font-size: 1rem;

  font-weight: 600;

  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.text-links a:hover {
  color: #ffe7f5;

  transform: translateX(4px);
}

/* 88x31 BUTTONS */

.button-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 1rem;
}

.web-button {
  width: 88px;
  height: 31px;

  image-rendering: pixelated;

  border-radius: 4px;

  transition:
    transform 0.2s ease;
}

.web-button:hover {
  transform:
    scale(1.05);
}

/* LINK BACK */

.linkback-text {
  text-align: center;

  color: #fffdf8;

  margin-bottom: 1rem;
}

.featured-button {
  display: block;

  margin:
    0 auto 1rem;
}

.button-code {
  width: 100%;

  min-height: 90px;

  resize: none;

  border: none;

  border-radius: 12px;

  padding: 1rem;

  font-family: monospace;

  background:
    rgba(255,255,255,0.14);

  color: #fffdf8;

  line-height: 1.5;
}

/* MOBILE */

@media (max-width: 700px) {

  .mini-banner {
    width: 100%;
    max-width: 240px;
  }

  .links-box {
    padding: 1.3rem;
  }

}
/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 800px) {

  .notes-grid {
    grid-template-columns: 1fr;

    max-width: 340px;
  }

  .category-grid {
    grid-template-columns: 1fr;

    max-width: 400px;
  }

  .homepage-bottom {
    flex-direction: column;

    align-items: center;
  }

  .homepage-widget {
    width: 100%;
    max-width: 340px;
  }
}
/* ========================= */
/* DAISYBROOK BUTTON */
/* ========================= */

.daisybrook-button {
  display: block;

  width: 88px;
  height: 31px
  
  border-radius: 4px;

  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.daisybrook-button:hover {
  transform:
    translateY(-2px)
    scale(1.03);

  filter:
    brightness(1.05);
}



/* ========================= */
/* ADOPTIONS PAGE */
/* ========================= */

.adoption-box {
  width: 100%;
  max-width: 950px;

  background:
    rgba(255,255,255,0.12);

  border:
    1px solid rgba(255,255,255,0.10);

  backdrop-filter: blur(5px);

  border-radius: 18px;

  padding: 2rem;

  margin-bottom: 2rem;

  box-shadow:
    0 10px 24px rgba(0,0,0,0.14);
}

/* TITLES */

.adoption-title {
  font-family: 'Baloo 2', cursive;

  font-size: 2rem;

  color: #fff8f1;

  text-align: center;

  margin-bottom: 1.8rem;
}

/* RULES */

.rules-list {
  display: flex;
  flex-direction: column;

  gap: 1rem;

  text-align: center;
}

.rules-list p {
  color: #fffdf8;

  font-size: 1rem;

  line-height: 1.6;
}

/* PARENTS */

.parents-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 2rem;

  margin-bottom: 2.5rem;
}

.parent-card {
  width: 220px;

  background:
    rgba(255,255,255,0.12);

  border-radius: 16px;

  padding: 1rem;

  text-align: center;

  box-shadow:
    0 6px 16px rgba(0,0,0,0.12);
}

.parent-photo {
  width: 100%;
  height: 180px;

  object-fit: contain;

  background:
    linear-gradient(
      135deg,
      #ebe5dc,
      #d8d0c6
    );

  border-radius: 12px;

  padding: 10px;

  margin-bottom: 1rem;
}

.parent-card h3 {
  font-family: 'Baloo 2', cursive;

  color: #fff8f1;

  font-size: 1.4rem;

  margin-bottom: 0.4rem;
}

.parent-info {
  color: #fffdf8;

  font-size: 0.95rem;
}

/* BABIES */

/* ========================= */
/* LITTER SHOWCASE */
/* ========================= */

.litter-showcase {
  margin-bottom: 1.5rem;

  display: flex;
  justify-content: center;
}

.litter-photo {
  display: block;
  
  width: 700px;

  max-width: 100%;

  height: auto;

  margin: 0 auto;

  image-rendering: pixelated;
  
  image-rendering: crisp-edges;

  background: #ffffff;

  border-radius: 12px;

  padding: 12px;

  box-shadow:
    0 8px 20px rgba(0,0,0,0.14);
}

/* NAMES */

.baby-name-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 0.8rem;
}

.baby-name {
  padding: 0.55rem 1rem;

  border-radius: 999px;

  font-size: 0.9rem;

  font-weight: 700;

  color: #294440;

  background: #f5efe8;

  box-shadow:
    0 4px 10px rgba(0,0,0,0.10);
}

/* STATUS COLORS */

.baby-name.available {
  background: #d8f0cb;

  color: #355c2d;
}

.baby-name.reserved {
  background: #f6e2a8;

  color: #6b5520;
}

.baby-name.adopted {
  background: #e6d8f5;

  color: #594274;
}
/* ========================= */
/* LITTER NOTES */
/* ========================= */

.litter-notes {
  max-width: 620px;

  margin:
    2rem auto 0;

  background:
    rgba(255,255,255,0.10);

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius: 14px;

  padding: 1.2rem 1.4rem;

  box-shadow:
    0 6px 14px rgba(0,0,0,0.10);
}

.litter-notes h3 {
  font-family: 'Baloo 2', cursive;

  color: #fff8f1;

  font-size: 1.4rem;

  margin-bottom: 0.8rem;

  text-align: center;
}

.litter-notes p {
  color: #fffdf8;

  line-height: 1.7;

  margin-bottom: 0.5rem;

  text-align: center;
}/* ========================= */
/* LITTER NOTES */
/* ========================= */

.litter-notes {
  max-width: 620px;

  margin:
    2rem auto 0;

  background:
    rgba(255,255,255,0.10);

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius: 14px;

  padding: 1.2rem 1.4rem;

  box-shadow:
    0 6px 14px rgba(0,0,0,0.10);
}

.litter-notes h3 {
  font-family: 'Baloo 2', cursive;

  color: #fff8f1;

  font-size: 1.4rem;

  margin-bottom: 0.8rem;

  text-align: center;
}

.litter-notes p {
  color: #fffdf8;

  line-height: 1.7;

  margin-bottom: 0.5rem;

  text-align: center;
}

/* MOBILE */

@media (max-width: 700px) {

  .adoption-box {
    padding: 1.3rem;
  }

  .parents-section {
    gap: 1.2rem;
  }

}
/* ========================= */
/* FEATURED PETZ */
/* ========================= */

.featured-section {
  width: 100%;
  max-width: 950px;

  margin-top: 4rem;

  text-align: center;
}

.featured-title {
  font-family: 'Baloo 2', cursive;

  font-size: 2.2rem;

  color: #f7f2e8;

  margin-bottom: 2rem;
}

.featured-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(220px, 1fr));

  gap: 2rem;
}

.featured-card {
  background:
    rgba(255,255,255,0.14);

  border:
    1px solid rgba(255,255,255,0.10);

  backdrop-filter: blur(5px);

  border-radius: 18px;

  padding: 1.2rem;

  text-decoration: none;

  box-shadow:
    0 10px 24px rgba(0,0,0,0.14);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.featured-card:hover {
  transform:
    translateY(-6px);

  box-shadow:
    0 16px 30px rgba(0,0,0,0.18);
}

.featured-photo {
  width: 100%;
  height: 190px;

  object-fit: contain;

  background:
    linear-gradient(
      135deg,
      #ebe5dc,
      #d8d0c6
    );

  border-radius: 12px;

  padding: 10px;

  margin-bottom: 1rem;
}

.featured-card h3 {
  font-family: 'Baloo 2', cursive;

  color: #fff8f1;

  font-size: 1.4rem;

  margin-bottom: 0.7rem;

  line-height: 1.1;
}
.featured-fact {
  color: #fffdf8;

  font-size: 0.98rem;

  line-height: 1.6;

  font-weight: 600;

  text-shadow:
    0 1px 2px rgba(0,0,0,0.35);

  background:
    rgba(255,255,255,0.10);

  padding: 0.7rem 0.8rem;

  border-radius: 12px;

  border:
    1px solid rgba(255,255,255,0.10);
}


