/* Navigation Styles for Hartz AI */

/* Fixed header */
#header.zs-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: transform 0.3s ease;
}

#header.zs-header.hidden {
  transform: translateY(-100%);
}

/* Navigation container */
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo .site-logo {
  height: 2.5rem;
  width: auto;
  display: block;
}

/* Desktop menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #37474F;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.nav-link:hover {
  color: #4A90E2;
}

/* CTA Button */
.nav-cta {
  background-color: #4A90E2;
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(74, 144, 226, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: 'Inter', sans-serif;
}

.nav-cta:hover {
  background-color: rgba(74, 144, 226, 0.9);
  box-shadow: 0 20px 25px -5px rgba(74, 144, 226, 0.4);
  transform: translateY(-2px);
  color: white !important;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #37474F;
  font-size: 1.5rem;
  padding: 0.5rem;
  line-height: 1;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: #37474F;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border-radius: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.mobile-nav-link:hover {
  background-color: rgba(74, 144, 226, 0.1);
  color: #4A90E2;
}

.mobile-cta {
  margin-top: 1rem;
  text-align: center;
  width: 100%;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-cta:not(.mobile-cta) {
    display: none;
  }
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Add padding to body to account for fixed header */
body {
  padding-top: 80px;
}

/* Smooth scroll offset for anchor links */
html {
  scroll-padding-top: 80px;
}