/* Navigation / Header styles */
nav {
  position: fixed;
  width: 100%;
  padding: 20px 50px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  animation: slideDown 0.8s ease;
  transition: all 0.3s ease;
}

nav.scrolled {
  padding: 15px 50px;
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.logo-link:hover {
  transform: scale(1.05);
}
.logo-text {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #fff, var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
  padding: 5px 10px;
  opacity: 0.7;
}
.nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  opacity: 0;
  transform: skewX(-10deg);
  transition: all 0.3s ease;
  z-index: -1;
}
.nav-links a:hover {
  color: white;
  opacity: 1;
}
.nav-links a:hover::before {
  opacity: 1;
}
.nav-links a.active {
  color: white;
  opacity: 1;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: white !important;
  padding: 10px 25px !important;
  border-radius: 25px;
  font-weight: 600;
  opacity: 1 !important;
}
.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-light);
  margin: 3px 0;
  transition: 0.3s;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  transition: right 0.3s ease;
  z-index: 999;
}
.mobile-nav.active {
  right: 0;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 30px;
  list-style: none;
}
.mobile-nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 24px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.mobile-nav-links a:hover {
  color: var(--accent);
  transform: translateX(10px);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .mobile-nav {
    display: block;
  }
}

@media (max-width: 1070px) and (min-width: 769px) {
  nav {
    padding: 15px 30px;
  }
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }
  .nav-links {
    width: 100%;
    justify-content: center;
  }
  .nav-links a {
    font-size: 12px;
  }
}
