/* navbar.css - External CSS for navigation */
.site-header {
    background: linear-gradient(135deg, #1a2a6c, #2b5876);
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.brand:hover {
    transform: translateY(-2px);
}

.logo-small {
    height: 30px;
    margin-right: 10px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

#user-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

#user-greeting {
    color: white;
    font-weight: 500;
    margin-right: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
}

.btn.primary {
    background: linear-gradient(to right, #1a2a6c, #f46b45);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 42, 108, 0.3);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 42, 108, 0.4);
}

.btn.ghost {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
}

.btn.ghost:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
    
    #user-greeting {
        display: none;
    }
    
    .nav-cta {
        gap: 10px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

.btn.navbar-login {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn.navbar-login:hover {
    background: rgba(255, 255, 255, 0.1);
}