/* Navigation Bar & Hamburger Menu Styles */

.navbar {
    background: #222;
    color: #fff;
    padding: 0.5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 1rem;
    position: relative;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 1.2rem;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: #fff;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #17a2b8;
}

@media (max-width: 700px) {
    .nav-container {
        flex-direction: row;
        justify-content: flex-start;
    }
    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background: #222;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        display: none;
        z-index: 100;
        padding: 1.2rem 0 1.2rem 0;
        align-items: center;
    }
    .nav-menu.active {
        display: flex;
    }
    .hamburger {
        display: block;
    }
}
