/* Navbar container */
.navbar {
    display: flex;
    position: fixed;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    padding: 1.5rem;
    color: white;
    z-index: 1000;
}

.navbar .logo {
    width: 6rem;
    height: auto;
    mix-blend-mode: difference;
}

.navbar .logo:hover {
    color: #ff0000;
}

/* Hamburger icon */
.hamburger {
    cursor: pointer;
    display: block;
    width: 30px;
    height: 22px;
    position: relative;
}

.hamburger span {
    background: white;
    position: absolute;
    height: 3px;
    width: 100%;
    left: 0;
    transition: all 0.3s;
}

.hamburger:hover span {
    background: #ff0000;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

/* Menu styling */
.menu {
    position: fixed;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    width: 100vw;
    height: 100vh;
    display: none;
    flex-direction: column;
    justify-content:space-evenly;
    align-items: center;
    padding: 1rem;
    z-index: 100;
}

.menu-list {
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.menu a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: clamp(0.75rem, 5vw, 2rem);
}

.menu.show {
    display: flex;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
  }