#site-header {
  position: fixed !important;
  top: 30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  max-width: 95% !important;
  height: 70px !important;
  z-index: 1000;
  background: rgba(10, 8, 5, 0.95);
  border: 1.5px solid rgba(255, 68, 0, 0.4);
  backdrop-filter: saturate(200%) blur(30px);
  -webkit-backdrop-filter: saturate(200%) blur(30px);
  border-radius: 100px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 68, 0, 0.25);
  padding: 0 25px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex !important;
  align-items: center;
}

#site-header.scrolled {
  top: 15px !important;
  background: rgba(8, 5, 0, 1);
  border-color: rgba(255, 68, 0, 0.7);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 68, 0, 0.4);
  height: 65px !important;
}

.header-inner {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: 15px;
}

.site-logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.site-logo:hover img {
  transform: scale(1.05);
}

.logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 1.5px;
  line-height: 1;
}

/* ---- NAV ---- */
.main-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-start;
  gap: 15px;
}

@media (min-width: 900px) {
  .main-nav {
    justify-content: flex-start;
  }
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-item {
  position: relative;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a0a0a0;
  padding: 8px 14px;
  border-radius: 50px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-item i {
  color: #777;
  transition: color 0.2s ease;
}

.nav-item:hover {
  color: #fff;
  background: rgba(255, 68, 0, 0.15);
}

.nav-item:hover i {
  color: #ff8800;
  filter: drop-shadow(0 0 5px rgba(255, 136, 0, 0.8));
}

.nav-item.active {
  color: #fff;
  background: linear-gradient(135deg, #ff4400, #ff8800);
  box-shadow: 0 0 15px rgba(255, 68, 0, 0.4);
}

.nav-item.active i {
  color: #fff;
}

/* Hide the old fire lines */
.nav-fire-line {
  display: none !important;
}

/* ---- DROPDOWN ---- */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown .dropbtn {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a0a0a0;
  padding: 8px 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  outline: none;
  border-radius: 50px;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.dropdown:hover .dropbtn,
.dropbtn.active {
  color: #fff;
  background: rgba(255, 68, 0, 0.15);
}

.dropdown:hover .dropbtn i,
.dropbtn.active i {
  color: #ff6600;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(20, 20, 20, 0.98);
  min-width: 220px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  border-radius: 12px;
  padding: 8px 0;
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
}

.dropdown-content::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
  z-index: -1;
}

/* Little top pointer arrow for dropdown */
.dropdown-content::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  transform: rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(20, 20, 20, 0.98);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dropdown-content.show {
  display: block;
  opacity: 1;
}

.dropdown-content a {
  color: #a0a0a0;
  padding: 12px 24px;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.dropdown-content a i {
  width: 20px;
  text-align: center;
  margin-right: 12px;
  color: #777;
  transition: color 0.2s ease;
  font-size: 1.1em;
}

.dropdown-content a:hover {
  background-color: rgba(255, 102, 0, 0.08);
  color: #fff;
  padding-left: 30px;
}

.dropdown-content a:hover i {
  color: #ff6600;
}

/* Right-aligned dropdown */
.dropdown-right .dropdown-content {
  left: auto;
  right: 0;
}

.dropdown-right .dropdown-content::before {
  left: auto;
  right: 20px;
}

/* Nav CTA (Register / Special Buttons) */
.nav-cta {
  background: #ff5500;
  color: #fff !important;
  border-radius: 50px;
  padding: 8px 24px;
  font-weight: 700;
  transition: all 0.25s ease !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 1px;
}

.nav-cta {
  background: linear-gradient(135deg, #ff4400, #ff8800) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  box-shadow: 0 4px 15px rgba(255, 68, 0, 0.3) !important;
  animation: fieryPulse 2s infinite ease-in-out;
}

.nav-cta i {
  color: #fff !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 85, 0, 0.5) !important;
  filter: brightness(1.1);
  animation-play-state: paused;
}

@keyframes fieryPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 68, 0, 0.5);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 68, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 68, 0, 0);
  }
}

/* Admin specifically */
.nav-admin {
  color: #ffd700 !important;
  background: rgba(255, 215, 0, 0.05);
}

.nav-admin i {
  color: #ffd700 !important;
}

.nav-admin:hover {
  background: rgba(255, 215, 0, 0.1) !important;
}

.nav-toggle {
  display: none;
}

/* Mobile Adjustments for Floating Dock */
@media (max-width: 991px) {
  #site-header {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    min-width: 100%;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 0;
  }

  .header-inner {
    padding: 0 20px;
    height: 60px;
  }

  .site-logo img {
    height: 40px;
  }

  .nav-toggle {
    display: flex;
  }

  /* Reset scrolled state for mobile */
  #site-header.scrolled {
    top: 0;
  }
}

/* ========== HERO ========== */
.hero {
  min-height: 85vh;
}