/* CSS Variables */
:root {
  --gold: #d4af37;
  --gold-accent: #f4d03f;
  --ink: #3a3547;
  --ink-2: #2d2839;
  --text: #f5f5f5;
  --muted: #b0b0b0;
  --text-light: #d0d0d0;
  --accent: #667eea;
  --icon-purple: #6A1B9A;

  /* Gold Divider Spacing */
  --divider-margin-top: 1.5rem;
  --divider-margin-bottom: 1.5rem;
  --divider-width: 80px;
  --divider-height: 3px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
