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

/* Tailwind Base */
@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  html {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
  }
  
  body {
    @apply bg-gray-50 text-gray-800 antialiased overflow-x-hidden;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
  }
}

@layer utilities {
  .text-saffron {
    color: #FF9933; /* Saffron */
  }
  .bg-saffron {
    background-color: #FF9933;
  }
  .text-darkblue {
    color: #000080; /* Dark Blue */
  }
  .bg-darkblue {
    background-color: #000080;
  }
}

/* Custom Loader & Transitions */
.page-transition {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.page-fade-out {
    opacity: 0;
    transform: translateY(10px);
}
.page-fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Skeleton Loading Animation */
@keyframes pulse-skeleton {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}
.skeleton {
    animation: pulse-skeleton 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    @apply bg-gray-200 rounded;
}
