/* background-image{
    img: url(../images/homepage.png):
    background-size: cover; 
    background-attachment: fixed;
    background-repeat: no-repeat;  
    background-position:center ; 
    background-size: 2000px 1100px;
    min-height: 100vh;            
} */
    
body{
    background-image: url(../images/homepage.png);
    background-size: cover; 
    background-attachment: fixed;
    background-repeat: no-repeat;  
    background-position:center ; 
    background-size: 2000px 1100px;
    min-height: 100vh;            
}
/* NAVBAR BASE */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  /* background: lch(38.26% 27.83 23.9); */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.877);
  position: sticky;
  top: 0;
  z-index: 1000;
  font-weight: 1000;
}

.logo {
  font-size: 30px;
  font-weight: bold;
  color: #150ccd;
  font-family: fantasy;
}

/* NAV LINKS */
#nav-menu ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

#nav-menu a {
  text-decoration: none;
  color: #374151;
  transition: 0.3s;
}

#nav-menu a:hover {
  color: #4f46e5;
}

/* HAMBURGER ICON (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

  .menu-toggle {
    display: block;
  }

  #nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    display: none;
  }

  #nav-menu ul {
    flex-direction: column;
    padding: 15px 0;
    text-align: center;
  }

  #nav-menu ul li {
    padding: 12px 0;
  }

  #nav-menu.active {
    display: block;
  }
}
/* LOGIN SCREEN OVERLAY */
.login-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../images/loginbg.png);
  background: blur(10px) rgba(255, 255, 255, 0.8);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

/* LOGIN CARD */
.login-card {

  padding: 30px;
  width: 300px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgb(0, 0, 0);
  text-align: center;
}

.login-card h2 {
  margin-bottom: 10px;
}

.login-card input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.login-card button {
  width: 100%;
  background: #4f46e5;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

.login-card button:hover {
  background: #3730a3;
}

.hint {
  font-size: 12px;
  color: gray;
  margin-top: 10px;
}