/* ============================================
   🗺️ SITEMAP - Strawberry Y2K Theme
   ============================================ */

.berry-page {
  min-height: 100vh;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 182, 193, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 105, 180, 0.2) 0%, transparent 50%),
    url('https://kennababy123.neocities.org/cute/pinkseq.jpg');
  background-repeat: repeat;
  background-attachment: fixed;
  font-family: "Trebuchet MS", "Comic Sans MS", cursive;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header (shared with socials) */
.berry-header {
  text-align: center;
  margin-bottom: 30px;
  animation: float 3s ease-in-out infinite;
}

.berry-header h1 {
  font-family: "Lucida Handwriting", cursive;
  font-size: 2.5rem;
  color: #ff0066;
  text-shadow: 
    3px 3px 0px #ffb6c1,
    -1px -1px 0px #fff,
    0 0 20px rgba(255, 105, 180, 0.6);
  margin: 10px 0;
  display: inline-block;
}

.berry-mascot {
  width: 80px;
  height: auto;
  vertical-align: middle;
  margin: 0 15px;
  filter: drop-shadow(2px 2px 4px rgba(255, 105, 180, 0.5));
  animation: bounce 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

/* Sitemap Main */
.sitemap-main {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

/* Each Section */
.sitemap-section {
  background: linear-gradient(145deg, #fff0f5 0%, #ffe6ee 100%);
  border: 4px solid #ff69b4;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 
    4px 4px 0px #ff1493,
    0 0 15px rgba(255, 105, 180, 0.2);
  position: relative;
  overflow: hidden;
}

.sitemap-section::before {
  content: "🍓";
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5em;
  opacity: 0.2;
}

/* Section Headers */
.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px dashed #ffb6c1;
}

.section-emoji {
  font-size: 1.8em;
}

.section-header h2 {
  font-family: "Lucida Handwriting", cursive;
  font-size: 1.5em;
  margin: 0;
  color: #ff0066;
}

/* Color-coded headers */
.home-header { border-bottom-color: #ff69b4; }
.about-header { border-bottom-color: #c77dff; }
.shrine-header { border-bottom-color: #4ecdc4; }
.social-header { border-bottom-color: #ff8c69; }
.secret-header { border-bottom-color: #ffeb3b; }

/* Link Rows */
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Individual Links */
.sitemap-link {
  display: inline-block;
  background: linear-gradient(145deg, #ffffff 0%, #fff5f8 100%);
  border: 3px solid #ffb6c1;
  border-radius: 15px;
  padding: 10px 18px;
  text-decoration: none;
  color: #c4006b;
  font-weight: bold;
  font-size: 0.95em;
  box-shadow: 2px 2px 0px rgba(255, 105, 180, 0.3);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.sitemap-link:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 4px 6px 0px rgba(255, 105, 180, 0.4);
  background: linear-gradient(145deg, #fff0f5 0%, #ffcce0 100%);
  border-color: #ff69b4;
}

/* External link indicator */
.sitemap-link.external::after {
  content: " ↗";
  font-size: 0.8em;
  opacity: 0.6;
}

/* Strawberry Divider (shared) */
.berry-divider {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.berry-divider img {
  width: 60px;
  animation: spin 4s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Footer (shared) */
.berry-footer {
  text-align: center;
  margin-top: 20px;
}

/* ============================================
   📚 CITATIONS CHART
   ============================================ */

.cite-header {
  border-bottom-color: #9b59b6;
}

.citation-chart {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cite-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(145deg, #ffffff 0%, #fff5f8 100%);
  border: 3px dashed #ffb6c1;
  border-radius: 15px;
  padding: 12px 18px;
  transition: all 0.25s ease;
}

.cite-row:hover {
  background: linear-gradient(145deg, #fff0f5 0%, #ffcce0 100%);
  border-color: #ff69b4;
  transform: translateX(5px);
}

.cite-site {
  font-weight: bold;
  color: #ff0066;
  text-decoration: none;
  font-family: "Lucida Handwriting", cursive;
  font-size: 1em;
  transition: color 0.2s ease;
}

.cite-site:hover {
  color: #ff1493;
  text-decoration: underline wavy #ffb6c1;
}

.cite-offer {
  color: #c4006b;
  font-size: 0.9em;
  background: rgba(255, 182, 193, 0.3);
  padding: 4px 12px;
  border-radius: 12px;
  font-style: italic;
}
.home-link {
  display: inline-block;
  background: linear-gradient(90deg, #ff69b4, #ff1493);
  color: white;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 4px 10px rgba(255, 20, 147, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.home-link:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.5);
}

.berry-footer p {
  color: #ff69b4;
  font-size: 0.9em;
  text-shadow: 1px 1px 2px white;
}
/* ============================================
   🍓 EXTRA STRAWBERRY DECORATIONS
   ============================================ */

/* Mini mascot variant */
.berry-mascot.mini {
  width: 50px;
}

/* Section corner strawberries */
.section-berry {
  width: 40px;
  height: auto;
  margin-left: auto;
  animation: bounce 2s ease-in-out infinite;
  filter: drop-shadow(2px 2px 3px rgba(255, 105, 180, 0.4));
}

/* Floating corner berries (desktop only) */
.float-berry {
  position: fixed;
  width: 70px;
  height: auto;
  z-index: 100;
  pointer-events: none;
  opacity: 0.85;
  animation: float 3s ease-in-out infinite;
}

.float-top-left {
  top: 15px;
  left: 15px;
}

.float-top-right {
  top: 15px;
  right: 15px;
  animation-delay: 0.5s;
}

.float-bottom-left {
  bottom: 15px;
  left: 15px;
  animation-delay: 1s;
}

.float-bottom-right {
  bottom: 15px;
  right: 15px;
  animation-delay: 1.5s;
}

/* Footer berries */
.footer-berry {
  width: 45px;
  height: auto;
  vertical-align: middle;
  margin: 0 8px;
  animation: spin 5s linear infinite;
}

/* Divider berries get more variety */
.berry-divider img:nth-child(2) {
  animation-delay: 0.3s;
}

.berry-divider img:nth-child(3) {
  animation-delay: 0.6s;
}

.berry-divider img:nth-child(4) {
  animation-delay: 0.9s;
}

/* Hide floaters on mobile */
@media (max-width: 768px) {
  .float-berry {
    display: none;
  }
  
  .section-berry {
    width: 30px;
  }
  
  .footer-berry {
    width: 35px;
  }
}