.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    z-index: 1000;
    pointer-events: none;
}

.navbar-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.navbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.navbar-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.nav-button {
    background-color: var(--primary);
    color: var(--background);
    border: none;
    padding: 7px 18px;
    border-radius: 60px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
}

.nav-button:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.logo-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
}

.logo-button:hover {
    transform: scale(1.05);
}

.logo-button img {
    height: 100px;
    width: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

/* ==========================================================================
   Menu Burger (hidden on desktop)
   ========================================================================== */

.navbar-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    pointer-events: auto;
}

.navbar-burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.navbar-burger.is-open .navbar-burger-line {
    background-color: var(--background);
}

.navbar-burger.is-open .navbar-burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-burger.is-open .navbar-burger-line:nth-child(2) {
    opacity: 0;
}

.navbar-burger.is-open .navbar-burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Mobile Menu Overlay (hidden on desktop)
   ========================================================================== */

.mobile-menu {
    display: none;
}

/* ==========================================================================
   Responsive Mobile
   ========================================================================== */

@media (max-width: 768px) {
    .navbar {
        padding: 40px 20px;
        min-height: 70px;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    .navbar-center {
        flex: none;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .logo-button img {
        height: 50px;
    }

    .navbar-burger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        gap: 6px;
    }

    .navbar-burger-line {
        width: 30px;
        height: 2.5px;
    }

    /* ==========================================================================
       Mobile Menu Overlay
       ========================================================================== */

    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
        background-color: var(--primary);
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-menu.is-open {
        pointer-events: auto;
        opacity: 1;
    }

    .mobile-menu-content {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding: 20px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
    }

    .mobile-menu.is-open .mobile-menu-content {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu-close {
        position: absolute;
        top: 15px;
        right: 20px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        cursor: pointer;
        color: var(--background);
        padding: 0;
        z-index: 2;
    }

    .mobile-menu-close svg {
        width: 24px;
        height: 24px;
    }

    .mobile-menu-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .mobile-menu-link {
        font-family: 'Montserrat', sans-serif;
        font-size: 24px;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--background);
        text-decoration: none;
        padding: 10px 30px;
        border: 2px solid var(--background);
        border-radius: 60px;
        transition: all 0.3s ease;
    }

    .mobile-menu-link:hover,
    .mobile-menu-link:active {
        background-color: var(--background);
        color: var(--primary);
    }

    .mobile-menu-link.is-active {
        background-color: var(--background);
        color: var(--primary);
    }

    .mobile-menu-social {
        position: absolute;
        bottom: 40px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    .mobile-menu-social-link {
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-weight: 400;
        text-transform: uppercase;
        color: var(--background);
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-social-link:hover,
    .mobile-menu-social-link:active {
        opacity: 0.7;
    }
}