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

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom transitions and hover states */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-700 {
  transition-duration: 700ms;
}

/* Specific micro-interactions */
a, button {
  transition: all 0.2s ease-in-out;
}

.bento-card {
  box-shadow: 0px 4px 12px rgba(15, 23, 42, 0.05);
}

/* Gradient effects for premium layout styling */
.premium-glow {
  background: radial-gradient(circle at center, rgba(16, 99, 78, 0.15) 0%, transparent 70%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
