/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Custom Component Classes */
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #EAEAEA;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #FBFBFB;
  background-color: rgba(234, 234, 234, 0.1);
}

.nav-link.active {
  background-color: rgba(234, 234, 234, 0.2);
  color: #FBFBFB;
}

/* CTA Button Styling */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background-color: rgba(234, 234, 234, 0.1);
  color: #FBFBFB;
  font-weight: 600;
  border-radius: 9999px;
  border: 1px solid rgba(234, 234, 234, 0.2);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
  background-color: rgba(234, 234, 234, 0.2);
  border-color: rgba(240, 125, 0, 0.5);
}

.btn-cta:active {
  transform: scale(0.95);
}

/* Nav Link Light Mode */
.nav-link-light {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A1A1A;
  transition: all 0.3s ease;
}

.nav-link-light:hover {
  background-color: rgba(255, 255, 255, 0.6);
  color: #F07D00;
}

.nav-link-light.active {
  background-color: rgba(255, 255, 255, 0.85);
  color: #1A1A1A;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}