body {
  margin: 0;
  font-family: 'Crimson Text', serif;
  background-color: #0D0E12; /* voidsoil */
  color: #F2F0EC; /* bonewhite */
  line-height: 1.7;
  background-image: url('petal-bg.png'); /* optional transparent petals PNG */
  background-attachment: fixed;
  background-size: cover;
}

/* Fade-in animation */
.fade-in {
  animation: fadeIn 1.2s ease-in;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ====== HEADER ====== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #2B3D57, #0D0E12); /* divineblue → voidsoil */
  padding: 4rem 1rem;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('petal-overlay.png'); /* subtle petals texture */
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.15;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-family: 'Uncial Antiqua', serif;
  font-size: 3rem;
  color: #B5DBF7; /* seleneglow */
  margin: 0;
}

.hero-text p {
  color: #B9C5D3; /* foggedmoon */
  font-size: 1.2rem;
}

/* ====== NAVIGATION ====== */
.petal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #1A1D25; /* mournpetal */
  padding: 0.5rem;
}

.petal-nav a {
  color: #E88080; /* bloomflesh */
  text-decoration: none;
  padding: 0.5rem 1rem;
  margin: 0.3rem;
  border: 1px solid #E88080; /* bloomflesh */
  border-radius: 50px;
  transition: all 0.3s ease, box-shadow 0.3s ease;
}

.petal-nav a:hover {
  background-color: #E88080; /* bloomflesh */
  color: #0D0E12; /* voidsoil */
  box-shadow: 0 0 15px #B5DBF7; /* seleneglow */
}

/* ====== MAIN CONTENT ====== */
.content {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
}

.content h2 {
  font-family: 'Uncial Antiqua', serif;
  color: #D9A86C; /* marrowgold */
  font-size: 2.2rem;
}

.quote {
  border-left: 4px solid #7A8C6F; /* fungalmoss */
  padding-left: 1rem;
  margin-top: 1.5rem;
  font-style: italic;
  color: #B9C5D3; /* foggedmoon */
}

/* ====== FOOTER ====== */
footer {
  background-color: #1A1D25; /* mournpetal */
  color: #B9C5D3; /* foggedmoon */
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}