/* Global Styles - Muskoka Theme */
:root {
  /* Primary Colors - Deep Forest & Lake */
  --forest-dark: #1B3A2F;
  --forest: #2D5A48;
  --forest-light: #3D7A5F;
  
  /* Accent Colors - Warm Wood & Bronze */
  --wood: #8B6F4E;
  --wood-light: #A68B6A;
  --bronze: #B8956C;
  
  /* Lake Blues */
  --lake-dark: #1E3A4F;
  --lake: #2C5282;
  --lake-light: #4A7090;
  
  /* Neutral Backgrounds */
  --cream: #FAF9F6;
  --cream-dark: #F5F4F0;
  --paper: #FFFFFF;
  
  /* Text Colors */
  --charcoal: #2C2C2C;
  --graphite: #4A4A4A;
  --stone: #6B6B6B;
  --mist: #9A9A9A;
  --fog: #C5C5C5;
  
  /* Borders & Dividers */
  --border-light: #E8E6E1;
  --border: #D5D2CC;
  
  /* Shadows - Softer, more organic */
  --shadow-sm: 0 1px 3px rgba(27, 58, 47, 0.04);
  --shadow: 0 4px 12px rgba(27, 58, 47, 0.06);
  --shadow-lg: 0 8px 24px rgba(27, 58, 47, 0.08);
  
  /* Radius - More subtle */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  
  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Utility Classes */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}