/* Tailwind CSS Custom Styles for ItuLabs */

/* Smooth scrolling for better user experience */
html {
  scroll-behavior: smooth;
}

/* Custom animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply fade-in animation to content */
.min-h-screen > div > div {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth hover effects on buttons */
a[class*="bg-gradient"] {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Social link animation */
svg {
  transition: all 0.3s ease-out;
}

/* Ensure images load properly */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive text sizes */
@media (max-width: 640px) {
  h1 {
    font-size: 2.25rem;
  }
}

/* Focus states for accessibility */
a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  body {
    background: white;
    color: black;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
}
