@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600&display=swap');

:root {
  /* Colors from Figma */
  --main-bg: #fbf0ef;
  --primary-color: #7E4644;
  --primary-hover: #6B4C4A;
  --primary-pressed: #520C09;
  --text-primary: #1f1f1f;
  --text-secondary: #555;
  --success-color: #2A753F;
  --warning-color: #F4E96B;
  --white: #ffffff;
  --gray-light: #ccc;
  --gray-border: rgba(0, 0, 0, 0.05);

  /* Typography */
  --font-main: "Source Sans 3", sans-serif;
  --font-headings: "Geist", sans-serif;
  
  /* Heading sizes (Figma) */
  --h1-size: 52px;
  --h2-size: 44px;
  --h3-size: 34px;
  --h4-size: 30px;
  --h5-size: 24px;
  --h6-size: 22px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: #fffffa; /* Very light yellow background from Figma */
  color: var(--text-primary);
  margin: 0;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-family: var(--font-headings);
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 400;
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }
h5 { font-size: var(--h5-size); }
h6 { font-size: var(--h6-size); }

@media (max-width: 900px) {
  :root {
    --h1-size: 42px;
    --h2-size: 36px;
    --h3-size: 28px;
    --h4-size: 24px;
    --h5-size: 20px;
    --h6-size: 18px;
  }
}
