/* Hamburger menu */
.menu {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 9999;
}

.menuBtn{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.menuIcon{
  width: 22px;
  height: 16px;
  position: relative;
}

.menuIcon span{
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #222;
  border-radius: 2px;
}

.menuIcon span:nth-child(1){ top: 0; }
.menuIcon span:nth-child(2){ top: 7px; }
.menuIcon span:nth-child(3){ top: 14px; }

.menuPanel{
  text-align: center;
  margin-top: 10px;
  min-width: 180px;
  border-radius: 25px;
  border: 2px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);

opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.menuPanel.open{
display: block;
opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.menuLink{
  display: block;
  padding: 10px 12px;
  border-radius: 15px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

.menuLink:hover{
  background: rgba(219,105,111,0.12);
  color: #111;
}

.menuBtn.active .menuIcon span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

.menuBtn.active .menuIcon span:nth-child(2){
  opacity: 0;
}

.menuBtn.active .menuIcon span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

.menuIcon span{
  transition: transform 220ms ease, opacity 200ms ease;
}

/* Ending Hamburger menu */
