/* === Base Styles === */
:root {
  --sticky-yellow: #ffeef5;
}

body { background: linear-gradient(180deg, #ffbdf7, #ffcce1, #fef1b7, #c0fbcf, #a0c4ff); color: #3e3166; font-family: 'Verdana', sans-serif; margin: 0; padding: 0; cursor: url('https://zavieracomplains.neocities.org/cat-0651.gif'), auto; position: relative; } a, button { cursor: url('https://zavieracomplains.neocities.org/cat-0651.gif'), auto; } a:hover, button:hover { cursor: url('https://zavieracomplains.neocities.org/dog-pug-0012.gif'), auto; } a { color: #804060; /* Mauve/Gothic Plum */ font-weight: bold; text-decoration: none; background-color: #ffe6f0; padding: 2px 4px; border-radius: 6px; transition: all 0.2s ease; } a:hover { color: white; background-color: #ffcce1; /* Bright pastel pink */ box-shadow: 0 0 4px #ffccff; transform: scale(1.05); }

/* === Header === */
.site-header {
    position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(200, 220, 255, 0.6);
  box-shadow: 0 0 12px #a0c4ff;
  color: #305c80;
  font-family: 'Press Start 2P', monospace;
  margin-bottom: 1rem;
  padding: 1rem;
  text-align: center;
}
.pet-card button {
  display: inline-block;
  margin: 0.5em 0.3em;
  padding: 0.4em 0.8em;
  font-size: 0.9em;
  background-color: #f0e0f5;
  border: 1px dashed #ccc;
  border-radius: 8px;
  cursor: pointer;
}

.site-header img {
  width: 755px;
  height: auto;
  object-fit: contain;
}

.header {
  background: #f5f0f3;
  padding: 1.5rem;
  border-bottom: 4px dotted #9378a4;
  position: relative;
  font-family: 'Courier New', monospace;
  text-align: center;
}
.season-toggle-container {
  display: flex;
  justify-content: center;
  width: 100%;
}
.season-btn {
 background: linear-gradient(135deg, #fffdf8, #f0e6f6);
  color: #4b304a; /* matches your scrapbook text */
  border: 2px dashed #b8a8d1;
  box-shadow: 0 0 6px #d6c8f0;
}
.season-btn:hover {
  box-shadow: 0 0 10px #d0ebff;
  transform: scale(1.03);
}

.header::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 20px;
  width: 80px;
  height: 20px;
  background: url('https://zavieracomplains.neocities.org/tweezer/graphics/rainbow-tape.gif') no-repeat center/contain;
  transform: rotate(-5deg);
}

/* === Navigation === */
.site-nav {
  flex-grow: 1;
  margin-top: -0.5rem;
  padding-top: 1rem;
  text-align: center;
  position: relative;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0.5rem 0.8rem;
  justify-content: center;
}

.site-nav a {
  background: linear-gradient(to right, #ff9af5, #ffd1dc, #f6fcb3, #baffd9, #99ccff);
  border: 1px solid #fff0f5;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
  color: #3e3166;
  font-family: 'Press Start 2P', monospace;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}

.site-nav a:hover {
  background: linear-gradient(to right, #99ccff, #baffd9, #f6fcb3, #ffd1dc, #ff9af5);
  box-shadow: 0 0 12px #fff;
  color: white;
  transform: scale(1.05);
}

/* === Intro Note === */
.sticky-notes-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;      /* centers horizontally */
  align-items: flex-start;      /* aligns tops evenly */
  gap: 1.2rem;
  margin: 2rem auto;
  max-width: 700px;
  padding: 1rem;
  text-align: center;           /* optional, helpful if content is short */
}

.sticky-note-intro,
.corner-sticky {
  flex: 1 1 280px;
  max-width: 300px;
}

.sticky-note-intro {
  position: relative;
  flex: 1 1 300px;
  max-width: 400px;
  padding: 1rem 1.2rem;
  background: #fff8fc;
  border: 2px dashed #ffcce1;
  border-radius: 12px;
  box-shadow: 4px 4px 0 #ffccff;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.5;
}

/* Tape strips on corners */
.sticky-note-intro::before,
.sticky-note-intro::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 18px;
  background: url('https://zavieracomplains.neocities.org/tweezer/graphics/rainbow-tape.gif') no-repeat center/contain;
  opacity: 0.85;
  z-index: 1;
}

.sticky-note-intro::before {
  top: -12px;
  left: -12px;
  transform: rotate(-15deg);
}

.sticky-note-intro::after {
  bottom: -12px;
  right: -12px;
  transform: rotate(15deg);
}


.corner-sticky {
  flex: 1 1 200px;
  max-width: 300px;
  background: #fff8e3;
  border: 2px dashed #c59d6b;
  box-shadow: 4px 4px 0 #d9c8a0;
  padding: 1rem;
  font-family: 'Comic Sans MS', cursive;
  transform: rotate(-4deg);
  z-index: 1;
}

/* Heading & List tweaks */
.corner-sticky h3 {
  margin-top: 0;
  font-size: 1rem;
  text-align: center;
}

.corner-sticky ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.9rem;
}


/* === Pet Gallery Section === */
.featured-petz,
.dog-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem;
}

