@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --foreground-rgb: 0, 0, 0;
  --background-start-rgb: 248, 249, 250;
  --background-end-rgb: 255, 255, 255;
}

body {
  color: rgb(var(--foreground-rgb));
  background: linear-gradient(
      to bottom,
      transparent,
      rgb(var(--background-end-rgb))
    )
    rgb(var(--background-start-rgb));
}

@layer components {
  .btn-primary {
    @apply bg-gotabgaa-orange text-white font-medium py-2 px-4 rounded-md hover:bg-opacity-90 transition-all;
  }
  
  .btn-secondary {
    @apply bg-gotabgaa-purple text-white font-medium py-2 px-4 rounded-md hover:bg-opacity-90 transition-all;
  }
  
  .section-title {
    @apply text-2xl md:text-3xl font-heading font-bold mb-6 text-gotabgaa-dark;
  }
  
  .card {
    @apply bg-white rounded-lg shadow-md overflow-hidden transition-transform hover:shadow-lg;
  }
}
