/* div{
    outline: 2px solid red;
} */


.menu-label {
            position: fixed;
            top: 24px;
            color: bisque;
            font-weight: bold;
            font-size: 1.2rem;
            z-index: 100;
            opacity: 1;
            transition: opacity 0.3s ease;
            
        }
.menu-label h1{
mix-blend-mode: difference;
font-weight: 600;
  font-style: normal;
  font-size: clamp(0.8rem, 2vh, 2.5rem);
  letter-spacing: 1px;
  line-height: 0;
}
.menu-label sub{
mix-blend-mode: difference;
font-weight: 200;
  font-style: normal;
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 0;
}
        #menu.active ~ .menu-label {
            opacity: 0;
        }

        #menu-label-left {
            left: 24px;
        }

        #menu-label-right {
            right: 24px;
        }


#hamburger {
    position: fixed;
    top: 24px;
    left: 50%;
    width: 48px;
    height: 48px;
    transform: translateX(-50%);
    padding: 12px;
    border-radius: .5rem;
    background-color: transparent;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid bisque;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    display: grid;
    align-content: center;
    justify-content: center;
    

}

#hamburger:hover {
    
    background-color: bisque;
}

#hamburger.active {
    transform: translateX(-50%) rotate(90deg);
}

#menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #7c3aed, #4f46e5); */
    /* background-image: url(imgs/coisa.jpg); */
    background-color: rgba(0, 0, 0, 0.3);
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 50;
}

#menu.active {
    transform: translateY(0);
}
i {
    scale: 2;
    color: bisque;
}
i:hover{
    scale: 2;
color: #393326;
}

/* Default icon state */
#hamburger i {
  color: bisque;
  transition: color 0.3s ease;
}

/* When hovered */
#hamburger:hover i {
  color: #393326;
}

/* When menu is active — keep icon black */
#hamburger.active i {
  color: #393326;
}

#menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 16px, 2.5rem);
    text-align: center;
}

#menu nav a {
    color: white;
    font-size: clamp(0.8rem, 5vh, 2.5rem);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

#menu nav a:hover {
    color:orange;
}

.grid-menu{
    width: 80vw;
    display: grid;
    grid-template-columns: auto auto auto;
}

/* iPhone and small screens */
@media (max-width: 1180px) {
  #hamburger {
    position: fixed;
    top: 24px;
    right: 24px;
    left: auto;
    transform: none;
    width: 32px;
    height: 32px;
    padding: 12px;
    border-radius: .5rem;
    background-color: transparent;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid bisque;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    display: grid;
    align-content: center;
    justify-content: center;
  }

  #hamburger:hover {
    background-color: bisque;
  }

  #hamburger.active {
    transform: rotate(90deg);
  }

  /* icon states for mobile */
  #hamburger i {
    scale: 1.25;
    color: bisque;
    transition: color 0.3s ease;
  }

  #hamburger:hover i {
    color: #393326;
  }

  #hamburger.active i {
    color: #393326;
  }
  #menu nav a{
font-size: calc(clamp(0.8rem, 5vh, 2.5rem)*.75);
  }

#menu nav .min{
font-size: calc(clamp(0.8rem, 5vh, 2.5rem)*.5);
  }
}

