/* Navbar Styles */
#navbar {
    position: fixed;
    top: 2vh;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 60px;
    background-color: var(--navbar-bg-color, #000000);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

#navbar.bubble {
    width: 60px;
    height: 60px;
    top: 20px;
    left: 20px;
    transform: translateX(0);
    border-radius: 50%;
    animation: bounce 0.5s ease-in-out;
    padding: 0;
}

#navbar ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

#navbar.bubble ul {
    display: none;
}

#navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Heebo', sans-serif;
    transition: color 0.3s ease;
}

#navbar a.active {
    color: #141414;
}
#navbar a:hover{
   color: rgba(255, 255, 255, 0.2);;
}

@media screen and (max-width: 600px) {
    #navbar {
        width: 250px;
        height: 50px;
    }
    #navbar.bubble {
        width: 50px;
        height: 50px;
    }
}
/* hamburger */
#hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

#hamburger div {
    width: 30px;
    height: 3px;
    background-color: rgba(255,255,255,255);;
}
#hamburger div.active {
    background-color: rgba(255, 255, 255, 0.2);;
}
#hamburger div:hover{
    background-color:rgba(255, 255, 255, 0.2);
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
