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

/* Custom styles */
body {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}

/* Hero section background */
.hero-bg {
  background-image: url('http://static.photos/nature/1200x630/999');
  background-size: cover;
  background-position: center;
}

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

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .text-responsive {
    font-size: 2.5rem;
  }
}

/* Feather icons size adjustment */
.feather {
  width: 20px;
  height: 20px;
}