/* === Pet Card Styling === */
.pet-card {
  position: relative;
  background: #fef6fb; /* pale pink default */
  padding: 1.25rem;
  border-radius: 10px;
  border: 2px dashed #d8b3c6;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.08);
  margin: 1rem;
  text-align: left;
  z-index: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.4s ease;
  opacity: 0; /* hidden by default, animated in */
}

/* Reveal when season is selected */
.pet-card.shown {
  opacity: 1;
}

/* Rainbow tape corners */
.pet-card::before,
.pet-card::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 24px;
  background-image: url('https://zavieracomplains.neocities.org/tweezer/graphics/rainbow-tape.gif');
  background-size: cover;
  z-index: 2;
}

.pet-card::before {
  top: -10px;
  left: -10px;
  transform: rotate(-15deg);
}

.pet-card::after {
  bottom: -10px;
  right: -10px;
  transform: rotate(15deg);
}

/* Image Styling */
.pet-card img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

/* === Pet Info Reveal === */
.pet-info {
  background: #fffdf8;
  border: 1px dashed #b8a8d1;
  padding: 1rem;
  margin-top: 0.5rem;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  line-height: 1.4;
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  animation: popSticky 0.3s ease-out;
}

/* Ragged tape "ears" */
.pet-info::before,
.pet-info::after {
  content: '';
  position: absolute;
  top: -8px;
  width: 60px;
  height: 20px;
  background: repeating-linear-gradient(
    -45deg,
    #d6c8f0,
    #d6c8f0 5px,
    #f0e6f6 5px,
    #f0e6f6 10px
  );
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.pet-info::before {
  left: 10px;
  transform: rotate(-3deg);
}

.pet-info::after {
  right: 10px;
  transform: rotate(3deg);
}

/* Hide by default */
.pet-info.hidden {
  display: none;
}

@keyframes popSticky {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


.corner-doodle {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: url('https://zavieracomplains.neocities.org/tweezer/cornerbat.png') no-repeat center/contain;
  opacity: 0.8;
}

/* === Toggle Button === */
.toggle-stage {
  display: block;
  margin: 0.5rem auto 0;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-family: 'Press Start 2P', monospace;
  color: #4b2d4b;
  background: linear-gradient(to right, #ffd1dc, #ffe6f0);
  border: 2px dashed #ffcce1;
  border-radius: 10px;
  box-shadow: 0 0 6px #ffccff;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.toggle-stage::before {
  content: '✨ ';
  position: relative;
  left: -2px;
}

.toggle-stage:hover {
  background: linear-gradient(to right, #ffe6f0, #ffd1dc);
  box-shadow: 0 0 8px #ffcce1;
  color: #622b62;
  transform: scale(1.05);
}

/* === Info Labels === */
.info-label {
  font-weight: bold;
  color: #cc5599;
  margin-right: 0.3rem;
}

.breeder-link {
  font-size: 0.8rem;
  color: #804060;
  text-decoration: none;
  background: #ffe6f0;
  border-radius: 6px;
  padding: 2px 6px;
  margin-left: 4px;
}
.breeder-link:hover {
  background: #ffcce1;
  box-shadow: 0 0 4px #ffccff;
}

.title-badge {
  display: inline-block;
  font-size: 0.8rem;
  color: #334488;
  background: #d8e6ff;
  border: 1px solid #aac6ee;
  border-radius: 12px;
  padding: 2px 8px;
  margin: 0 4px 4px 0;
}

/* === Footer === */
.site-footer {
  background-color: rgba(190, 215, 255, 0.4);
  border-top: 2px dashed #91c9fc;
  color: #305c80;
  font-size: 12px;
  font-family: 'Press Start 2P', monospace;
  padding: 1rem;
  text-align: center;
}

.footer-links img {
  width: 80px;
  margin: 0 0.5rem;
}

/* === Photo Album Petz Cards === */
.petz-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.petz-gallery .album-card {
  position: relative;
  background: #fffafc;
  border: 2px dashed #daace5;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(200, 160, 220, 0.15);
  padding: 8px;
  transition: transform 0.2s ease-in-out;
  flex: 0 1 auto;
  display: inline-block;              /* Let it wrap naturally */
  max-width: 100%;                   /* Prevent overflow */
  text-align: center;                /* Center the image & caption */
}

.petz-gallery .album-card:hover {
  transform: rotate(-2deg) scale(1.05);
  box-shadow: 2px 2px 12px rgba(220, 180, 240, 0.2);
}

.petz-gallery .album-card img {
  width: auto;                       /* Let image expand to its natural size */
  height: auto;
  max-width: 100%;                   /* Responsive safety cap */
  display: block;
  margin: 0 auto;
  object-fit: unset;                 /* No cropping or scaling */
}

/* Scrapbook tape & critter doodles */
.petz-gallery .album-card::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 60%;
  height: 18px;
  background: url('https://zavieracomplains.neocities.org/tweezer/graphics/rainbow-tape.gif') no-repeat center/contain;
  opacity: 0.85;
  z-index: 1;
}

.petz-gallery .album-card::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  background: url('https://zavieracomplains.neocities.org/tweezer/graphics/snail-corner.png') no-repeat center/contain;
  opacity: 0.8;
  z-index: 1;
}



#intro {
  position: relative;
}

@media (max-width: 600px) {
  .sticky-notes-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .corner-sticky {
    transform: none;
    margin-top: 1rem;
  }
}

/* === Sparkle Trail === */
.falling-sparkle {
  position: fixed;
  height: 12px;
  width: 12px;
  pointer-events: none;
  z-index: 1000;
  transform-origin: center;
  animation: sparkleFloatRotate 2.8s ease-in forwards;
}

@keyframes sparkleFloatRotate {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(200px) rotate(360deg
    
    
    .season-toggle-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto;
  padding: 1rem;
  background: var(--sticky-yellow); /* or use a subtle gradient */
  border: 2px dashed #ffcce1;
  border-radius: 12px;
  box-shadow: 0 0 10px #fce0ff;
  max-width: 600px;
}

.season-btn {
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  font-family: 'Verdana', sans-serif;
  color: #4b304a;
  background: linear-gradient(135deg, #fff7fa, #f9f2ff);
  border: 2px dashed #b8a8d1;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.season-btn:hover {
  background: linear-gradient(135deg, #fbeeff, #ffe8f0);
  box-shadow: 0 0 8px #d6c8f0;
  transform: scale(1.05);
}

/* Optional tape decoration */
.season-btn::before,
.season-btn::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 18px;
  background-image: url('https://zavieracomplains.neocities.org/tweezer/graphics/rainbow-tape.gif');
  background-size: cover;
  z-index: -1;
}

.season-btn::before {
  top: -8px;
  left: -8px;
  transform: rotate(-10deg);
}

.season-btn::after {
  bottom: -8px;
  right: -8px;
  transform: rotate(10deg);
}

  