/* ============================================
   LANDING-NAV.CSS - Clean Landing Page Navigation
   ============================================
   
   Modern, clean navigation bar for the landing page
   Inspired by Cluely's design - overlays the animated background
*/

/* Landing Page Navigation - Only visible on home page */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: transparent;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1500;
  transition: all 0.3s ease;
}

/* Dark mode for landing nav */
[data-theme="dark"] .landing-nav {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Landing nav container */
.landing-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Landing nav logo */
.landing-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Google Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-primary, #1a202c);
  transition: opacity 0.2s ease;
}

.landing-nav-logo:hover {
  text-decoration: none;
  opacity: 0.8;
}

[data-theme="dark"] .landing-nav-logo {
  color: var(--text-primary-dark, #f7fafc);
}

/* Logo icon */
.landing-nav-logo-icon {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  border-radius: 6px;
  object-fit: contain;
}

/* Navigation links */
.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.landing-nav-link {
  font-family: 'Google Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary, #4a5568);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
  position: relative;
}

.landing-nav-link:hover {
  color: var(--text-primary, #1a202c);
  text-decoration: none;
}

[data-theme="dark"] .landing-nav-link {
  color: var(--text-secondary-dark, #a0aec0);
}

[data-theme="dark"] .landing-nav-link:hover {
  color: var(--text-primary-dark, #f7fafc);
}

/* Navigation actions */
.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Sign In button */
.landing-nav-signin {
  font-family: 'Google Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary, #4a5568);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.landing-nav-signin:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-primary, #1a202c);
  text-decoration: none;
}

[data-theme="dark"] .landing-nav-signin {
  color: var(--text-secondary-dark, #a0aec0);
}

[data-theme="dark"] .landing-nav-signin:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary-dark, #f7fafc);
}

/* Get Started button */
.landing-nav-cta {
  font-family: 'Google Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  background: #1a1a1a;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.landing-nav-cta:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
  text-decoration: none;
  color: white;
}

[data-theme="dark"] .landing-nav-cta {
  background: #f7fafc;
  color: #1a1a1a;
}

[data-theme="dark"] .landing-nav-cta:hover {
  background: #e2e8f0;
  color: #1a1a1a;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .landing-nav-container {
    padding: 0 1rem;
  }
  
  .landing-nav-links {
    display: none;
  }
  
  .landing-nav-actions {
    gap: 0.5rem;
  }
  
  .landing-nav-cta {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Hide landing nav on pages other than home */
body:not(.page-home) .landing-nav {
  display: none;
}

/* Hide regular top navbar on home page */
.page-home .top-navbar {
  display: none;
}
