/* RESET */
#navbar * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* NAVBAR BASE */
#navbar {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
}

#navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.4rem;
}

/* NAV WRAPPER */
#navbar .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* LOGO */
#navbar .logo-wrapper {
    height: 54px;
}

#navbar .logo-gif,
#navbar .logo-static {
    height: 100%;
    width: auto;
}

#navbar .logo-static {
    display: none;
}
#navbar .logo-static.active {
    display: block;
}

/* DESKTOP NAVIGATION */
#navbar .desktop-nav {
    display: none;
    align-items: center;
    gap: 2.3rem;
    flex: 1;
    justify-content: center;
}

#navbar .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    transition: 0.3s ease;
    padding: 4px 0;
}

#navbar .nav-link:hover {
    color: #f06228;
}

#navbar .nav-link.active {
    color: #f06228;
}

/* CTA BUTTON */
#navbar .cta-wrapper {
    display: none;
}

#navbar .btn-cta {
    white-space: nowrap;
    padding: 0 26px;
    height: 44px;
    border-radius: 8px;
    font-weight: 600;
    background: linear-gradient(135deg, #f06228, #f09a25);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

#navbar .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 98, 40, 0.35);
}

/* MOBILE MENU BUTTON */
#navbar .mobile-menu-btn {
    display: flex;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

#navbar .menu-icon {
    width: 26px;
    height: 26px;
    stroke: #6b7280;
}

#navbar .close-icon {
    display: none;
}

/* MOBILE NAVIGATION */
#navbar .mobile-nav {
    display: none;
    width: 100%;
    background: white;
    padding: 1.2rem 0 1.5rem;
    animation: slideDown 0.3s ease-out;
}

#navbar .mobile-nav.active {
    display: block;
}

#navbar .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 0 1.2rem;
}

#navbar .mobile-nav .nav-link {
    font-size: 17px;
    color: #4b5563;
    padding: 10px 0;
}

#navbar .mobile-nav .btn-cta {
    width: 100%;
    margin-top: 1.2rem;
    height: 44px;
}
#closeIcon {
    display: none;
}
#navbar .btn-cta,
#navbar .btn-cta:visited,
#navbar .btn-cta:hover,
#navbar .btn-cta:active {
    text-decoration: none !important;
}
#navbar .nav-link.active {
    color: #f06228 !important;
    font-weight: 600;
}


/* ANIMATION */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TABLET */
@media (min-width: 768px) {
    #navbar .desktop-nav,
    #navbar .cta-wrapper {
        display: flex;
    }
    #navbar .mobile-menu-btn {
        display: none;
    }
}

/* MOBILE IMPROVEMENTS */
@media (max-width: 767px) {
    #navbar .nav-wrapper {
        height: 70px;
    }
    #navbar .logo-wrapper {
        height: 45px;
    }
}
