@font-face {
  font-family: "Lucia";
  src: url("/fonts/lucia/LuciaBT-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neufile Grotesk";
  src: url("/fonts/neufile/Neufile Grotesk Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --color-beige: #ebdacb;
  --color-cream: #ded9cf;
  --color-gold: #e3af46;
  --color-blue-gray: #86959e;
  --color-gray: #b9bcb0;

  /* Custom fonts */
  --font-primary: "Neufile Grotesk", system-ui, sans-serif;
  --font-secondary: "Lucia", serif;
}

body {
  background-color: white;
  color: black;
  margin: 0;
  font-family: var(--font-secondary);
  line-height: 1.6;
}

a {
  color: black;
}

a:hover {
  color: black;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: black;
  margin: 0 0 1rem 0;
}
