html {
  scroll-behavior: smooth;
  font-size: 15px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #020617;
  color: white;
  font-family: sans-serif;
  /* overflow-y: hidden; */
}

.userhead {
  color: white;
  position: sticky;
  top: 4.3rem;
  left: 81vw;
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  color: #00f5ff;
  letter-spacing: 1px;
  text-transform: capitalize;
  text-shadow:
    0 0 5px #00f5ff,
    0 0 10px #00f5ff,
    0 0 20px rgba(0, 245, 255, 0.5);

  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 100;
    font-family: 'Orbitron', sans-serif;
}

.userhead:hover {
  color: #ffffff;
  text-shadow:
    0 0 10px #00f5ff,
    0 0 25px #00f5ff,
    0 0 40px rgba(0, 245, 255, 0.8);
}

.loginbtn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 5.5rem;
  /* padding: 0.5rem; */
  position: sticky;
  /* top: 4.2rem;
  left: 90vw; */
  /* border: 2px solid white; */
  /* border-radius: 2rem; */
  background: rgba(10, 15, 30, 0.65);
  /* backdrop-filter: blur(12px); */
  border: 1.5px solid #2f80ff;
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  /* box-shadow: 0 0 20px rgba(47, 128, 255, 0.15); */
  z-index: 100;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: none !important;
  outline: none;
  backdrop-filter: none;
    font-family: 'Poppins', sans-serif;
}

.logoutbtn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 1.9rem;
  width: 5.56rem;
  position: sticky;
  top: 5.8rem;
  left: 91vw;
  /* border: 2px solid white; */
  /* border-radius: 2rem; */
  background: rgba(10, 15, 30, 0.65);
  backdrop-filter: blur(12px);
  border: 1.5px solid #2f80ff;
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  box-shadow: 0 0 20px rgba(47, 128, 255, 0.15);
  z-index: 100;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
    font-family: 'Orbitron', sans-serif;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 1rem;
  /* background: rgba(10, 15, 30, 0.7); */
  /* backdrop-filter: blur(10px); */
  z-index: 100;
  border: 2px solid white;
  border-radius: 2rem;
  background: rgba(10, 15, 30, 0.65);
  /* backdrop-filter: blur(12px); */
  border: 1.5px solid #2f80ff;
  border-radius: 999px;
  /* box-shadow: 0 0 20px rgba(47, 128, 255, 0.15); */
  z-index: 100;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem;
}

