@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    padding-top: 6rem;
}

.gradient-text {
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-bg {
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #3B82F6;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Pill-shaped Navbar Styles */
.navbar-container {
  width: 100%;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  background: transparent;
  padding-top: 1.5rem;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1250px;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
  padding: 0.5rem 2rem;
  min-height: 64px;
  position: relative;
}
.navbar-left {
  display: flex;
  align-items: center;
}
.navbar-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.navbar-center {
  display: flex;
  gap: 2rem;
}
.navbar-link {
  color: #1e293b;
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 0;
  transition: color 0.2s;
  position: relative;
}
.navbar-link:hover {
  color: #6366f1;
}
.navbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navbar-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 1.5rem;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  outline: none;
  box-shadow: 0 2px 8px 0 rgba(139,92,246,0.10);
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, box-shadow 0.2s;
}
.navbar-btn:hover {
  opacity: 0.9;
  box-shadow: 0 4px 16px 0 rgba(139,92,246,0.15);
}
.navbar-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1rem;
}
.navbar-burger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #6366f1;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
/* Mobile menu */
.navbar-mobile-menu {
  display: none;
  flex-direction: column;
  align-items: stretch;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  z-index: 100;
  padding: 1.5rem 1rem;
  gap: 1rem;
}
.navbar-logo-img {
  height: 48px;
  width: auto;
  margin-right: 0.75rem;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 900px) {
  .navbar-center {
    display: none;
  }
  .navbar-burger {
    display: flex;
  }
}
/* Mobile menu should be hidden by default and only shown when toggled */
@media (max-width: 600px) {
  .navbar {
    padding: 0.5rem 0.5rem;
  }
  .navbar-mobile-menu {
    width: 98%;
    padding: 1rem 0.5rem;
  }
} 