/* Custom MiaCatBot Navbar - Independent of Bulma */
.custom-navbar {
    background: #181c24;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #2c3244;
    position: relative;
    width: 100%;
    z-index: 100;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    text-decoration: none;
    color: #7ecfff;
    font-weight: 600;
}

.navbar-brand:hover {
    color: #9ecfff;
    text-decoration: none;
}

.navbar-brand .icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.navbar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-start {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-end {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.navbar-item {
    display: flex;
    align-items: center;
    padding: 1rem 0.75rem;
    color: #7ecfff;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 4px;
    margin: 0 0.25rem;
}

.navbar-item:hover {
    color: #ffffff;
    background-color: rgba(126, 207, 255, 0.1);
    text-decoration: none;
}

.navbar-item.active {
    color: #e44be4;
    background-color: rgba(228, 75, 228, 0.1);
}

.navbar-item .icon {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.navbar-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #7ecfff;
}

.navbar-burger span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: currentColor;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.navbar-burger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-burger.is-active span:nth-child(2) {
    opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.custom-button {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #4a148c;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-button:hover {
    background: #6a1b9a;
    text-decoration: none;
    color: white;
}

.custom-button .icon {
    margin-right: 0.5rem;
}

.login-status {
    color: #7ecfff;
    margin-right: 1rem;
    font-size: 0.875rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .navbar-burger {
        display: flex;
    }
    
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #181c24;
        border-top: 1px solid #2c3244;
        flex-direction: column;
        padding: 1rem;
    }
    
    .navbar-menu.is-active {
        display: flex;
    }
    
    .navbar-start {
        flex-direction: column;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .navbar-end {
        width: 100%;
        margin-left: 0;
        flex-direction: column;
    }
    
    .navbar-item {
        width: 100%;
        justify-content: flex-start;
        padding: 0.75rem;
        margin: 0.25rem 0;
    }
}