/* Navbar layout */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3%;
  background: #990000;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar img {
  height: 45px;
  border-radius: 6px;
}

/* Desktop links */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  height: 25px;
  color: #ffffff;
  font-weight: 200;
  font-size: 1rem;
  transition: color 0.3s, border-bottom 0.3s;
}

.nav-links a:hover {
  font-weight: bolder;
}

/* Hamburger (always top right) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
  margin-left: auto;
  z-index: 1100;
  /* keeps it above dropdown */
}

/* Mobile styles */
@media (max-width: 1000px) {
  .menu-toggle {
    display: block;
  }

  /* Dropdown menu */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    /* make it appear below navbar */
    top: 100%;
    /* just under navbar */
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 1rem 0;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }

  .nav-links.active {
    display: flex;
    animation: expand 0.3s ease-out;
  }

  .nav-links a {
    color: #333;
    padding: 10px 5%;
  }

  @keyframes expand {
    from {
      opacity: 0;
      transform: scaleY(0.95);
    }

    to {
      opacity: 1;
      transform: scaleY(1);
    }
  }
}



/* Modern Request Machine Button */
.btn-request {
  padding: 5px 15px;
  height: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #990000;
  background: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}


.btn-request:hover {
  background: #990000;
  color: white;
}

@media (max-width: 1000px) {  
  .btn-request {
    display: none;
  }
}
