/* Navigation styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.2px;
}
.navbar-logo img {
  transition: transform 0.6s cubic-bezier(.68,-0.55,.27,1.55);
}
.navbar-logo:hover img {
  transform: rotateY(360deg);
}
.navbar-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-menu a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.navbar-menu a:hover {
  color: var(--text);
}
.navbar-cta {
  padding: 0.65rem 1.25rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white !important;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(124, 58, 237, 0.6);
  }
}

.navbar-cta:hover {
  transform: translateY(-2px) scale(1.05);
  color: white !important;
  box-shadow: 0 6px 30px rgba(124, 58, 237, 0.7);
  animation: none;
}

.navbar-cta:active {
  transform: translateY(0) scale(1);
}
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

/* Mobile menu styles */
@media (max-width: 768px) {
  .navbar-container {
    padding: 1rem 1.25rem;
  }
  .navbar-toggle {
    display: flex;
  }
  .navbar-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(11, 18, 32, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }
  .navbar-menu.active {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    padding: 1rem 0;
  }
  .navbar-menu li {
    width: 100%;
  }
  .navbar-menu a {
    display: block;
    padding: 1rem 1.5rem;
    width: 100%;
  }
  .navbar-cta {
    margin: 0.5rem auto;
    display: block;
    text-align: center;
    width: calc(100% - 3rem);
    max-width: calc(100% - 3rem);
    padding: 0.75rem 1rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}

/* Adjust main content for fixed navbar */
body {
  padding-top: 70px;
}
