.navbar 
{
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 245, 240, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo 
{
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.nav-menu 
{
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu a 
{
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after 
{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after 
{
    width: 100%;
}

.hamburger 
{
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span 
{
    width: 25px;
    height: 3px;
    background: #6B8E9F;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) 
{
    .hamburger 
    {
        display: flex;
    }

    .nav-container 
    {
        position: relative;
        padding: 1rem 14px;
    }

    .nav-logo 
    {
        position: relative;
        left: 45%;
        transform: translateX(-50%);
        z-index: 1001;
        pointer-events: none;
        font-size: 1.4rem;
    }

    .nav-menu 
    {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--accent-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active 
    {
        left: 0;
    }
}
