.burger-menu {
    position: fixed;
    top: 20px; /* Ajusta según sea necesario */
    left: 20px; /* Ajusta según sea necesario */
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1000; /* Asegura que el menú esté por encima de otros elementos*/
    
}

.burger-menu .bar {
    width: 100%;
    height: 4px;
    background-color: var(--color-brand); /* Ajusta el color según tu diseño */
    transition: all 0.3s ease;
}

/*Opcional: Animación para el menú cuando está activo*/
.burger-menu.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


.menu {
    position: fixed;
    top: 50px;
    left: -100%;
    width: 20%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: left;
    transition: left 0.3s ease;
    z-index: 999;
    color: white;
}

.menu.active {
    left: 0;
}

.menu.active {
            transform: translateX(0);
        }

        .menu a {
            color: white;
            font-size: 18px;
            text-decoration: none;
            
        }

        #portfolio-menu {
            display: none;
        }

        .menu a {
            text-decoration: none;
            padding: 10px;
            display: block;
        }

.menu a:hover {
    color: var(--color-primary);
    background-color: #f0f0f0;
}

        #portfolio-menu a {
            padding-left: 30px;
        }

#quote{
    position: fixed;
    right: 0;
    top: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-primary);
    /* border: 1px solid #000; /* Optional: for better visualization */
}

#quote a{
    text-decoration: none;
    color: white;
}


@media only screen and (max-width: 768px) {
    .menu {
        width: 100%;
    }
}