



@layer base {
  body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: #ffffff;
  }
}

@layer utilities {
  .animate-float {
    animation: float 6s ease-in-out infinite;
  }

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

.prose-custom h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.625rem;
  color: #1a0a2e;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.prose-custom h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  color: #1a0a2e;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.prose-custom p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.prose-custom strong {
  color: #1a0a2e;
  font-weight: 600;
}

.prose-custom blockquote {
  border-left: 3px solid #c8a96e;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  background: #f5f3ef;
  border-radius: 0 0.5rem 0.5rem 0;
}

.prose-custom blockquote p {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.125rem;
  color: #2d1b4e;
  line-height: 1.7;
  margin-bottom: 0;
  font-style: italic;
}