/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Lora:ital,wght@0,400;1,400&family=Source+Sans+3:wght@300;400;600&display=swap');

/* ── VARIABLES ── */
:root {
  --cream:    #F7F0E2;
  --brick:    #A63D2F;
  --gold:     #D4A84B;
  --orange:   #C06223;
  --sage:     #7A9E7E;
  --gray:     #8A8A8A;
  --charcoal: #3A3535;
  --white:    #FFFFFF;
  --border:   #E2D5C0;
  --sd-blue:  #0074A8;

  --font-serif: 'Lora', serif;
  --font-sans:  'Source Sans 3', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── BASE ── */
body {
  font-family: var(--font-sans);
  background:
    linear-gradient(rgba(247, 240, 226, 0.25), rgba(247, 240, 226, 0.25)),
    url('/static/chatbot/banner.jpg') 35% 45% / cover no-repeat;
  color: var(--charcoal);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
}

p {
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.65;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
}