.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(43, 42, 42, 0.9);
  backdrop-filter: blur(10px);
  z-index: 500;
  padding: 15px 0;
} 

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
} 

.left-logo {
  position: absolute;
  left: 10px;
  flex-shrink: 0;
}

.header-logo {
  width: 40px;
  height: auto;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.center-nav {
  display: flex;
  gap: 15px;
  font-family: 'Orbitron';
  font-size: 11px;
  align-items: center;
  justify-content: center;
}

.center-nav a {
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none !important;
  color: white;
  letter-spacing: 0.5px;
  position: relative;
}

.center-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: rgb(238, 171, 47);
  transition: width 0.3s ease;
}

.center-nav a:hover::after {
  width: 100%;
}

.center-nav a:hover {
  color: rgb(238, 171, 47);
  transform: translateY(-2px);
}

.center-nav:has(a:hover) a:not(:hover) {
  opacity: 0.5;
}

.right-nav {
  position: absolute;
  right: 10px;
  color: white;
  font-family: 'Orbitron';
  font-size: 10px;
  font-weight: 600;
  background-color: rgb(243, 183, 70);
  border: 2px solid rgb(243, 183, 70);
  border-radius: 25px;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.right-nav:hover {
  background-color: transparent;
  color: rgb(243, 183, 70);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(243, 183, 70, 0.5);
}

.center-nav .active {
  color: orange;
}

/* Hamburger Button Styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  outline: none;
  z-index: 600;
  position: absolute;
  left: 15px;
  width: 40px;
  height: 40px;
} 
.hamburger:focus{
  outline: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: rgb(243, 183, 70);
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Footer */
.footer {
  background: linear-gradient(to top, black, transparent);
  padding: 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: black;
  z-index: 100;
}

.footer p {
  opacity: 0.6;
  font-size: 12px;
  letter-spacing: 1px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

p {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
/* Mobile */
@media (min-width: 320px) and (max-width: 700px) {
  .header-logo {
    display: none;
  }

  .left-logo {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .center-nav {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: auto;
    background-color: rgba(43, 42, 42, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    transition: left 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 550;
  }
  
  .center-nav.active {
    left: 0;
  }

  .center-nav a {
    padding: 15px 30px;
    width: 100%;
    text-align: left;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none !important;
  }

  .center-nav a::after {
    display: none;
  }

  .center-nav a:hover {
    background-color: rgba(243, 183, 70, 0.1);
    transform: translateY(0);
  }

  .center-nav:has(a:hover) a:not(:hover) {
    opacity: 1;
  }

  .right-nav {
    font-size: 8px;
    padding: 7px 14px;
    right: 15px;
  }
  .footer p {
  font-size: 8px;
  }
}

/* Laptop and Tablet*/
@media (min-width: 701px) and (max-width: 1023px) {
  .header-logo {  
    width: 60px;
  }

  .left-logo {
    left: 18px;
  }

  .center-nav {
    gap: 25px;
    font-size: 13px;
  }

  .center-nav a {
    letter-spacing: 0.8px;
  }

  .right-nav {
    font-size: 11px;
    padding: 7px 16px;
    right: 18px;
  }
  .footer p {
  font-size: 10px;
  }
}

/* Desktop */
@media (min-width: 1024px) and (max-width: 1919px) {
  .header-logo {
    width: 70px;
  }

  .left-logo {
    left: 20px;
  }

  .center-nav {
    gap: 30px;
    font-size: 14px;
  }

  .center-nav a {
    letter-spacing: 1px;
  }

  .right-nav {
    font-size: 12px;
    padding: 8px 20px;
    right: 20px;
  }
  .footer p {
  font-size: 11px;
  }
}

/* Desktop */
@media (min-width: 1920px) and (max-width: 2559px) {
  .header-logo {
    width: 80px;
  }

  .left-logo {
    left: 30px;
  }

  .center-nav {
    gap: 40px;
    font-size: 16px;
  }

  .right-nav {
    font-size: 14px;
    padding: 10px 25px;
    right: 30px;
  }
  .footer p {
    font-size: 20px;
  }
}

/* Desktop */
@media (min-width: 2560px) {
  .header-logo {
    width: 200px;
  }

  .left-logo {
    left: 60px;
  }

  .center-nav {
    gap: 90px;
    font-size: 40px;
  }

  .right-nav {
    font-size: 35px;
    padding: 10px 25px;
    right: 60px;
  }
  .footer p {
  font-size: 23px;
  }
}