/* ==== NAV ==== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition: background 0.5s cubic-bezier(0.23, 1, 0.32, 1), padding 0.4s;
  border-bottom: none;
}
.navbar.scrolled {
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s;
}
.navbar.scrolled .nav-container {
  padding: 18px 60px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin: 0;
}
.logo-text span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ff881a;
  font-weight: 400;
  display: block;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}
.nav-link {
  font-family: 'Inter', 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #00FF01;
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-link:hover,
.nav-link.active {
  color: #ff881a;
  font-weight: bold;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-cta .btn-primary {
  display: inline-block;
  background: #ff881a;
  color: #0a0a0a;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 26px;
  text-decoration: none;
  border-radius: 0;
  border: 2px solid #ff881a;
  transition: background 0.4s, border-color 0.4s, color 0.4s, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-cta .btn-primary:hover {
  background: transparent;

  transform: translateY(-3px);
} 

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
}

@media(max-width:1100px) {
  .nav-container {
    padding: 20px 30px;
  }
  .navbar.scrolled .nav-container {
    padding: 15px 30px;
  }
  .nav-menu, .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ==== CURSOR ==== */
.cur-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid #ff881a;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transition: width 0.3s, height 0.3s, background 0.3s;
  transform: translate(-50%, -50%);
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .cur-ring { display: block; }
}

.cur-ring.hover {
  width: 60px;
  height: 60px;
  background: rgba(255, 136, 26, 0.1);
  border-color: #00FF01;
}

.cur-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: #ff881a;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10002;
  transform: translate(-50%, -50%);
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .cur-dot { display: block; }
}

/* ==== PROGRESS BAR ==== */
/* Styled in navbar.js dynamically, but classes can be used if needed */
#navbar_progress_bar {
  transition: transform 0.1s linear;
}
