@import url('https://fonts.googleapis.com/css2?family=Baskervville+SC&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lexend:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

nav{
    /* background-color: black; */
    width: 100vw;
    height: 70px;
    display: flex;
    justify-content: space-between;
    overflow: visible;
    padding: 0 30px;
    z-index: 999;
      position: fixed;

}
nav a{
    color: white;
    text-decoration: none;
}
nav img{
    height: 150px;
}
nav .menu{
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 20px;
}
.menu span {
  background-color: transparent; /* 🧽 remove extra bg */
  padding: 10px 10px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2); /* optional border only */
  backdrop-filter: blur(8px); /* subtle blur if you want to keep depth */
}
.menu .fa-solid{
    margin-left: 10px;
}

/* Curtain Dropdown Menu */
.curtain-menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  transition: top 0.6s ease-in-out;
}

.curtain-menu.open {
  top: 0;
}

.curtain-menu ul {
  list-style: none;
  text-align: center;
}

.curtain-menu li {
  margin: 30px 0;
}

.curtain-menu li a {
  font-size: 2.2rem;
  color: #00f0ff;
  text-decoration: none;
  transition: 0.3s ease;
}

.curtain-menu li a:hover {
  color: #ffffff;
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
