:root {
    --nav-bg: #ffffff;
    --nav-text: #4b5563;
    --nav-text-hover: #000000;
    --logo-color: #000000;
    --btn-bg: #000000;
    --btn-text: #ffffff;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --font-main: 'Outfit', sans-serif;
}

.navbar-container {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding: 0 20px;
    box-sizing: border-box;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--nav-bg);
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: none;
    width: 100%;
    max-width: 650px;
    transition: all 0.3s ease;
}

.nav-logo {
    font-family: var(--font-main);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--logo-color);
    text-decoration: none;
    letter-spacing: 0;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    font-family: var(--font-main);
    text-decoration: none;
    color: var(--nav-text);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.nav-links li a:hover {
    color: var(--nav-text-hover);
}

.nav-links li a.active {
    color: var(--logo-color);
    font-weight: 700;
}

.nav-btn {
    background-color: var(--btn-bg);
    color: var(--btn-text);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: var(--logo-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    clip-path: circle(0% at 100% 0%);
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-links li a {
    font-family: var(--font-main);
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

.mobile-nav-btn {
    background-color: #fff;
    color: #000 !important;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 10px;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 15px;
    }

    .navbar {
        padding: 12px 20px;
        width: 100%;
    }

    .mobile-nav-links li a {
        font-weight: 500;
        font-size: 1.3rem;
    }

    .nav-links {
        display: none;
    }

    .nav-btn {
        display: none !important;
    }

    .menu-toggle {
        display: flex;
    }
}