body {
  font-family: sans-serif;
  background: #fefefe;
  color: #444;
  margin: 0;
  padding: 0;
}
nav {
  background: #f5f5fa;
  padding: 1em;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1em;
  justify-content: center;
}
main {
  padding: 2em;
  text-align: center;
}
.trigger-warning {
  background: #fff0f0;
  padding: 1em;
  border: 1px solid #faa;
  margin-bottom: 2em;
}
/* --- JayJay’s Shine Section --- */
floatingNotes.appendChild(note);

// Add heart sparkle
const heart = document.createElement('div');
heart.className = 'heart-sparkle';
heart.innerHTML = '❤️';
heart.style.left = Math.random() * 80 + '%';
floatingNotes.appendChild(heart);

setTimeout(() => {
  floatingNotes.removeChild(note);
  floatingNotes.removeChild(heart);
}, 11000);

.shine {
  background: url('bluejayfeather.png') no-repeat center center;
  background-size: cover;
  background-blend-mode: soft-light;
  padding: 3em 1em;
  text-align: center;
  color: #222;
  animation: fadeInFeather 4s ease-in-out;
}

@keyframes fadeInFeather {
  from { opacity: 0; }
  to { opacity: 1; }
}

.shine {
  border-left: 4px solid #ffc107;
  padding-left: 12px;
  margin-top: 20px;
  animation: fadeIn 2s ease-in-out;
  background: #fff9e6;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
  border-radius: 8px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.feather-icon::before {
  content: "🪶";
  margin-right: 8px;
  font-size: 1.2em;
}
.homepage-photo {
  width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.letter-form {
  background: #fff;
  padding: 1.5em;
  max-width: 600px;
  margin: 2em auto;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.letter-form textarea,
.letter-form input {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  margin-top: 0.5em;
  border: 1px solid #aaa;
  border-radius: 5px;
}

.letter-form button {
  margin-top: 1em;
  padding: 10px 20px;
  background: #6c88ff;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.letter-form button:hover {
  background: #4d6ee6;
}

.note {
  text-align: center;
  font-size: 0.9em;
  color: #666;
  margin-top: 1em;
}
/* Floating animation for letters */
.floating-note {
  position: absolute;
  bottom: -100px;
  left: 50%;
  width: 200px;
  opacity: 0.7;
  transform: translateX(-50%);
  animation: floatUp 10s ease-in-out forwards;
  font-family: 'Georgia', serif;
  font-size: 1.1em;
  color: #444;
  text-align: center;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.85);
  padding: 1em;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@keyframes floatUp {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: translateX(-52%) translateY(-300px);
    opacity: 0.6;
  }
  100% {
    transform: translateX(-55%) translateY(-600px);
    opacity: 0;
  }
}

