body {
  background: #fdf6f0;
  color: #3e2f2f;
  font-family: 'Georgia', serif;
  margin: 0;
  padding: 0;
}

header {
  background: #fceee3;
  text-align: center;
  padding: 2rem 1rem;
  border-bottom: 2px dashed #d8b4a0;
}

h1 {
  font-size: 2.5rem;
  margin: 0;
}

.tagline {
  font-style: italic;
  color: #7a5c5c;
}

nav {
  margin-top: 1rem;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #7a5c5c;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 2rem;
  max-width: 700px;
  margin: auto;
}

.intro {
  background: #fffaf7;
  border-left: 4px solid #d8b4a0;
  padding: 1rem;
  font-size: 1.1rem;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #a08c8c;
}
/* Journal-specific styles */
.journal-entry {
  background: #fffaf7;
  border-left: 4px solid #d8b4a0;
  margin: 2rem auto;
  padding: 1rem;
  max-width: 700px;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}
/* === Floating Petals Animation === */
.petal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.petal-container::before {
  content: "🌸 🌼 🌷";
  font-size: 1.5rem;
  position: absolute;
  animation: float 12s linear infinite;
  opacity: 0.6;
}

@keyframes float {
  0% {
    transform: translateY(-10%) rotate(0deg);
    left: 10%;
  }
  50% {
    transform: translateY(50vh) rotate(180deg);
    left: 50%;
  }
  100% {
    transform: translateY(110vh) rotate(360deg);
    left: 80%;
  }