/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

/* Custom Properties */
:root {
  --color-bg: #FAF7F2;
  --color-bg-warm: #F3EDE4;
  --color-text: #2D2A26;
  --color-text-muted: #6B6560;
  --color-accent: #6B4226;
  --color-accent-hover: #8B5A3A;
  --color-nav: #2D2A26;
  --color-footer: #3A3530;
  --color-seb-red: #8B2030;
  --color-seb-red-light: #F5E6E8;
  --color-ruby-green: #2D6B3F;
  --color-ruby-green-light: #E6F0EA;
  --color-border: #E0D8CE;
}

/* Base */
body {
  font-family: 'Source Sans 3', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

/* Utility overrides */
.font-display {
  font-family: 'Playfair Display', serif;
}

.font-body {
  font-family: 'Source Sans 3', sans-serif;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Links */
a {
  transition: color 0.2s ease;
}
