/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

/* Tailwind CSS v3 */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Base Styles */
@layer base {
  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    @apply font-body;
    background-color: #fefcf9;
  }

  h1, h2, h3, h4, h5, h6 {
    @apply font-display font-bold;
  }
}

/* Custom Utilities */
@layer utilities {
  .animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
  }

  .animate-bounce-in {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .animate-float {
    animation: float 3s ease-in-out infinite;
  }

  .pattern-dots {
    background-image: radial-gradient(circle, rgba(168, 240, 0, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
  }

  .text-balance {
    text-wrap: balance;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
