/* static/css/global.css */

/* Typography and colors */
body {
    font-family: 'Inter', sans-serif;
    color: #1f2937; /* Tailwind's gray-800 equivalent */
    background-color: #f9fafb;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
  }
  
  /* Buttons */
  .btn-primary {
    background-color: #6d28d9; /* Tailwind's violet-700 */
    border-color: #6d28d9;
  }
  
  .btn-primary:hover {
    background-color: #5b21b6;
    border-color: #5b21b6;
  }
  
  /* Utility spacing if needed */
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  .card {
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  }
  
  /* Custom footer styles */
  footer a {
    transition: opacity 0.3s ease;
  }
  
  footer a:hover {
    opacity: 0.75;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom right, #f8fafc, #e5e7eb);  /* pastel gray gradient */
    color: #1f2937;
  }
  
  section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  