/* Navbar fixes for deployment */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

/* Logo fixes */
.logo {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    flex-shrink: 0 !important;
}

.logo-image {
    height: 35px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain !important;
}

.logo span {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
}

/* Nav menu fixes */
.nav-menu {
    display: flex !important;
    list-style: none !important;
    gap: 1.5rem !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
}

.nav-menu li {
    margin: 0 !important;
    padding: 0 !important;
}

.nav-link {
    font-size: 0.95rem !important;
    white-space: nowrap !important;
    display: inline-block !important;
}

/* CTA button fixes */
.cta-button {
    padding: 0.65rem 1.25rem !important;
    font-size: 0.9rem !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    text-decoration: none !important;
}

/* Mobile menu */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column !important;
        padding: 2rem !important;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
        align-items: flex-start !important;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .cta-button {
        display: none;
    }
    
    .logo span {
        font-size: 1rem !important;
    }
    
    .logo-image {
        height: 30px !important;
    }
}