@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
}

/* Hero gradient background */
.hero-gradient {
  background: linear-gradient(135deg, #01A09B 0%, #018580 100%);
}

/* Text gradient (for headings if used) */
.text-gradient {
  background: linear-gradient(135deg, #01A09B 0%, #018580 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Dark Mode Adjustments */
html.dark .text-gradient {
  background: linear-gradient(135deg, #5EEAD4 0%, #2DD4BF 100%); /* Lighter Teal for Dark Mode */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card shadow and glassy effect */
.hover-lift {
  transition: transform .3s ease, box-shadow .3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Make hero cards look glassy */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
}

html {
  scroll-behavior: smooth;
}