.logo {
  background: url("/img/logoNew2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  height: 1rem;
  width: 1rem;
  transform: scale(4);
  margin-left: 1rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  border-radius: 1rem;
  transition: all 0.3s ease-in;
  z-index: 200;
  justify-content: center;
  align-items: center;
   font-family: 'Poppins', sans-serif;
}

.nav-links a {
  text-decoration: none;
  color: white;
  cursor: pointer;
  color: #e6edff;
  /* color: black; */
  transition: all 0.3s ease;
}

.navbar ul li a:hover {
  color: #4da3ff;
  /* text-shadow: 0 0 8px rgba(77, 163, 255, 0.8); */
  transform: translateY(-2px);
  /* background: rgba(255, 255, 255, 0.12); */
  border-radius: 999rem;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.navbar ul li a {
  width: 100%;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.btn {
  padding: 0.5rem 1rem;
  background: #ff5722;
  border-radius: 20px;
  color: white;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  /* margin-top: 5rem; */
}

.hero-content {
  max-width: 600px;
  margin-top: 5rem;
}

.tag {
  color: #22d3ee;
  margin-bottom: 1rem;
  font-family: 'Orbitron', sans-serif;
}

.head {
  font-size: 2.5rem;
  font-family: 'Orbitron', sans-serif;
}

.desc {
  color: #94a3b8;
  margin: 1rem 0;
  font-family: 'Poppins', sans-serif;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 3s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.rentbtn {
  display: inline-block;
  margin-top: 5rem;
  padding: 1rem 2rem;
  background: #ff5722;
  border-radius: 10px;
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  background-color: #ff5722;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  box-shadow:
    0 6px 0 #b33916,
    0 8px 15px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-decoration: none;
  color: white;
    font-family: 'Orbitron', sans-serif;
}

/* CONTACT */
.contact {
  padding: 5rem 1rem;
}

#contact-container {
  max-width: 500px;
  margin: auto;
  background: rgba(15, 23, 42, 0.8);
  padding: 2rem;
  border-radius: 2rem;
}

#contact-container h2 {
  text-align: center;
  color: #22d3ee;
    font-family: 'Orbitron', sans-serif
}

#contact-container h2::after {
  content: "";
  display: block;
  width: 6rem;
  height: 0.3rem;
  background: linear-gradient(90deg, #00e5ff, #2979ff);
  margin: 1rem auto 0;
  border-radius: 0.2rem;
}

.upperinput {
  width: 100%;
  margin: 1rem 0;
  padding: 1rem;
  background: #020617;
  border: 1px solid #334155;
  color: white;
  outline: none;
  /* font-size: 1.2rem; */
  background: rgba(2, 6, 23, 0.6) !important;
  border: 1px solid #334155 !important;
  color: #f8fafc !important;
  border-radius: 8px;
  transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;

}

.form-btns {
  display: flex;
  justify-content: space-between;
    font-family: 'Orbitron', sans-serif;
}

.lowerinput {
  display: inline-block;
  flex-wrap: wrap;
  position: relative;
  margin-top: 2.5rem;
  /* margin: 0rem 3.4rem; */
  height: 2.5rem;
  width: 10rem;
  /* font-size: 1.2rem; */
  background-color: #ff5722;
  color: white;
  /* border: none; */
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.lowerinput:hover {
  background-color: transparent;
  color: #00e5ff;
  outline: 2px solid #00e5ff;
  /* box-shadow: 0 0 15px #00e5ff; */
}

.upperinput:focus {
  border-color: #00e5ff !important;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
  outline: none;
}

.upperinput:hover {
  border-color: #00e5ff !important;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
  outline: none;
}

.upperinput ::placeholder {
  color: #9ca3af;
}

/* FOOTER */
.footer {
  background: #0f172a;
  padding: 3rem 1rem;
  background: linear-gradient(180deg, #020617, #0a0f2c);
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 -5px 30px rgba(0, 229, 255, 0.05);
}

.footer-container {
  max-width: 110rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-container h2 {
  color: #00e5ff;
    font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.7);
}

.footer-container p{
    font-family: 'Poppins', sans-serif;
}

.links h4 {
  font-weight: 600;
    font-family: 'Orbitron', sans-serif;

}

.links p {
  color: #ff6a00;
   font-family: 'Poppins', sans-serif;
}

.About {
  color: #ff6a00;
  width: 62%;
  line-height: 1.5rem;
   font-family: 'Poppins', sans-serif;
}

.links {
  display: flex;
  gap: 4rem;
  margin-top: 1.5rem;
   font-family: 'Poppins', sans-serif;
}

.links a {
  text-decoration: none;
   font-family: 'Poppins', sans-serif;
}

.resource {
  line-height: 1.5rem;
   font-family: 'Poppins', sans-serif;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .nav-container {
    padding: 0.5rem;
  }

  .navbar {
    top: 1.2rem;
  }

  .nav-links a {
    color: black;
  }

  .userhead {
    top: 4.3rem;
    z-index: 100;
  }

  .logoutbtn {
    top: 5.6rem;
  }

  .nav-links {
    position: absolute;
    top: 3.2rem;
    right: 0;
    /* background: #020617; */
    background: rgb(255, 255, 255);
    flex-direction: column;
    width: 5rem;
    display: none;
    padding: 0.7rem;
    /* transition: all 0.3s ease; */
    background: #00e5ff;
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.7);
    transition: all 0.3s ease;
    z-index: 1000;
    gap: 1.5rem;
    transform: translateX(100%); /* hidden */
    opacity: 0;
    transition: all 0.3s ease;

    z-index: 100;
  }

  .nav-links.active {
    display: flex;
    transition: all 0.3s ease;
    transform: translateX(0);
    opacity: 1;
  }

  .nav-links:hover {
    background: #00b8d4;
    box-shadow: 0 0 12px rgba(0, 229, 255, 1);
  }

  .hamburger {
    display: block;
    z-index: 200;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .loginbtn {
    /* left: 80vw; */
    /* z-index: 50; */
    transition: all 0.3s ease;
    /* background: #00e5ff; */
    /* box-shadow: 0 0 8px rgba(0, 229, 255, 0.7); */
    /* transition: 0.3s ease; */
    z-index: 200;
    /* border: none; */
    /* padding: 0rem; */
    border: none;
    box-shadow: none !important;
    outline: none;
    backdrop-filter: none;
    width: 0rem;
  }

  .logoutbtn {
    z-index: 50;
  }

  .links {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .links a {
    font-size: 0.9rem;
  }

  .About {
    font-size: 0.9rem;
  }

  .resource {
    line-height: 1.5rem;
    width: 9rem;
  }
}
