
body { 
  margin: 0; 
  padding: 0; 
  font-family: 'Times New Roman', Times, serif;
  background: rgb(254, 194, 160);
  color: #fff; 
}
header { 
  width: 100%;
  background: rgba(0, 0, 0, 0.35); 
  top: 0;
  left: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
}
header nav { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 12px 40px;
  background: rgba(0, 0, 0, 0.35); 
  backdrop-filter: blur(10px); 
  border-radius: 18px; 
  border: 1px solid rgba(255, 255, 255, 0.18); 
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
header nav h2 { 
  font-size: 32px;  
  margin: 0; 
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.9),
}
header nav .menu {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  flex-grow: 1; 
  justify-content: center; 
  align-items: center;
}
header nav .menu li { 
  font-size: 18px; 
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12); 
  backdrop-filter: blur(4px); 
  border: 1px solid rgba(21, 117, 212, 0.25); 
  box-shadow: 0 0 12px rgba(131, 23, 170, 0.331);
  transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  color: #fff;
  text-shadow: 0 0 6px rgba(0,0,0,0.8);
  display: inline-flex;
  align-items: center;
}
header nav .menu li:hover {
  transform: scale(1.1);
  color: #ffffff;
}
header nav .menu li a{
    background: none;
}
header nav .login { 
  background: rgba(255, 255, 255, 0.12); 
  backdrop-filter: blur(4px); 
  border-radius: 18px; 
  border: 1px solid rgba(255, 255, 255, 0.2); 
  box-shadow: 0 0 25px rgba(21, 140, 237, 0.45); 
  padding: 12px 24px; 
  font-size: 20px; 
  cursor: pointer; 
  color: #fff;
  text-shadow: 0 0 6px rgba(0,0,0,0.8);
  flex-shrink: 0; 
  transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}
header nav .login:hover {
  transform: scale(1.08);
  color: #ffffff;
}
.welcome {
  height: 100vh; 
  width: 100%;
  position: relative; 
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.welcome::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: url("../images/temple.jpg") no-repeat center center / cover;
  filter: blur(6px) brightness(0.8); 
  transform: scale(1.1); 
  z-index: 0;
}
.welcome .overlay {
  position: relative;
  z-index: 1;
  color: #fff;
}
.welcome h1 {
  font-size: 72px;
  font-weight: bold;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(0,0,0,0.8),
               0 0 20px rgba(21,140,237,0.6);
}
.welcome p {
  font-size: 24px;
  text-shadow: 0 0 6px rgba(0,0,0,0.8);
}
.explorebtn {
  margin-top: 24px;
  padding: 14px 36px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12); 
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  cursor: pointer;
  backdrop-filter: blur(8px); 
  box-shadow: 0 0 20px rgba(183, 60, 231, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}
.explorebtn:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.25); 
  color: #ffffff; 
}

@media (max-width: 768px) {
  header nav .menu {
    display: none;
  }

  header nav {
    justify-content: space-between;
    padding: 12px 20px; 
  }

  header nav h2 {
    font-size: 24px; 
  }

  header nav .login {
    font-size: 18px;
    padding: 10px 18px;
  }
  .welcome h1{
    font-size: 42px;
  }
  .welcome p{
    font-size: 18px;
  }
}