body {
  margin: 0;
  font-family: 'Merriweather', serif;
  line-height: 1.6;
  background-color: #fffaf0;
  color: #333;
}

.hero {
  background: url('/assets/sunset.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 10px;
}

.about, .rituals, .quote, footer {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

h1, h2 {
  color: #e25822;
}

.rituals .steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.step {
  background: #fff5e6;
  border-left: 5px solid #e25822;
  padding: 1rem;
  border-radius: 5px;
}

.quote {
  position: relative;
  background: linear-gradient(to top, #ff6600, #ffcc33, #ffffff);
  color: #3a1f00;
  padding: 5rem 2rem 3rem 2rem;
  text-align: center;
  font-style: italic;
  overflow: hidden;
  min-height: 300px;
}

.sun {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, #ffd700, #ff8c00);
  border-radius: 50%;
  box-shadow: 0 0 90px 30px rgba(255, 165, 0, 0.6);
  animation: rise 12s infinite alternate ease-in-out;
  z-index: 0;
}

.quote blockquote {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  line-height: 1.8;
  background-color: rgba(255, 255, 255, 0.85);
  display: inline-block;
  padding: 1.5rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

@keyframes rise {
  from {
    bottom: -120px;
  }
  to {
    bottom: 100px;
  }
}

footer {
  background: #fff0e0;
  text-align: center;
  font-size: 0.9rem;
}
