@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

body {
  font-family: "Inter", sans-serif;
  background-color: #f7fafc;
}

.hero-gradient {
  background-image: linear-gradient(
    to right top,
    #6b46c1,
    #805ad5,
    #9f7aea,
    #b790fc
  );
}

.text-gradient {
  background-image: linear-gradient(to right, #6b46c1, #805ad5, #9f7aea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navigation Component */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-link {
  color: #6b7280;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.navbar-link:hover {
  color: #4f46e5;
}

.navbar-button {
  background-color: #4f46e5;
  color: white;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.navbar-button:hover {
  background-color: #4338ca;
}

