/* Default burger menu styles (hidden on desktop) */
.menu-icon {
    display: none;
}

/* Desktop navigation styles - show nav-links normally above 1000px */
@media only screen and (min-width: 1001px) {
    .nav-links {
        /*display: flex;*/
        gap: 10px;
    }
    .menu-icon {
        display: none;
    }
}

/* Burger Menu Styles - 1000px breakpoint */
@media only screen and (max-width: 1000px) {

    .menu-icon {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        width: 30px;
        height: 24px;
        cursor: pointer;
        gap: 4px;
    }
    
    .menu-icon span {
        width: 100%;
        height: 4px;
        background-color: #000;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .menu-icon.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-icon.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-icon.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .navi {
        position: relative;
    }
    
    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-radius: 8px;
        padding: 1rem;
        min-width: 200px;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 10px;
        z-index: 1001;
    }
    
    .nav-links.show {
        display: flex !important;
    }
    
    .nav-links a {
        padding: 0.75rem 1rem;
        text-align: center;
        border-radius: 6px;
        background: #e9e9e9;
		font-size: 16px;
    }
	.nav-links a.button {
		background: #75C4B9;
     }  
    .nav-links .button {
        margin-top: 0.5rem;
    }
	.help-menu a {
		background: #fff;
     } 

}

/* Debug helper - remove this after testing */
.debug-menu {
    position: fixed;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 9999;
    display: none;
}

.debug-menu.show {
    display: block;
} 