/* ========================================
   GROUNDZY TYPOGRAPHY
   ======================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* Base Typography */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark-slate-gray);
  background-color: var(--color-white);
  margin: 0;
  padding: 0;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  color: var(--color-dark-slate-gray);
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

h3 {
  font-size: 2rem;
  font-weight: 700;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

h5 {
  font-size: 1.125rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

/* Paragraphs */
p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
  color: var(--color-dark-slate-gray-80);
}

/* Links */
a {
  color: var(--color-kelly-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-green-yellow);
}

/* Lists */
ul, ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Code */
code {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.875rem;
  background-color: var(--color-gray-100);
  padding: 0.125rem 0.25rem;
  border-radius: 4px;
  color: var(--color-dark-slate-gray);
}

/* Small text */
small {
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

/* Strong text */
strong {
  font-weight: 600;
  color: var(--color-dark-slate-gray);
}

/* Emphasis */
em {
  font-style: italic;
  color: var(--color-dark-slate-gray-80);
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  h4 {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
} 