@import "tailwindcss";

@theme inline {
  --color-ink: #1a1612;
  --color-paper: #f3ead9;
  --color-paper-2: #e7dcc6;
  --color-forest: #0e2f24;
  --color-forest-2: #164535;
  --color-gold: #c9a227;
  --color-gold-2: #e4c56a;
  --color-terra: #c45c26;
  --color-cream: #fff8ec;
  --font-sans: var(--font-outfit);
  --font-display: var(--font-fraunces);
}

html,
body {
  background: var(--color-paper);
  color: var(--color-ink);
}

body {
  font-family: var(--font-outfit), ui-sans-serif, system-ui, sans-serif;
  min-height: 100vh;
}

h1,
h2,
h3,
.font-display {
  font-family: var(--font-fraunces), ui-serif, Georgia, serif;
}

.kente-line {
  background: repeating-linear-gradient(
    90deg,
    #0e2f24 0 12px,
    #c9a227 12px 16px,
    #c45c26 16px 20px,
    #f3ead9 20px 28px,
    #0e2f24 28px 36px,
    #c9a227 36px 40px
  );
  height: 6px;
}

.grain {
  background-image: radial-gradient(rgba(26, 22, 18, 0.06) 0.6px, transparent 0.6px);
  background-size: 4px 4px;
}

.card-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(14, 47, 36, 0.14);
}

.prose-step p + p {
  margin-top: 0.75rem;
}

input,
textarea {
  font-family: inherit;
}

::selection {
  background: #c9a227;
  color: #0e2f24;
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.7);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(201, 162, 39, 0);
  }
}

.cta-pulse {
  animation: cta-pulse 1.8s ease-out infinite;
}

.blog-body {
  color: #1a1612;
  font-size: 1.05rem;
  line-height: 1.7;
}
.blog-body h1,
.blog-body h2,
.blog-body h3 {
  font-family: var(--font-fraunces), ui-serif, Georgia, serif;
  color: #0e2f24;
  margin: 1.6rem 0 0.6rem;
}
.blog-body h1 {
  font-size: 1.8rem;
}
.blog-body h2 {
  font-size: 1.45rem;
}
.blog-body h3 {
  font-size: 1.2rem;
}
.blog-body p {
  margin: 0.85rem 0;
}
.blog-body ul {
  margin: 0.85rem 0;
  padding-left: 1.2rem;
  list-style: disc;
}
.blog-body a {
  color: #c45c26;
  font-weight: 600;
}
.blog-body img {
  margin: 1rem 0;
  border-radius: 1.25rem;
  max-width: 100%;
}
